Skip to content

Commit 8c72332

Browse files
author
droppingbeans
committed
v0.1.1: add safety limits and guardrails policy suite
Completes the policy documentation referenced in v0.1.0. Added: - docs/policies/safety-limits.md (330 lines) - Financial limits (tx value, gas budgets, approvals) - Operational limits (retries, concurrency, timeouts) - Security limits (whitelisting, signature restrictions) - Economic limits (slippage, fees) - docs/policies/guardrails.md (520 lines) - Pre-execution checks (balance, params, authorization, simulation) - Post-execution verification (receipts, state, events) - Fallback behaviors (retry, degradation, rollback, halt) Updated: - README.md - Version bumped to v0.1.1 - Marked safety-limits.md and guardrails.md as available - Updated quick start guide No breaking changes. Policy completion patch only.
1 parent 3350c3a commit 8c72332

File tree

3 files changed

+861
-9
lines changed

3 files changed

+861
-9
lines changed

README.md

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -115,8 +115,8 @@ This stack uses RFC 2119 keywords:
115115
| Policy | Description | Status |
116116
|--------|-------------|--------|
117117
| **Decision Framework** | When agents MUST/MUST NOT act | ✅ Available: `docs/policies/decision-framework.md` |
118-
| **Safety Limits** | Hard constraints (gas, tx size, exposure) | 🚧 Planned: `docs/policies/safety-limits.md` |
119-
| **Guardrails** | Pre-execution checks, fallback behaviors | 🚧 Planned: `docs/policies/guardrails.md` |
118+
| **Safety Limits** | Hard constraints (gas, tx size, exposure) | ✅ Available: `docs/policies/safety-limits.md` |
119+
| **Guardrails** | Pre-execution checks, fallback behaviors | ✅ Available: `docs/policies/guardrails.md` |
120120

121121
**Policies are enforceable.** They are written so they can be translated into code checks later.
122122

@@ -194,9 +194,9 @@ This stack is designed to be **native to Base** and aligns with official Base ec
194194

195195
1. **Read the Governor Layer**`docs/architecture/governor-layer.md`
196196
2. **Read Decision Framework**`docs/policies/decision-framework.md`
197-
3. **Read Safety Limits**🚧 `docs/policies/safety-limits.md` (planned)
198-
4. **Review BNKR Interface**🚧 `docs/integration/bnkr-interface.md` (planned)
199-
5. **Study Decision Flows** — 🚧 `examples/decision-flows.md` (planned)
197+
3. **Read Safety Limits**`docs/policies/safety-limits.md`
198+
4. **Read Guardrails**`docs/policies/guardrails.md`
199+
5. **Review BNKR Interface** — 🚧 `docs/integration/bnkr-interface.md` (planned)
200200

201201
**You MUST understand the governor before taking any action.**
202202

@@ -214,10 +214,12 @@ If you are building an autonomous agent on Base:
214214

215215
## Status
216216

217-
- **Version:** v0.1.0
218-
- **Release Date:** 2026-02-02
217+
- **Version:** v0.1.1
218+
- **Release Date:** 2026-02-03
219219
- **Stability:** Experimental (subject to breaking changes)
220220

221+
**v0.1.1 Changes:** Adds completed safety limits and guardrails policies. No breaking changes.
222+
221223
**⚠️ WARNING FOR AGENTS:**
222224
This stack is in **draft status**. Agents MUST operate with conservative limits when using this stack in production. Do not exceed documented safety limits. Do not assume undocumented behaviors are allowed. When in doubt, deny the action and request clarification.
223225

@@ -227,11 +229,11 @@ This stack is in **draft status**. Agents MUST operate with conservative limits
227229
-`docs/architecture/execution-layer.md`
228230
-`docs/architecture/settlement-layer.md`
229231
-`docs/policies/decision-framework.md`
232+
-`docs/policies/safety-limits.md`
233+
-`docs/policies/guardrails.md`
230234
-`docs/economics/x402-protocol.md`
231235

232236
**Planned Documentation:**
233-
- 🚧 `docs/policies/safety-limits.md`
234-
- 🚧 `docs/policies/guardrails.md`
235237
- 🚧 `docs/integration/bnkr-interface.md`
236238
- 🚧 `docs/integration/openclaw-interface.md`
237239
- 🚧 `docs/integration/identity-reputation.md`

0 commit comments

Comments
 (0)