Declare what's true.
Your agents will follow.

Ground truth for AI agents — verified facts in 12 tokens, not 12,000 tokens of context window.

edicts.yaml 47 tokens
# edicts.yaml — 47 tokens total
edicts:
  - id: launch_date
    text: "Product v2.0 launches April 15, NOT before."
    category: product
    confidence: verified
    ttl: event
    expiresAt: "2025-04-16"
🎭

Hallucination

Agents state fiction as fact because they lack verified ground truth.

💸

Context cost

Loading full memory burns 4K+ tokens. Every session. Most of it irrelevant.

🔇

Memory gap

Too heavy for cron jobs. Too expensive for lightweight sessions. Too scattered for multi-agent.

Edicts fills the gap between expensive memory systems and no memory at all.

How it works

Declare

Write verified facts in YAML. 12 tokens per fact.

# edicts.yaml
- text: "v2.0 launches April 15"
  confidence: verified

Inject

Edicts renders to your prompt automatically. 4K token budget cap.

const rendered = store.render();
// → "## Edicts\n- [product]..."

Trust

Every agent sees the same ground truth. Zero hallucination risk.

// 5 agents, 1 edicts.yaml
// Same facts. Every session.

Real problems, real fixes

🚀

Product Launch Coordination

Agent tweets 'just shipped!' three days early

Edict: 'v2.0 launches April 15, NOT before.' — 12 tokens

12 tokens

🛡️

Feature Guardrails

Support agent claims a feature that doesn't exist

Edict: 'Product does NOT have gas sponsorship.' — 9 tokens

9 tokens

🤝

Multi-Agent Consistency

Five cron agents give contradictory answers

Shared edicts file: same ground truth, every session — 47 tokens

47 tokens

See all use cases

Where Edicts fits

Full Context (MEMORY.md, SOUL.md, LCM) ~4K–20K tokens Edicts (verified ground truth) ~200–4K tokens ← you are here No context (raw LLM) 0 tokens — hallucination territory

Cheap enough for every session. Reliable enough for every fact.

Get started in 30 seconds

terminal
# Install the plugin
openclaw plugins install openclaw-plugin-edicts

# Restart the gateway
openclaw gateway restart

# edicts.yaml is auto-created in your workspace
# Start adding edicts:
edicts add --text "v2.0 launches April 15" \
  --category product --confidence verified
edicts.yaml
version: 1
edicts:
  - text: "v2.0 launches April 15"
    category: product
    confidence: verified
  - text: "Never mention Project X"
    category: compliance
    confidence: verified

Every agent session automatically receives your edicts as ground truth. No code changes needed.