Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add rules/webhook-co/webhook/constitutiongit clone --depth 1 https://github.com/webhook-co/webhookWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00452 | $0.00452 |
| Opus 5 | $0.00226 | $0.00226 |
| Sonnet 5 | $0.00090 | $0.00090 |
| Haiku 4.5 | $0.00045 | $0.00045 |
Grade A, and why
constitution scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
What it actually says
Constitution — non-negotiables
Durable principles for this repository. Design for them from day one; they are not bolt-ons.
- Compliance-by-design. Encryption in transit and at rest; secrets in a KMS; append-only, hash-chained audit log; Postgres RLS tenant isolation; region pinning; PII/PHI scrubbed from logs.
- MCP / AI-native parity. Every capability is reachable identically from CLI / API / web / MCP.
- Private-by-default. Nothing is public, listed, or shared unless explicitly made so.
- Cookieless ingestion on a separate apex. Ingestion and the CLI tunnel live on
wbhk.my: cookieless, no CORS, path-token routing,404for unknown tokens. Never serve ingestion from a primary application subdomain. - Standard-Webhooks-native. Signing/verification follow Standard Webhooks (send and receive). Do not hand-roll signature schemes.
- Open-core boundary. Open core is Apache-2.0; proprietary code is fenced into
ee/. Open-core code must not depend onee/. - Transparent pricing (qualitative). Keep event metering accurate and single-dimension; never add hidden per-step counters. (No prices or cost figures belong in this repo.)
Engineering guardrails (non-negotiable)
- Human-UI-testing hard stop. When a change needs human UI/visual verification you cannot do yourself (rendering, layout, design, interaction, user-facing copy), STOP and explicitly flag it for human testing. Do not mark complete, approve, or merge until a human has verified it.
- Never bypass tests. Never use
git commit/push --no-verify; never add.only/skip/disable tests or lower coverage thresholds to make CI pass. Fix the root cause. CI required checks are mandatory for everyone (including admins) — status checks have no bypass.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- yesterday First seen · 33 lines · 452 tokens per session scan A 0ac844893a69
constitution is a cursor rule published in the GitHub repository webhook-co/webhook (0 stars, last pushed 6d ago), licensed Apache-2.0. It adds 452 tokens to every session, about $0.0023 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other cursor rules, from other repositories
docs
All documentation files use MDX format with a specific structure.
type-inference
Derive TypeScript types from Zod schemas - no hand-written interfaces for wire shapes.
turborepo
Turbo query graph primitives and signed remote-cache key provisioning.
workers-cache
Workers Cache - Cache-Control, gateway exports cache off, RPC vs fetch.
boundaries
Package dependency boundaries - tag map and enforced invariants.
react
React 19 SPA invariants - client-only, no fetch in useEffect, Compiler memo policy.