← スキル一覧に戻る

implementation
by ingpoc
⭐ 5🍴 0📅 2026年1月2日
SKILL.md
name: implementation description: "Use when implementing features from feature-list.json, writing code following project patterns, or using MCP tools efficiently. Load in IMPLEMENT state. Covers coding patterns, test writing, health checks, and token-efficient MCP usage (defer_loading for 85% savings)." keywords: implement, code, develop, mcp, patterns, health-check
Implementation
Feature development for IMPLEMENT state.
Instructions
- Get current feature:
scripts/get-current-feature.sh - Query context graph for similar work
- Implement following project patterns (see references/)
- Write tests alongside code
- Run health check:
scripts/health-check.sh - Git commit:
scripts/feature-commit.sh <feature-id> - Mark complete:
scripts/mark-feature-complete.sh
Exit Criteria (Code Verified)
# All must pass
scripts/health-check.sh && echo "Health OK"
[ -f "tests/test_*.py" ] || [ -f "*.test.ts" ]
[ -z "$(git status --porcelain)" ] && echo "Changes committed"
jq '.features[] | select(.id=="'$FEATURE_ID'") | .status == "implemented"' .claude/progress/feature-list.json
Scripts
| Script | Purpose |
|---|---|
scripts/feature-commit.sh | Commit with feature ID message |
scripts/session-commit.sh | Checkpoint commit at session end |
References
| File | Load When |
|---|---|
| references/coding-patterns.md | Writing implementation code |
| references/mcp-usage.md | Using MCP tools efficiently |
| references/health-checks.md | Verifying implementation |
| references/async-parallel-operations.md | Running independent operations in parallel |
スコア
総合スコア
50/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です