Skip to content

Releases: claude-world/claude-101

v0.2.2 — Trilingual Docs + Skill Format Compliance

Choose a tag to compare

@gn00295120 gn00295120 released this 21 Mar 04:55

What's New

Skill System (Claude Code Official Format)

  • skills/claude-101-mastery/SKILL.md — teaches Claude the optimal workflow for all 24 use cases
  • references/ with 4 per-domain workflow files (writing, analysis, coding, business)
  • allowed-tools declares all 24 MCP tools + Read
  • Passes both format-validator and skill-reviewer with 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-offs
  • scaffold_code: description-aware generation (CRUD/API/auth/cache/queue patterns)
  • build_comparison_matrix: weighted ranking computation with scores
  • parse_meeting_notes: owner extraction from "Bob to update" patterns
  • summarize_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
done

Stats

  • 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