Plug-and-play skills that make Claude Code smarter — MCP review, Twitter research, auto-iteration, CCA exam prep, and Harness Engineering workflows.
即装即用的 Claude Code 技能包 — MCP 工具审查、Twitter 调研、自动迭代优化、CCA 认证备考、Harness Engineering 全流程开发。
Claude Code is a general-purpose agent. But for specific workflows — reviewing MCP tool designs, researching Twitter trends, or studying for the CCA exam — you need specialized instructions that encode domain expertise. That's what skills are: reusable prompt packages that turn Claude into a domain specialist.
| Skill | Description | Trigger |
|---|---|---|
| mcp-review | Audit MCP server tool designs against 10 best-practice rules, output a structured report with scores | "review mcp tools", "检查工具设计" |
| auto-iterate | Autonomous optimization loop — set a metric, let Claude iterate until it improves | "自动迭代", "auto iterate", "overnight experiment" |
| sdd | Harness Engineering full dev loop — design → plan → TDD → code review → PR, fully autonomous | "自主开发", "sdd", "harness 开发" |
Harness Methodology (based on Anthropic research)
| Skill | Description | Trigger |
|---|---|---|
| harness | 3-in-1 harness toolkit: build (Planner→Generator→Evaluator), QA (independent eval), plan (Sprint decomposition) | "harness build", "harness qa", "harness plan" |
| Skill | Description | Trigger |
|---|---|---|
| twitter-research | Search Twitter/X for a topic, summarize key discussions and sentiment | "搜Twitter", "twitter research" |
| read-tweet | Read and analyze a specific tweet by URL | "读一下这条推文", "read tweet" |
| Skill | Description | Trigger |
|---|---|---|
| cca | Complete CCA study kit — all 5 domains (27%+18%+20%+20%+15%) + 12-question mock exam, built-in routing | "学CCA", "代理架构", "工具设计", "提示工程", "CCA测验" |
# 1. Add marketplace
/plugin marketplace add sawzhang/sawzhang_skills
# 2. Install plugin
/plugin install sawzhang-skills@sawzhang-skills
# 3. Reload
/reload-pluginsAdd to your project's .claude/settings.json — team members get auto-prompted to install:
{
"extraKnownMarketplaces": {
"sawzhang-skills": {
"source": {
"source": "github",
"repo": "sawzhang/sawzhang_skills"
}
}
},
"enabledPlugins": {
"sawzhang-skills@sawzhang-skills": true
}
}sawzhang_skills/
├── .claude-plugin/
│ └── marketplace.json # Marketplace definition
├── plugins/
│ └── sawzhang-skills/
│ ├── .claude-plugin/
│ │ └── plugin.json # Plugin metadata (v1.4.0)
│ └── skills/
│ ├── mcp-review/ # MCP tool design audit
│ ├── auto-iterate/ # Autonomous optimization loop
│ ├── sdd/ # Harness Engineering dev loop
│ ├── harness/ # Harness methodology toolkit (build/qa/plan)
│ ├── twitter-research/# Twitter/X topic research
│ ├── read-tweet/ # Single tweet reader
│ └── cca/ # CCA complete study kit (5 domains + mock exam)
└── README.md
- Create a directory under
plugins/sawzhang-skills/skills/ - Add a
SKILL.mdwith YAML frontmatter (allowed-toolsmust use standard tool names only) - Bump
plugins/sawzhang-skills/.claude-plugin/plugin.jsonversion (new skill → minor bump)
MIT