| name | cowork-guide |
| description | CRITICAL: Comprehensive guide for CoWork Skills CLI tool. Triggers on: cowork, Skills.toml, skill management, plugin configuration, cowork init, cowork install, cowork config, cowork generate |
CoWork Guide
Complete reference for the CoWork Skills CLI tool
Overview
CoWork Skills (cowork / co) is a CLI tool for managing Claude Code skills and plugins:
- Install skills from GitHub repositories
- Generate skills from source code (Rust, TypeScript, Python)
- Manage project-level skill configuration via Skills.toml
- Search GitHub for skill repositories
Installation
git clone https://github.com/anthropics/cowork-skills
cd cowork-skills/cli
cargo install --path .
cowork init
Commands Overview
| Command | Description |
|---|
cowork init | Install built-in skills to ~/.claude/skills/ |
cowork install | Install skills from GitHub or local path |
cowork generate | Generate skills from a GitHub repository |
cowork search | Search GitHub for skill repositories |
cowork plugins | Manage Claude Code marketplace plugins |
cowork config | Manage project-level skill configuration |
cowork list | List all available skills |
cowork status | Show current configuration |
cowork doctor | Check for configuration issues |
cowork test | Generate trigger tests for skills |
Use co as a short alias for cowork.
cowork init
Initialize built-in skills to ~/.claude/skills/.
cowork init
cowork init --list
cowork init -s memory-filesystem
cowork init --force
Built-in Skills:
memory-filesystem - CoALA-based memory system (remember, recall, reflect)
cowork install
Install skills from GitHub or local repositories.
Basic Usage
cowork install ZhangHanDong/rust-skills
cowork install https://github.com/user/repo
cowork install
cowork install --list
Installation Options
cowork install user/repo -s skill1 -s skill2
cowork install user/repo -a claude-code -a cursor
cowork install user/repo --plugin
cowork install user/repo --local
cowork install user/repo --reinstall
cowork install user/repo --update
cowork install user/repo -y
Uninstall
cowork install --uninstall repo-name
Supported Agents
Install skills to 16+ coding agents:
| Agent | Flag |
|---|
| Claude Code | --agent claude-code |
| Cursor | --agent cursor |
| Codex | --agent codex |
| GitHub Copilot | --agent github-copilot |
| Windsurf | --agent windsurf |
| Goose | --agent goose |
| Kiro | --agent kiro-cli |
| Amp | --agent amp |
| ... | See cowork install --help |
cowork config
Manage project-level skill configuration via Skills.toml.
Initialize Configuration
cowork config init
cowork config init --no-detect
cowork config init --force
Auto-detection scans:
~/.claude/ for global plugins
~/.claude/skills/ for global skills
.claude/ for project plugins
.claude/skills/ for project skills
View Configuration
cowork config show
cowork config groups
Add Dependencies
cowork config add rust-skills ZhangHanDong/rust-skills
cowork config add my-skills user/skills --local
cowork config add tokio user/tokio-skills -s tokio-runtime -s tokio-sync
cowork config add makepad user/makepad-skills --plugin
cowork config add old-lib user/old --disabled
cowork config add pinned user/repo --ref v1.0.0
cowork config add dora-dev /path/to/dora-skills --dev
Install Dependencies
cowork config install
Sync Configuration
cowork config sync
cowork config sync --update
Enable/Disable
cowork config enable rust-core makepad
cowork config enable memory-filesystem
cowork config disable rust-domains
Trigger Configuration
cowork config priority dora-router rust-router makepad-router
cowork config override "async" rust-router
cowork config override "widget" makepad-router
Generate Output
cowork config apply
cowork config apply -o ./docs/SKILLS.md
cowork config router
cowork config router --hooks
Skills.toml
Project-level configuration file stored at .cowork/Skills.toml.
Basic Structure
[project]
name = "my-project"
description = "Project description"
[skills.global]
enabled = ["memory-filesystem"]
disabled = []
[skills.install]
rust-skills = "ZhangHanDong/rust-skills"
[skills.groups]
enabled = ["rust-core"]
disabled = []
[triggers]
priority = ["dora-router", "rust-router"]
[triggers.overrides]
"async" = "rust-router"
Dependency Forms
Simple form:
[skills.install]
rust-skills = "ZhangHanDong/rust-skills"
Detailed form:
[skills.install]
tokio = { repo = "user/tokio-skills", skills = ["tokio-runtime", "tokio-sync"] }
local = { path = "../my-local-skills" }
pinned = { repo = "user/repo", ref = "v1.0.0" }
makepad = { repo = "user/makepad-skills", plugin = true }
my-project = { repo = "user/skills", local = true }
old-lib = { repo = "user/old", enabled = false }
Dev Links
Development symlinks for testing local skills:
[skills.dev]
my-skill = "/path/to/my-skill-project"
dora-dev = { path = "/path/to/dora-skills" }
dora-plugin = { path = "/path/to/dora-skills", plugin = true }
Skill Groups
| Group | Skills | Description |
|---|
rust-core | 8 | Basic Rust (ownership, concurrency, error handling) |
rust-patterns | 7 | Design patterns (domain modeling, performance) |
rust-domains | 7 | Domain-specific (web, CLI, fintech, embedded) |
makepad | 11 | Makepad UI framework |
dora | 8 | Dora-rs robotics framework |
dora-hubs | 9 | Dora hub integrations |
cowork generate
Generate skills from source code of any GitHub repository.
cowork generate user/repo
cowork generate tokio-rs/tokio --lang rust
cowork generate vercel/next.js --lang typescript
cowork generate user/repo --llms-only -o ./output
cowork generate --from-llms ./llms.txt
cowork generate user/repo --ref v1.0.0
Supported Languages
| Language | Parser | Extracts |
|---|
| Rust | syn | pub fn, struct, enum, trait, impl |
| TypeScript | tree-sitter | export function, class, interface, type |
| Python | tree-sitter | def, class (excluding _ private items) |
Output
- llms.txt - API documentation following llms.txt specification
- SKILL.md - Generated skill files with triggers and references
cowork search
Search GitHub for skill repositories.
cowork search tokio
cowork search agent-skill --topic
cowork search rust-skills --limit 5
cowork search rust-skills --verbose
cowork plugins
Manage Claude Code marketplace plugins.
cowork plugins list
cowork plugins status
cowork plugins uninstall rust-skills
cowork plugins enable rust-skills
cowork plugins disable rust-skills
cowork plugins marketplaces
cowork plugins remove-marketplace rust-skills
Storage Locations
| Location | Purpose |
|---|
~/.cowork/repos/ | Cloned GitHub repositories |
~/.claude/skills/ | Global skills directory |
~/.claude/<plugin>/ | Global plugins |
.claude/skills/ | Project-local skills |
.claude/<plugin>/ | Project-local plugins |
.cowork/Skills.toml | Project configuration |
.cowork/Skills.lock | Installed packages lock |
Environment Variables
| Variable | Description |
|---|
GITHUB_TOKEN | Required for generate/search commands |
Troubleshooting
Check Configuration
cowork doctor
cowork status
Common Issues
Skills not loading:
- Check if skill exists:
cowork list
- Verify enabled status:
cowork config show
- Ensure triggers match:
cowork test triggers
Installation fails:
- Check GitHub token:
echo $GITHUB_TOKEN
- Verify repo exists:
gh repo view user/repo
- Try with verbose:
cowork install user/repo --reinstall
Plugin conflicts:
- Set trigger priority:
cowork config priority router1 router2
- Override specific triggers:
cowork config override "keyword" skill-name
- Check for conflicts:
cowork test --check-conflicts