Anthropic Adapter
Gate Anthropic tool-use events identically to other adapters with unknown-tool deny by default.
What it does
Gate Anthropic tool-use events identically to other adapters with unknown-tool deny by default.
How it works
1. Validate intent
Adapter checks structure only (required fields, types, unknown fields). It does not run policy logic.
2. Normalize action
Intent is mapped to a generic NormalizedAction with action type DATA_ACCESS / PAYMENT / CONFIG_CHANGE.
3. Evaluate policy
Governor evaluates centrally with fail-closed semantics. Any uncertainty returns deny.
4. Build plan + execute
Execution plan is descriptive. Default path is dry-run and returns planned external calls.
5. Emit evidence
Decision output includes deterministic evidence packet and stable evidence hash.
Why this is useful
Use it for
Consistent governance across Claude tool use
anthropicDATA_ACCESS / PAYMENT / CONFIG_CHANGEExample intent
{
"action": "tool_use",
"tool": "ticket_create",
"tool_category": "config_change",
"args": {
"queue": "security",
"priority": "high"
},
"requested_by": "agent-anthropic"
}
Where to monitor
Integration Runtime View
Adapter health, evaluation outcomes, and dry-run execution traces.
Incidents + Deny Analysis
Investigate denied actions and policy matches with evidence references.
Evidence Docs
Validate evidence hashes and export packets for audits.
Policy Docs
Define allowlists, thresholds, manual gates, and environment controls.
