Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,14 @@ AgDR is a plain standard, not a product — **you don't need ApexYard or any fra
2. **The schema** — [`schema/agdr.schema.json`](schema/agdr.schema.json), so frontmatter is machine-checkable.
3. **The check** — vendor [`scripts/validate-agdr.js`](scripts/validate-agdr.js) (or the [`validate-agdr.yml`](.github/workflows/validate-agdr.yml) workflow) so CI rejects malformed records.

**Pin a version.** Those three files are a snapshot of a versioned standard, so take them from a tagged [release](https://github.com/me2resh/agent-decision-record/releases) rather than from `main` — otherwise nothing records *which* version you adopted, and the next person to re-vendor quietly picks up a different one:

```bash
git clone --branch v1.2.0 --depth 1 https://github.com/me2resh/agent-decision-record.git
```

That tag is also what you cite when you record adopting AgDR as an AgDR of your own. [CHANGELOG.md](CHANGELOG.md) lists what changed between versions.

Or wire it into your agent directly:

### Install as Claude Code Plugin
Expand Down
Loading