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
