Constitution Lite
Purpose
Record only the durable rules that constrain what an agent may decide or do across
multiple tasks. This is an authority boundary, not a project handbook.
Project instructions are not constitution rules. Architecture notes, repo layout,
commands, coding style, naming conventions, framework choices, and ordinary team
preferences belong in native project instructions such as CLAUDE.md or AGENTS.md.
Task-specific requirements belong in SPEC.md, scope-freeze, or SHIP.md.
When to use
Use when repeated, delegated, scheduled, or autonomous work needs a small set of
stable constraints that should survive across tasks, such as:
- human approval before destructive or external side effects
- protected production, data, credential, or customer boundaries
- tests or evidence that an agent may not weaken to make work pass
- decisions an agent is never authorized to make alone
Skip this skill when the need is only project onboarding, commands, architecture,
style, a temporary implementation constraint, or one task's acceptance criteria.
Inputs
- Existing
CLAUDE.md, AGENTS.md, or equivalent project instructions if present
- Stable risk and authority boundaries
- Protected resources, environments, data, or interfaces
- Human approval requirements
- Existing task or shipping controls that should not be duplicated
Workflow
- Read existing project instructions first. Do not copy their conventions into the constitution.
- List candidate cross-task rules.
- Keep a candidate only when violating it should require a human decision, explicit review, or a hard stop across more than one task.
- Classify each retained rule as
MUST, MUST NOT, or HUMAN GATE.
- Make each rule observable where possible: name the protected resource, forbidden action, approval event, or evidence requirement.
- Remove architecture preferences, commands, style guidance, framework choices, and task-local constraints.
- If the constitution conflicts with live project instructions or a task contract, stop and ask for a human decision. Do not silently choose an authority winner.
- Name who may amend the constitution and how the amendment is approved.
- Keep the artifact short enough to scan before delegated work.
Authority boundary
CONSTITUTION.md is a workflow artifact. It does not override system instructions,
organization policy, platform permissions, sandboxing, or runtime safety controls.
It also does not grant an agent permission merely because an action is absent from
the constitution.
Use the constitution to narrow delegated authority, not to expand it.
Outputs
CONSTITUTION.md
- Non-negotiable
MUST / MUST NOT invariants
- Explicit
HUMAN GATE decisions
- Protected resource or data boundaries when relevant
- Amendment owner and process
Canonical shape:
CONSTITUTION
MUST: ...
MUST NOT: ...
HUMAN GATE: ...
Protected boundary: ...
Conflict rule: stop and ask for a human decision
Amendment owner: ...
Stop conditions
- Every retained rule changes agent authority across multiple tasks.
- Ordinary project instructions and task-local constraints have been removed.
- Human approval gates are explicit.
- A conflict has been surfaced rather than silently resolved.
- The artifact is small enough to scan before delegated work.
Anti-patterns
- Rewriting
CLAUDE.md or AGENTS.md as CONSTITUTION.md.
- Filling the artifact with architecture, commands, coding style, or naming conventions.
- Promoting temporary preferences into permanent governance.
- Treating the constitution as permission to perform otherwise unauthorized actions.
- Adding aspirational principles that cannot change an agent decision.
- Silently resolving conflicts between durable governance and a task contract.
1---2name: constitution-lite3description: Define a tiny set of stable, non-negotiable agent authority boundaries for repeated or delegated work without duplicating CLAUDE.md, AGENTS.md, or task specs.4---56# Constitution Lite78## Purpose910Record only the durable rules that constrain what an agent may decide or do across11multiple tasks. This is an authority boundary, not a project handbook.1213Project instructions are not constitution rules. Architecture notes, repo layout,14commands, coding style, naming conventions, framework choices, and ordinary team15preferences belong in native project instructions such as `CLAUDE.md` or `AGENTS.md`.16Task-specific requirements belong in `SPEC.md`, `scope-freeze`, or `SHIP.md`.1718## When to use1920Use when repeated, delegated, scheduled, or autonomous work needs a small set of21stable constraints that should survive across tasks, such as:2223- human approval before destructive or external side effects24- protected production, data, credential, or customer boundaries25- tests or evidence that an agent may not weaken to make work pass26- decisions an agent is never authorized to make alone2728Skip this skill when the need is only project onboarding, commands, architecture,29style, a temporary implementation constraint, or one task's acceptance criteria.3031## Inputs3233- Existing `CLAUDE.md`, `AGENTS.md`, or equivalent project instructions if present34- Stable risk and authority boundaries35- Protected resources, environments, data, or interfaces36- Human approval requirements37- Existing task or shipping controls that should not be duplicated3839## Workflow40411. Read existing project instructions first. Do not copy their conventions into the constitution.422. List candidate cross-task rules.433. Keep a candidate only when violating it should require a human decision, explicit review, or a hard stop across more than one task.444. Classify each retained rule as `MUST`, `MUST NOT`, or `HUMAN GATE`.455. Make each rule observable where possible: name the protected resource, forbidden action, approval event, or evidence requirement.466. Remove architecture preferences, commands, style guidance, framework choices, and task-local constraints.477. If the constitution conflicts with live project instructions or a task contract, stop and ask for a human decision. Do not silently choose an authority winner.488. Name who may amend the constitution and how the amendment is approved.499. Keep the artifact short enough to scan before delegated work.5051### Authority boundary5253`CONSTITUTION.md` is a workflow artifact. It does not override system instructions,54organization policy, platform permissions, sandboxing, or runtime safety controls.55It also does not grant an agent permission merely because an action is absent from56the constitution.5758Use the constitution to narrow delegated authority, not to expand it.5960## Outputs6162- `CONSTITUTION.md`63- Non-negotiable `MUST` / `MUST NOT` invariants64- Explicit `HUMAN GATE` decisions65- Protected resource or data boundaries when relevant66- Amendment owner and process6768**Canonical shape:**6970```text71CONSTITUTION72MUST: ...73MUST NOT: ...74HUMAN GATE: ...75Protected boundary: ...76Conflict rule: stop and ask for a human decision77Amendment owner: ...78```7980## Stop conditions8182- Every retained rule changes agent authority across multiple tasks.83- Ordinary project instructions and task-local constraints have been removed.84- Human approval gates are explicit.85- A conflict has been surfaced rather than silently resolved.86- The artifact is small enough to scan before delegated work.8788## Anti-patterns8990- Rewriting `CLAUDE.md` or `AGENTS.md` as `CONSTITUTION.md`.91- Filling the artifact with architecture, commands, coding style, or naming conventions.92- Promoting temporary preferences into permanent governance.93- Treating the constitution as permission to perform otherwise unauthorized actions.94- Adding aspirational principles that cannot change an agent decision.95- Silently resolving conflicts between durable governance and a task contract.