mit einem Klick
ADR Manager Skill
npx skills add https://github.com/JansenAnalytics/claudex --skill adr-managerKopieren Sie diesen Befehl und fügen Sie ihn in Claude Code ein, um den Skill zu installieren
ADR Manager Skill
npx skills add https://github.com/JansenAnalytics/claudex --skill adr-managerKopieren Sie diesen Befehl und fügen Sie ihn in Claude Code ein, um den Skill zu installieren
| name | adr-manager |
| description | ADR Manager Skill |
| category | writing |
| maturity | beta |
| tags | ["adr","decision-records","architecture-decisions","documentation"] |
Use when: making a non-trivial technical decision — choosing between options, committing to an architecture, or accepting a tradeoff. Record it so future sessions don't have to guess.
Trigger: any time you make a design decision, choose between tools/approaches, or the user asks "why did we do it this way?"
node ${ADR_MANAGER_HOME:-$HOME/projects/adr-manager}/adr.cjs new \
--project <project-name> \
--title "Decision title" \
--context "Why this decision was needed" \
--options "option1,option2,option3" \
--decision "chosen-option" \
--rationale "Why this option was chosen" \
--tradeoffs "What we gave up and why it's acceptable"
node ${ADR_MANAGER_HOME:-$HOME/projects/adr-manager}/adr.cjs list --project <name>
node ${ADR_MANAGER_HOME:-$HOME/projects/adr-manager}/adr.cjs list
node ${ADR_MANAGER_HOME:-$HOME/projects/adr-manager}/adr.cjs view ADR-001 --project <name>
node ${ADR_MANAGER_HOME:-$HOME/projects/adr-manager}/adr.cjs search "query"
node ${ADR_MANAGER_HOME:-$HOME/projects/adr-manager}/adr.cjs status ADR-001 Superseded --project <name>
~/projects/<project>/.adr/ADR-NNN-<slug>.md
Semantic memory search across all agent memories and conversation history. Use BEFORE answering questions about prior work, decisions, dates, people, preferences, projects, or past conversations. Also use when asked "do you remember", "what did we discuss", "when did we", etc.
Get current weather and forecasts. Use when the user asks about weather, temperature, or forecasts for any location.
Set up and use 1Password CLI (op). Use when installing the CLI, enabling desktop app integration, signing in (single or multi-account), or reading/injecting/running secrets via op.
Accessibility auditing: WCAG compliance checking, contrast ratios, ARIA labels, keyboard navigation, semantic HTML, screen reader compatibility.
Autonomous API testing and evaluation. Tests any REST API for correctness, security, performance, error handling, and standards compliance. Discovers endpoints, probes with valid/invalid/edge-case payloads, checks auth, response times, injection vulnerabilities, and generates severity-scored reports with actionable fixes. Use before any API "done" claim.
Systematic REST and GraphQL API endpoint testing: happy path, error cases, auth flows, rate limits, schema validation. Use when: testing backend APIs, validating endpoint responses, checking error ...