FAQ
Does this mean humans approve every action?
No. Tier 1 actions are explicitly autonomous. DECIDERS.md defines the boundary between autonomous and human-authorized actions. It doesn't require human approval for everything.
Are there required fields?
A Core file needs three things: a Governance Statement, Decision Categories, and a role-based Decider Registry. A Full file adds an Escalation Policy, Delegation Rules, and a Review & Change History. Beyond that it's standard Markdown — adapt it to your governance needs.
How do I create one?
Fastest is to let a coding agent scaffold it — use the prompt in Quick start. It reads the role sources your org already has (CODEOWNERS, teams, CI config) to build the decider list, then asks only what it can't infer. To start by hand instead, copy the template:
curl -o DECIDERS.md \
https://raw.githubusercontent.com/decidersmd/deciders.md/main/TEMPLATE.md
How do I migrate an existing approval matrix or RACI?
Map each row to a tier by risk and reversibility: routine/reversible → Tier 1, needs sign-off → Tier 2, human-only → Tier 3. Replace every hardcoded name with the role, and record who holds each role once in CODEOWNERS (or a team page / IdP group). The matrix becomes a role-based Decider Registry that no longer rots on reorg.
What happens when someone changes roles?
Nothing in the file changes. DECIDERS.md binds decisions to roles, not names, and points at a single live source — CODEOWNERS, a team page, or an identity-provider group — for who holds each role. You update that one source; every DECIDERS.md that points at it stays correct. That's the whole design: write it once, and it stays true as your team changes.
Do I still name real people?
Every role must resolve to an accountable human — never an automated system, never a diffuse "whole team." But the names live in your single source of truth, not hardcoded across the file. Hardcoding names is the anti-pattern that makes governance docs rot.
How does this relate to AGENTS.md?
They're complementary. AGENTS.md tells agents how to work in your project. DECIDERS.md tells the organization which decisions require human authority. One is operational. The other is governance.
Can I update it later?
Absolutely. Treat DECIDERS.md as a living governance document. Review it on a cadence and when team structure changes. The specification also makes a stability promise, so the standard won't move under you: changes are additive, and the Tier-3 human gate is permanent.
Who created this?
DECIDERS.md is an open standard, offered as a complement to AGENTS.md. Its escalation policy was informed by publicly documented human-in-the-loop safety primitives (throttling, escalation, and stop/kill patterns). Contributions and critique are welcome on GitHub.