By zhanghandong
Manage and extend Claude Code skills using CoWork CLI: install skills from GitHub repos, generate them from Rust/TS/Python libraries via public API extraction, search GitHub for compatible projects and agents, configure dynamic per-project skill routers, review PRs for code quality/security/performance issues, and implement persistent AI memory (working/episodic/semantic/procedural) across sessions.
npx claudepluginhub zhanghandong/cowork-skillsCRITICAL: Code review skill using GitHub API. Triggers on: review PR, code review, PR review, pull request review, review changes, check this PR, analyze this PR, review #, 代码审查, 审查 PR
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 audit, cowork verify, cowork test
Meta-router for dynamic skill routing. Use when: cowork, skill management, router generation, Skills.toml, plugin configuration
CRITICAL: Use for generating skills from GitHub repositories. Triggers on: generate skill from repo, create skills from GitHub, cowork generate, generate llms.txt, convert repo to skills, make skills from repository, parse repository, GitHub 转 skill, 从仓库生成 skill, 生成技能, extract API from code
CRITICAL: Use for searching GitHub repositories for skills. Triggers on: cowork search, search skill repos, find skill repo, github topic search, skill repository, 搜索 skill, 查找技能仓库, 搜索仓库
CRITICAL: Use for managing agent memory based on CoALA cognitive architecture. Triggers on: remember this, 记住这个, save this info, learn from this, 学习这个, memory system, 记忆系统, knowledge base, what did we learn, 之前学到的, project context, 项目上下文, my preferences, 偏好设置, recall memory, 回忆一下, what do you know about, 你知道什么, forget this, 忘记这个, reflect on, 反思一下, summarize session, 总结会话
Share bugs, ideas, or general feedback.
Skill discovery and installation assistant — find and install the right skills for your project
Evidence-based agent skills compiler with progressive capability tiers (Quick/Forge/Forge+/Deep).
Tools for creating, auditing, and maintaining Claude Code skills. Includes /create-skill for scaffolding, /review-skill for quality checks, and /audit commands for bulk verification. Use when: building new skills, maintaining skill quality, or forking claude-skills repo.
Plugin-safe Claude Code distribution of Antigravity Awesome Skills with 1,429 supported skills.
AI Agent Skills
Professional skill creation with TDD workflow. Features dual-mode (fast/full), behavioral validation, and automated quality gates for 9.0/10+ scores.
CLI tool for managing Claude Code skills across 16+ AI coding agents
| Agent | Status | Notes |
|---|---|---|
| Claude Code | Fully Tested | All features verified |
| Cursor | Community | Contributions welcome |
| Codex | Community | Contributions welcome |
| GitHub Copilot | Community | Contributions welcome |
| Windsurf | Community | Contributions welcome |
| Goose | Community | Contributions welcome |
| Amp | Community | Contributions welcome |
| Roo | Community | Contributions welcome |
| Kiro CLI | Community | Contributions welcome |
| Gemini CLI | Community | Contributions welcome |
| OpenCode | Community | Contributions welcome |
| Antigravity | Community | Contributions welcome |
| Clawdbot | Community | Contributions welcome |
| Droid | Community | Contributions welcome |
| Kilo | Community | Contributions welcome |
| Trae | Community | Contributions welcome |
Note: CoWork Skills has been fully tested with Claude Code. Support for other agents is based on documented skill directory conventions. We need community help to test and contribute support for these agents! If you use any of these tools, please help us verify compatibility and submit PRs.
CoWork Skills provides a CLI tool (cowork / co) for managing skills across multiple coding agents:
Skills.tomlOne-line install (recommended):
curl -sSL https://raw.githubusercontent.com/ZhangHanDong/cowork-skills/main/install.sh | bash
Or install manually:
# Option 1: From crates.io
cargo install cowork
# Option 2: From source
git clone https://github.com/ZhangHanDong/cowork-skills
cd cowork-skills/cli
cargo install --path .
# Initialize built-in skills
cowork init
# Install from GitHub
cowork install user/repo
# Install specific skills
cowork install user/repo -s skill1 -s skill2
# Install to specific agents
cowork install user/repo -a claude-code -a cursor
# Install as plugin (preserves full repo structure)
cowork install user/repo --plugin
# Install to project local (.claude/skills/)
cowork install user/repo --local
# Update to latest version
cowork install user/repo --update
# List installed repositories
cowork install --list
| 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 and run trigger tests for skills |
cowork audit | Security audit of installed skills |
cowork verify | Verify checksums of installed skills |
Use co as a short alias for cowork.
Generate skills from any GitHub repository by parsing source code:
# Generate Rust skills
cowork generate tokio-rs/tokio --lang rust
# Generate TypeScript skills
cowork generate vercel/next.js --lang typescript
# Generate only llms.txt
cowork generate user/repo --llms-only -o ./output
| 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) |
# Search by keyword
cowork search tokio
# Search by GitHub topic
cowork search agent-skill --topic
# Show detailed results
cowork search rust-skills --verbose
# List marketplace plugins
cowork plugins list
# Show plugin status
cowork plugins status
# Uninstall a plugin
cowork plugins uninstall rust-skills
# Enable/disable plugins
cowork plugins enable rust-skills
cowork plugins disable rust-skills