Home · Agency Papers · AgentVector Law Registry
Law Registry · v1.0 · July 2026

AgentVector Law Registry

Composable Laws — purpose, primitives, composition, and verdict examples

Author Stephen Sweeney
Version 1.0
License CC BY 4.0

Purpose

This registry is the operational index for every Law in the AgentVector Codex. The Codex defines constitutional philosophy and architecture; this page answers implementation questions for each Law: what primitive it governs, how it composes with siblings, which jurisdictions bind it, and what a concrete verdict looks like in production.

The Agency Paradox defines Constraints as neutral governance rules. In AgentVector, Laws implement Constraints — the Codex is where architectural Constraints become named, composable, auditable primitives.


Group I — Foundational Laws (Boundaries)

Law 0 — Boundary Law

FieldDetail
PurposeContain agent reach across filesystem and network surfaces
Primitive typeSandboxedPath, network scope tokens, I/O capability sets
Composition behaviorDeny-wins with Context and Delegation Laws; boundary violations short-circuit evaluation
JurisdictionsVigil (Shell, Browser, FileSystem governance modules)
Verdict exampleAgent proposes rm -rf /DENY — path outside SandboxedPath scope; trace records Boundary Law #0, reason PATH_OUT_OF_SCOPE

Law 1 — Context Law

FieldDetail
PurposeGovern information retrieval scope (Governed RAG)
Primitive typeAuthorization-tiered retrieval requests, corpus scope declarations
Composition behaviorEvaluated before Persistence writes; retrieval tier must match current authority state
JurisdictionsReferenced across domains; primary binding in multi-tenant retrieval pipelines
Verdict exampleAgent requests credentials corpus while authorized for public docs → DENYCONTEXT_TIER_MISMATCH

Law 2 — Delegation Law

FieldDetail
PurposeGovern authority handoff in multi-agent orchestration
Primitive typeDelegation tokens, child capability subsets, inheritance constraints
Composition behaviorChild authority ≤ parent authority at delegation time; cannot widen mid-session without principal action
JurisdictionsMulti-agent workflows (OpenClaw pipelines, orchestrated flight crews)
Verdict exampleSub-agent proposes action requiring admin scope spawner lacks → DENYDELEGATION_EXCEEDS_PARENT

Law 3 — Observation Law

FieldDetail
PurposeTelemetry, readiness validation, deterministic logging
Primitive typeReadiness gates, timestamped observations, pre-transition checks
Composition behaviorGates state transitions for Resource and Authority Laws; observations are inputs, not mutating actions
JurisdictionsFlightLaw, DispatchLaw, Vigil, ChronicleLaw
Verdict examplePre-flight GPS fix is 2D-only → DENY transition to .armedOBSERVATION_READINESS_FAILED

Group II — Sustainability Laws (Resources)

Law 4 — Resource Law

FieldDetail
PurposeCircuit-break token spend, energy, and thermal pressure
Primitive typeBudget counters, thermal thresholds, degraded/halted state transitions
Composition behaviorForces .degraded or .halted regardless of other permit signals; deny-wins on exhaustion
JurisdictionsVigil, FlightLaw, DispatchLaw
Verdict exampleToken budget exhausted mid-session → DENY all non-essential proposals; state → .degraded

Law 5 — Sovereignty Law

FieldDetail
PurposeData residency and regulatory compliance (GDPR, CCPA, HIPAA)
Primitive typeGeographic state constraints, residency tags on data flows
Composition behaviorBlocks illegal transmission even when Boundary Law permits network access
JurisdictionsEnterprise deployments with residency requirements
Verdict exampleProposal transmits EU user record to non-compliant region → DENYSOVEREIGNTY_VIOLATION

Group III — World State Laws (Persistence & Space)

Law 6 — Persistence Law

FieldDetail
PurposeMemory integrity and protection of established world facts
Primitive typeFact locks, immutable world-state fields, authorship-gated mutations
Composition behaviorEvaluated on all state mutations; conflicts with hallucinatory rewrites are hard denies
JurisdictionsChronicleLaw (Character, World, Combat governance modules)
Verdict exampleAgent proposes un-killing a dead character → DENYPERSISTENCE_FACT_LOCKED

Law 7 — Spatial Law

FieldDetail
PurposeGeometric and performance boundaries for physical operations
Primitive typeSafety envelopes, geofences, W&B envelopes, altitude floors
Composition behaviorEvaluated on movement and dispatch proposals; pairs with Observation for pre-flight gates
JurisdictionsFlightLaw, DispatchLaw
Verdict exampleDrone proposes waypoint outside geofence → DENYSPATIAL_ENVELOPE_VIOLATION

Group IV — Operational Laws (Lifecycle)

Law 8 — Authority Law

FieldDetail
PurposeRisk-tiered approval queue and human command
Primitive typeRisk tiers (low / medium / high), approval tokens, escalation records
Composition behaviorHigh-risk proposals suspend until principal authorization; composition signals may escalate without blocking
JurisdictionsVigil, FlightLaw, DispatchLaw, ChronicleLaw
Verdict exampleDestructive filesystem operation → ESCALATE — suspended pending principal approval

Law 9 — Lifecycle Law

FieldDetail
PurposeModel versioning, deployment, and rollback
Primitive typeModel promotion gates, benchmark fixtures, version pins
Composition behaviorBlocks activation until conformance benchmarks pass; independent of session composition
JurisdictionsCI/CD governance pipelines, model promotion workflows
Verdict exampleNew model lacks passing conformance fixtures → DENY promotion to production

Law 10 — Protocol Law

FieldDetail
PurposeStandards for authoring new Laws and Governance modules
Primitive typeCLI validators, schema templates, conformance test requirements
Composition behaviorMeta-Law: new components must prove determinism and traceability before registry admission
JurisdictionsFramework development; all new Governance modules
Verdict exampleCommunity Law fails deterministic replay test → DENY registry admission

Composition Semantics

When multiple Laws evaluate the same proposal, Domain Laws declare combining behavior. The default is deny-wins: any Law denial blocks execution. Conflicts between permit and escalate signals are recorded as governance events and resolved per declared Domain Law policy — never silently.

Constraint composition semantics from the Agency Paradox v2.3 apply here: overlapping Laws are the norm in regulated domains. Implementations must document how verdicts combine and treat unresolved conflicts as escalation events.