Agent skill
find-decisions
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/find-decisions
SKILL.md
/find-decisions
Find all architecture decisions and choices related to a topic using sub-agents.
Usage
/find-decisions <topic>
/find-decisions Kafka
/find-decisions authentication
/find-decisions SAP integration
Instructions
Phase 1: Planning
- Identify search terms from the topic
- Plan search across multiple note types:
- ADRs (primary source)
- Meeting notes (decisions made sections)
- Project files (architectural notes)
- Pages (technical documentation)
Phase 2: Parallel Search (use sub-agents)
Launch these sub-agents in parallel using model: "haiku" for efficiency:
Agent 1: ADR Search (Haiku)
- Search all
ADR - *.mdfiles - Look for topic in title, context, decision sections
- Extract: title, status, decision summary, date
Agent 2: Meeting Decisions (Haiku)
- Search
+Meetings/Meeting - *.mdfiles - Focus on "Decisions Made" and "Action Items" sections
- Look for topic keywords
- Extract: date, meeting name, decision text
Agent 3: Technical Documentation (Haiku)
- Search
Page - *.mdfiles - Look for architectural/technical content about topic
- Extract relevant sections
Agent 4: Project References (Haiku)
- Search
Project - *.mdfiles - Find projects that involve this topic
- Note any architectural decisions mentioned
Phase 3: Compile Results
# Decisions Related to: {{topic}}
**Search Date**: {{DATE}}
**Results Found**: {{count}}
## Architecture Decision Records
| ADR | Status | Decision | Date |
|-----|--------|----------|------|
{{ADR results}}
### ADR Details
#### {{ADR Title}}
- **Status**: {{status}}
- **Decision**: {{summary}}
- **Rationale**: {{key points}}
- **Link**: [[ADR - {{title}}]]
## Decisions from Meetings
| Date | Meeting | Decision |
|------|---------|----------|
{{meeting decisions}}
## Related Projects
{{projects involving this topic}}
## Technical Documentation
{{relevant pages with summaries}}
## Timeline
{{chronological view of decisions}}
## Gaps Identified
{{note if there are areas without documented decisions}}
- Highlight any conflicting decisions or areas needing clarification
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?