From tiny-brain
Create an Architecture Decision Record. Use when making significant architectural or technical decisions that should be documented.
npx claudepluginhub magic-ingredients/tiny-brain-releases --plugin tiny-brainThis skill is limited to using the following tools:
Create an ADR when making decisions about:
Interactively create an architecture decision record (ADR). Use when the user wants to document an architectural decision, technology choice, or significant design decision. Guides through context gathering, options analysis, and consequence documentation.
Creates Architecture Decision Records (ADRs) with title, status, and MADR/basic/extended templates. Auto-numbers sequentially, prompts for context/options/rationale, writes to docs/decisions/ or docs/adr/.
Generates Architecture Decision Records (ADRs) capturing context, rationale, alternatives, and consequences in numbered, status-tracked Markdown format.
Share bugs, ideas, or general feedback.
Create an ADR when making decisions about:
Extract from conversation:
ls docs/adr/*.md | grep -E '[0-9]{4}' | sort | tail -1
# Increment by 1 for the new ADR
mkdir -p docs/adr
Use the template at templates/adr-template.md.
File naming: NNNN-decision-title-in-kebab-case.md
0001-use-postgresql-for-data-storage.md0042-adopt-event-sourcing-pattern.mdYAML Frontmatter:
---
adr_number: N
title: "Decision Title"
date: YYYY-MM-DD
status: proposed
supersedes: null
superseded_by: null
tags: [infrastructure, database]
decision_makers: [names if mentioned]
---
Tell the user:
"I've created ADR-{N}: '{title}' at
docs/adr/{filename}"
templates/adr-template.md| Status | Meaning |
|---|---|
proposed | Under consideration |
accepted | Approved and active |
deprecated | No longer recommended |
superseded | Replaced by newer ADR |
User: "Let's use PostgreSQL for this project"
Claude:
1. Ask: "What drove this decision? What alternatives did you consider?"
2. Discuss: "Any specific requirements like JSONB, full-text search?"
3. Create:
- docs/adr/0001-use-postgresql-for-data-storage.md
- Document context, decision, alternatives (MySQL, MongoDB)
4. Confirm: "Created ADR-0001: Use PostgreSQL for Data Storage"