cue skill for two different systems:
- Local skills:
SKILL.mdinstruction docs on your machine - Remote skills: callable server-side actions from the registry
Quick Start (Weather)
If you want weather data immediately, use:cue skill call weather current ... is the remote registry path, not local SKILL.md execution.
Command Model
| Goal | Command | Source |
|---|---|---|
| List installed local skills | cue skill list | Local |
| Install local skills from a path | cue skill install ./skills/weather | Local |
| Search local skill docs | cue skill search weather --source local | Local |
| Read a local skill doc | cue skill read weather --source local | Local |
| Search remote registry skills | cue skill search weather --source remote | Remote |
| Read remote skill schema/docs | cue skill read weather --source remote | Remote |
| Call a remote skill action | cue skill call weather current '{"location":"San Francisco"}' --source remote | Remote |
Local Flow (Instruction Skills)
SKILL.md (often regular cue <feature> ... commands).
Remote Flow (Callable Skills)
Environment Keys
cue skill env manages ~/.cue/skills.env.
Only set keys when a skill explicitly requires them:
weather local skill does not require an env key.
Limits and Defaults
search,read, andcalldefault to--source remotecue skill call --source localis not supported yetcue skill search --source localdoes not support--category- Skill subcommands support
--jsonoutput