Releases: claude-world/claude-101
Releases · claude-world/claude-101
Release list
v0.2.2 — Trilingual Docs + Skill Format Compliance
What's New
Skill System (Claude Code Official Format)
skills/claude-101-mastery/SKILL.md— teaches Claude the optimal workflow for all 24 use casesreferences/with 4 per-domain workflow files (writing, analysis, coding, business)allowed-toolsdeclares all 24 MCP tools + Read- Passes both
format-validatorandskill-reviewerwith 0 errors, 0 warnings
Trilingual Documentation
- 🇺🇸
README.md— English - 🇹🇼
README.zh-TW.md— 繁體中文 - 🇯🇵
README.ja.md— 日本語 - All include: 24 use-case table ("You say → Claude calls → You get"), 2-step setup guide
Tool Quality Fixes (from v0.2.0)
create_adr: 28-technology knowledge base for differentiated trade-offsscaffold_code: description-aware generation (CRUD/API/auth/cache/queue patterns)build_comparison_matrix: weighted ranking computation with scoresparse_meeting_notes: owner extraction from "Bob to update" patternssummarize_document: tightened sentence scoring (86% → ~40% ratio)process_sql: 6 performance hints (SELECT *, leading wildcard, etc.)analyze_survey: NPS from single recommend column
Setup (2 minutes)
Step 1 — MCP Server:
{
"mcpServers": {
"claude-101": {
"command": "uvx",
"args": ["--from", "claude-101[mcp]", "claude-101-server"]
}
}
}Step 2 — Skill:
mkdir -p ~/.claude/skills/claude-101-mastery/references
cd ~/.claude/skills/claude-101-mastery
BASE=https://raw.githubusercontent.com/claude-world/claude-101/main/skills/claude-101-mastery
curl -sLO $BASE/SKILL.md
for f in writing-workflows analysis-workflows coding-workflows business-workflows; do
curl -sLO $BASE/references/$f.md --output-dir references
doneStats
- 27 tools (3 meta + 24 use-case)
- 157 tests passing
- Python 3.10-3.13
- Dependencies: sqlparse only (MCP optional)
Full Changelog: v0.2.0...v0.2.2