← Back to list

tooling
by ChanningHe
⭐ 0🍴 0📅 Jan 25, 2026
SKILL.md
name: tooling description: Tooling and verification. Apply when encountering unfamiliar third-party libraries, framework updates, uncertain parameter types, verifying best practices, or uncertain API parameters.
Tooling & Verification
Core Principle
"RTFM (Read The Fing Manual)." Don't guess API signatures. Don't assume library behavior. Before writing code, ensure you have evidence.
Official Documentation Verification
When encountering unfamiliar third-party libraries, framework updates, or uncertain parameter types:
- Locate library ID: Use
resolve-library-idto convert library name (e.g., "shadcn/ui", "stripe-js") to accurate system ID - Get documentation: Use
get-library-docsto fetch latest official documentation snippets - Cite authority: Reference official documentation as basis for implementation in code comments or explanations
Applicable scenarios:
- "How do I use React 19's useActionState?"
- "What are the payment intent parameters for Stripe API?"
Real Code Search
Documentation tells you theoretically how to use it; GitHub tells you actually how to use it. When documentation is unclear or you need to reference best practices:
- Search use cases: Use
searchGitHubto search specific function or pattern implementations in real codebases - Pitfall guide: Observe if other developers have discussed related bugs in Issues
- Pattern imitation: Look for implementation patterns in high-star projects as reference
Applicable scenarios:
- "Is this configuration option actually used in production?"
- "I want to see the actual implementation code for this complex pattern"
Execution Strategy
- Verify first, write second: Unless it's the most basic function in standard library, if there's any uncertainty, call tools
- No hallucination: If tools can't find it, clearly tell user "documentation not found" instead of fabricating a plausible API
Score
Total Score
50/100
Based on repository quality metrics
✓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
Reviews
💬
Reviews coming soon