1.1 KB
yaml
| 1 | schema: 1 |
| 2 | name: agent-guardrails |
| 3 | owner: openagents |
| 4 | version: 1.0.0 |
| 5 | kind: harness |
| 6 | title: Agent Guardrails |
| 7 | summary: Pre-action checks for destructive ops, budget/turn limits, confirmation gates, and a structured audit log |
| 8 | license: MIT |
| 9 | tags: [safety, guardrails, harness, audit-log, autonomy] |
| 10 | runtimes: [claude-code, codex, openai-agents, langgraph, generic] |
| 11 | pricing: |
| 12 | model: free |
| 13 | amount_cents: 0 |
| 14 | currency: usd |
| 15 | entry: HARNESS.md |
| 16 | files: |
| 17 | - HARNESS.md |
| 18 | - policies/destructive-actions.md |
| 19 | - audit-log.schema.json |
| 20 | inputs: |
| 21 | - name: max_turns |
| 22 | type: number |
| 23 | required: false |
| 24 | default: 50 |
| 25 | description: Maximum agent turns/tool-call rounds before the harness halts and asks for continuation |
| 26 | - name: budget_usd |
| 27 | type: number |
| 28 | required: false |
| 29 | description: Optional soft budget ceiling (in USD of estimated token spend) before the harness halts and asks for continuation |
| 30 | - name: audit_log_path |
| 31 | type: path |
| 32 | required: false |
| 33 | default: ".openagents/audit.log.jsonl" |
| 34 | description: Where to append structured audit log entries (JSON Lines, one object per action) |
| 35 | requires: [] |
| 36 |