Agent Charters
The machine-readable constitution of autonomous work: a version-controlled document defining each agent's identity, authority, constraints, and escalation paths.
Definition
An Agent Charter is a structured, machine-readable governance document that defines an autonomous agent's role, decision rights, authority boundaries, and escalation paths with enough precision that both the agent and the humans overseeing it know exactly when it is operating inside its mandate and when it has exceeded it. It is not a system prompt and not a set of instructions. A system prompt tells an agent what to do; a charter tells it what it is — its identity, its authority, and the limits of that authority. With charters, the organizational structure becomes version-controlled code.
Why it exists / the problem it solves
When agents act autonomously across thousands of decisions a day, the central question is how to ensure those decisions align with what the organization actually wants — not what someone wrote in a memo, but what the firm genuinely values, expressed as a constraint that holds even when no one is watching. Traditional job descriptions survive on ambiguity ("use your judgment," "prioritize customer outcomes"). Agents cannot run on ambiguity. Every judgment call must be encoded, every priority assigned a weight, every boundary drawn as a hard constraint or a soft penalty.
The most consequential failure pattern is the accountability vacuum. A human VP of Finance has authority over budget allocation because formal mechanisms — board oversight, audit, legal liability — make that authority safe to grant. An autonomous VP-Agent of Finance needs the same architecture, encoded in its charter rather than enforced through org-chart convention. The governing principle: autonomous authority must be commensurate with verifiable accountability. Organizations that conflate capability with accountability deploy capable agents into vacuums and discover the gap only when something goes wrong at scale.
Anatomy
Chapter 5 specifies seven elements every charter contains:
- Identity and classification — what type of agent this is, what domain it operates in, what version of its governing policy applies.
- Role definition — the business outcome the agent is responsible for, expressed in terms connected to the [[ipre-pipeline|IPRE Pipeline]] objectives above it.
- Decision rights — what the agent decides autonomously (approve refunds up to $500), what requires another agent's confirmation ($500–2,000), what requires human escalation (above $2,000 or any case involving legal risk).
- Forbidden actions — the explicit list of things the agent must never do regardless of how doing them might advance the objective (a credit agent must never access customer financial data outside its scope, even if that data would improve its recommendation).
- Objective function — the measurable outcomes the agent optimizes for, including the primary metric and the constraint metrics it must not sacrifice.
- Escalation policy — precise thresholds for when to escalate, to what level, and with what information.
- Performance monitoring — the metrics by which the agent is evaluated, and the frequency of charter review.
Chapter 6 makes the internal structure concrete with a production excerpt — a decision-rights ladder of autonomous authority, escalation triggers, hard constraints, and reward weights (which sum to roughly 1.0):
name: vp-growth-orchestrator
role: "VP of Growth — Mid-Market"
rewardWeights:
annual_recurring_revenue: 0.35
customer_lifetime_value: 0.25
sales_efficiency: 0.20
discount_discipline: 0.15
relationship_quality: 0.05
hardConstraints:
- "No discounts >25% without Guardian approval"
- "No contract terms >36 months without legal review"
- "No data sharing without customer consent"
escalationTriggers:
confidence: 0.75
deal_size: 500000
version: 3.1.0
reviewCycle: quarterly
The hardConstraints block is not a polite suggestion. A candidate action that would violate a hard constraint gets penalized before it reaches execution, regardless of what the reward function scores — the constraint is architecturally prior to any reward. One rule sits above all the others: no agent modifies its own charter. A charter changes only through a pull request a human signs — a charter PR. An agent can propose an amendment; it cannot ratify one.
Figure: The seven elements of a charter. Together they tell an agent not what to do but what it is — its authority, its hard limits, and exactly where its mandate ends and a human's begins.
How it works in practice
Sierra grounds its entire customer-facing operation in agent charters. Each agent has an explicit scope: handle returns, modify subscriptions, issue credits up to a defined threshold, escalate when a customer signals distress or when the resolution requires authority the agent doesn't hold. The charter is a boundary condition, not a script. Within that boundary the agent improvises in response to the specific customer context; it cannot freelance into decisions that belong to a human. This is precisely why enterprise clients pay premium contracts — they trust that chartered boundaries hold predictably, at scale, across every interaction.
Chapter 5 reframes a headline statistic through the charter lens. Cognition's Devin — deployed by Goldman Sachs, Santander, Nubank, and NASA — improved its pull-request merge rate from 34% to 67% over 2025. The 33% requiring human review is not a failure; it is the charter working as designed: an agent that knows the edge of its authority and stops there rather than freelancing past it.
For the charter to function as oversight rather than paperwork, a human has to be able to see the agent it governs. On Neolith each AI colleague has an Operating Context — a single panel showing its overview, its charter, the board it works from, the decisions it has taken, and whatever its principal has pinned. The charter says what the agent is; the Operating Context is where a human reads whether it is still being that.
How to apply it
- Write the charter before you deploy the agent. This is the single most important rule. A retroactive charter describes observed behavior rather than governing intended behavior — and by then the agent has already shaped data, models, and downstream agents with decisions the charter would have prohibited.
- Draw the decision-rights ladder explicitly. For every recurring decision, specify the band that is autonomous, the band that needs a second agent's confirmation, and the band that escalates to a human.
- Separate forbidden actions from low-scoring ones. Hard constraints are not heavily penalized choices; they are architecturally unreachable. Encode ethical red lines as constraints, not as reward terms that a high enough payoff could overwhelm.
- Require a human-signed charter PR for any change. Let agents propose amendments; never let them ratify. The signature is the load-bearing act.
- Pair the charter with a runtime view. Give every governed agent an Operating Context panel so a human can verify that it is still behaving as its charter specifies.
Failure modes / misuse
- Charters as documentation, not architecture. Written after the agent runs, as a description of behavior rather than a specification of it. The charter must precede the agent, not follow it.
- Vague objective functions. A charter that says "optimize for customer satisfaction" without a margin constraint is a license to spend, not a boundary. The objective must be specific enough to derive from the encoded [[strategy-as-code|strategy]].
- Missing escalation paths. An agent with no escalation thresholds either escalates everything (destroying its operational leverage) or escalates nothing (producing decisions beyond its authority).
- Self-amendment. Any path by which an agent can rewrite its own constraints under pressure turns the decision-rights ladder from a constraint into a suggestion.
- Charter without visibility. Boundaries that no human can observe at runtime cannot be governed; oversight degrades into trust.
Relationship to other frameworks
Agent Charters are the unit that makes the [[machine-core-human-cortex|Machine Core]] governable: they convert [[strategy-as-code|Strategy-as-Code]] into enforceable, per-agent boundaries, and they are what lets a [[vp-agent-architecture|VP-Agent]] know whether it can act autonomously or must escalate to the [[machine-core-human-cortex|Human Cortex]]. They connect upward to the [[ipre-pipeline|IPRE Pipeline]] (role definitions trace to Intent) and are monitored by [[alignment-debt|Alignment Debt]] (policy-violation and escalation-suppression signals track charter health). Charters are also why the book argues they belong to the operating-system layer rather than to governance — they are a design input that shapes what agents can do from the first deployment. The [[new-triumvirate|Guardian]] sits at the interface between chartered agents and human judgment, proposing charter amendments where alignment drifts. Pre-authorizing charter-amendment categories is one of the strongest levers on [[iteration-half-life|Iteration Half-Life]].
Origin note
ORIGINAL to this manuscript. The framework for defining autonomous-agent roles and governance as version-controlled, machine-readable charters — with a decision-rights ladder, architecturally prior hard constraints, and human-signed charter PRs — is original to the AI-Born model.
One of the frameworks running through AI‑Born by Mehran Granfar. Developed across Volume I, "The Machine Core".


