← スキル一覧に戻る

explore
by Aurealibe
Comprehensive Claude Code framework: 6 specialized agents, 7 workflow commands, audio notifications - stack agnostic
⭐ 61🍴 10📅 2026年1月21日
SKILL.md
name: explore description: Deep codebase exploration to answer specific questions model: haiku argument-hint:
Read-only exploration task.
Ultra Think Strategy
Ultra think before answering:
- After exploration results: reflect on completeness, identify gaps
- Before answering: consider multiple interpretations, ensure accuracy
- Cross-reference findings from different sources
1. PARSE QUESTION
Extract from $ARGUMENTS:
- Key terms and concepts to search
- Whether backend, frontend, or both
- Whether external documentation is needed
1.5 CLARIFY IF AMBIGUOUS
Use AskUserQuestion if the question could have multiple interpretations:
- "How does X work?" -> Which layer? What aspect?
- "Where is X handled?" -> At which level?
- "Find X" -> Find what exactly? (usage/definition/all)
If question is clear and specific, skip to section 2.
2. EXPLORE (PARALLEL)
Launch agents based on question scope (single message, parallel execution):
| Need | Agent | Prompt |
|---|---|---|
| Backend | explore-codebase | "[keywords] in backend/" |
| Frontend | explore-codebase | "[keywords] in frontend/src/" |
| Database | explore-db | "[env] - [tables/schema question]" |
| Library | explore-docs | "[library] [feature]" |
| External | websearch | "[topic]" |
2.5 POST-EXPLORATION CHECK
After agents return, verify:
- Database info complete? If not -> launch explore-db
- Library docs complete? If not -> launch explore-docs
3. ANSWER
Provide comprehensive response:
## Answer
[Direct answer to the question]
## Evidence
### Code Found
- `path/to/file.ts:XX` - [description]
- `path/to/file.go:YY` - [description]
### Patterns Identified
- [Pattern 1]: [explanation]
### Documentation (if explore-docs used)
- [Library]: [relevant info]
### External Sources (if websearch used)
- [Title](URL) - [what we learned]
## Recommendations (if applicable)
- [Suggestion based on findings]
Rules
- PARALLEL - launch relevant agents in ONE message
- CITE - always reference file:line
- READ-ONLY - do not modify anything
- THOROUGH - gather complete context before answering
スコア
総合スコア
70/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
✓説明文
100文字以上の説明がある
+10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
✓フォーク
10回以上フォークされている
+5
✓Issue管理
オープンIssueが50未満
+5
○言語
プログラミング言語が設定されている
0/5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です