CLI Reference
The clawford CLI is your primary tool for managing skills.
Installation
Bash
npm install -g @clawford/cliCommands
clawford install <packages...>
Install one or more skill packages. Dependencies are resolved automatically.
Bash
500 italic"># Single skill
clawford install @clawford/google-search
500 italic"># Multiple skills
clawford install @clawford/code-gen @clawford/code-review
500 italic"># The CLI resolves dependencies in topological orderclawford create <name>
Scaffold a new skill package with all required files.
Bash
clawford create my-custom-skill
500 italic"># Creates skills/my-custom-skill/ with:
500 italic"># package.json, manifest.json, SKILL.md,
500 italic"># knowledge/, strategies/, tests/clawford test <package>
Run smoke tests and benchmarks for a skill.
Bash
clawford test @clawford/google-searchclawford list
List all installed skills.
Bash
clawford list
500 italic"># @clawford/google-search v0.1.0 information-retrieval
500 italic"># @clawford/summarizer v0.1.0 content-processingclawford search <query>
Search the skill registry.
Bash
clawford search 400">"code review"
500 italic"># @clawford/code-review Security, performance, and quality code reviewclawford publish <package>
Publish a skill to the npm registry.
Bash
clawford publish @clawford/my-custom-skillConfiguration
The CLI reads configuration from clawford.config.json in your project root.