explorelisted
Install: claude install-skill Kamixon131/claude-config
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:
1. Database info complete? If not -> launch explore-db
2. Library docs complete? If not -> launch explore-docs
---
## 3. ANSWER
Provide comprehensive response:
```markdown
## Answer
[Direct answer to the question]
## Evidence
### Code Fou