Cue
Basic

Overview

Built-in retrieval utilities that ground agent decisions

Basic utilities are the first layer of Cue OS. They help an agent gather grounded external context before it plans, writes, or takes action.

What Belongs Here

  • Web search and page fetch
  • Current weather and forecasts
  • Place lookup and structured location search

These commands are especially useful because they work as a consistent built-in surface for any agent using Cue CLI.

Utilities

Quick Start

cue web search "best ramen in sf"
cue web fetch "https://example.com/report"
cue weather current '{"location":"San Francisco"}'
cue place search '{"query":"Blue Bottle Coffee"}'

On this page