Agent skill
decisions
Load past architectural decisions. Use when making new decisions to ensure consistency.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/decisions
SKILL.md
Decisions Skill
Understanding and respecting past decisions.
When to Load This Skill
- Making architectural decisions
- Choosing between approaches
- Questioning existing patterns
Decision Records
@memory/knowledge/decisions/
Each decision file contains:
- Context: Why decided
- Options: What was considered
- Decision: What was chosen
- Rationale: Why chosen
- Consequences: What follows
How to Use
Before Making a Decision
- Check if similar decision exists:
Glob("memory/knowledge/decisions/*.json")
-
If exists:
- Read the decision
- Understand the rationale
- Either follow or document why diverging
-
If not exists:
- Make and document the decision
Recording a Decision
{"knowledge_updates":[{"category":"decision","content":"Decision: Use X over Y | Context: Needed to solve Z | Rationale: X better because...","confidence":"certain"}]}
Decision Format
{"id":"DEC-001","title":"Short title","date":"YYYY-MM-DD","status":"accepted|deprecated|superseded","context":"Why this decision was needed","options":[{"option":"Option A","pros":["list"],"cons":["list"]},{"option":"Option B","pros":["list"],"cons":["list"]}],"decision":"Which was chosen","rationale":"Why this option","consequences":["What follows"]}
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?