install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/architecture-decision" ~/.claude/skills/majiayu000-claude-skill-registry-architecture-decision && rm -rf "$T"
manifest:
skills/data/architecture-decision/SKILL.mdsource content
Purpose
Document architecture decisions with context and rationale using Architecture Decision Records (ADR).
Usage
- Document specific architecture decision/architecture-decision [topic]
Steps
-
Prompt for decision context:
- What problem are we solving?
- What constraints exist?
-
Gather options considered:
- Option 1: Description, pros/cons
- Option 2: Description, pros/cons
- Option 3: Description, pros/cons
-
Document decision made:
- Which option chosen
- Why this option
- Trade-offs accepted
-
Link to related context:
- Related projects
- Implementation notes
-
Create ADR document in 06-Resources/Architecture_Decisions/
Output Format
# ADR: [Title] **Date:** [Today] **Status:** Accepted **Deciders:** [Names] ## Context [What problem are we solving? What constraints?] ## Options Considered ### Option 1: [Name] **Pros:** - [Pro 1] **Cons:** - [Con 1] ### Option 2: [Name] [Same structure] ## Decision We chose [Option] because [reasoning]. ## Trade-offs - [Trade-off accepted] ## Implementation Notes [How to implement this decision]