Loading...
Loading...
Deep codebase exploration. Triggers: research, explore, investigate, understand, deep dive, current state.
npx skill4agent add boshu2/agentops researchQuick Ref: Deep codebase exploration with multi-angle analysis. Output:.agents/research/*.md
/research <topic>mkdir -p .agents/research# Search knowledge base for relevant learnings, patterns, and prior research
ao search "<topic>" 2>/dev/null || echo "ao not available, skipping knowledge search"
# Inject relevant context into this session
ao inject "<topic>" 2>/dev/null || echo "ao not available, skipping knowledge injection"ls -la .agents/research/ 2>/dev/null | grep -i "<topic>" || echo "No prior research found".agents/ls -la .agents/learnings/ .agents/patterns/ 2>/dev/null | head -10Tool: Task
Parameters:
subagent_type: "Explore"
description: "Research: <topic>"
prompt: |
Thoroughly investigate: <topic>
Search strategy:
1. Glob for relevant files (*.md, *.py, *.ts, *.go, etc.)
2. Grep for keywords related to <topic>
3. Read key files and understand the architecture
4. Check docs/ and .agents/ for existing documentation
Return a detailed report with:
- Key files found (with paths)
- How the system works
- Important patterns or conventions
- Any issues or concerns
Cite specific file:line references for all claims..agents/research/YYYY-MM-DD-<topic-slug>.md# Research: <Topic>
**Date:** YYYY-MM-DD
**Scope:** <what was investigated>
## Summary
<2-3 sentence overview>
## Key Files
| File | Purpose |
|------|---------|
| path/to/file.py | Description |
## Findings
<detailed findings with file:line citations>
## Recommendations
<next steps or actions>Tool: AskUserQuestion
Parameters:
questions:
- question: "Research complete. Approve to proceed to planning?"
header: "Gate 1"
options:
- label: "Approve"
description: "Research is sufficient, proceed to /plan"
- label: "Revise"
description: "Need deeper research on specific areas"
- label: "Abandon"
description: "Stop this line of investigation"
multiSelect: false/planfile:line.agents/research/