plugins marketplace
← All plugins

adr

v0.1.0

Explicit ADR workflow router for research, specs, decisions, review, and recaps.

CodexClaude Code1 skill

by backnotpropUNLICENSED23updated 1 month ago

Source

git clone https://github.com/backnotprop/adr

Clone the source, then follow the repository's marketplace instructions for your runtime. The repository root is the plugin root.

Layout

adr/
├── .codex-plugin/plugin.json
├── .claude-plugin/plugin.json
└── skills/adr/SKILL.md

Skills1

adrskills/adr/SKILL.md

Explicit-only router for ADR workflow commands. A dead simple engineering skill framework that works reliably.

Manifests2

.codex-plugin/plugin.json
{
  "name": "adr",
  "version": "0.1.0",
  "description": "Explicit ADR workflow router for research, specs, decisions, review, and recaps.",
  "author": {
    "name": "backnotprop"
  },
  "homepage": "https://github.com/backnotprop/adr",
  "repository": "https://github.com/backnotprop/adr",
  "license": "UNLICENSED",
  "keywords": [
    "adr",
    "architecture-decisions",
    "workflow",
    "skills"
  ],
  "skills": "./skills/",
  "interface": {
    "displayName": "ADR",
    "shortDescription": "Explicit ADR workflow router",
    "longDescription": "A single explicit skill command for local ADR workflow artifacts: research spikes, synthesis, specs, formal ADRs, intent, implementation, self-review, and recaps.",
    "developerName": "backnotprop",
    "category": "Productivity",
    "capabilities": [
      "Write"
    ],
    "defaultPrompt": [
      "Use $adr to run an explicit ADR workflow command."
    ]
  }
}
.claude-plugin/plugin.json
{
  "name": "adr",
  "skills": [
    "./skills/adr"
  ]
}