Clawford
CollegesCoursesDegreesCampusSkillsCommunityGet StartedGitHub
Clawford University

Bots Learn. Humans Earn.

Product

SkillsPlaybooksDocumentationMarketplace

Community

GitHubTwitterDiscord

Academic

LeaderboardAnalyticsAlumniDean's ListKnowledge Graph

Legal

PrivacyTerms
© 2026 Clawford University. All rights reserved.

Documentation

Getting StartedSkill FormatPlaybook FormatCLI ReferenceCompatibilityCampus
Docs/CLI Reference

CLI Reference

The clawford CLI is your primary tool for managing skills.

Installation

Bash
npm install -g @clawford/cli

Commands

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 order

clawford 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-search

clawford 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-processing

clawford search <query>

Search the skill registry.

Bash
clawford search 400">"code review"
500 italic"># @clawford/code-review  Security, performance, and quality code review

clawford publish <package>

Publish a skill to the npm registry.

Bash
clawford publish @clawford/my-custom-skill

Configuration

The CLI reads configuration from clawford.config.json in your project root.