Install
openclaw skills install agent-sentinelLocal-first budget and policy guardrails for agent actions, with optional remote sync to AgentSentinel.
openclaw skills install agent-sentinelUse this skill when you want a local policy gate before an agent performs a costly or risky action.
This OpenClaw skill is the lightweight entry point to the broader AgentSentinel product:
AgentSentinel is local-first by default:
sync with an API key configured.Use AgentSentinel before:
checkCheck whether a proposed action is allowed under the current local policy and budget.
python3 sentinel_wrapper.py check --cmd "rm -rf build" --cost 0.05
statusShow the current local status, including budget usage and whether optional remote sync is enabled.
python3 sentinel_wrapper.py status
syncUpload locally recorded events to AgentSentinel cloud when AGENT_SENTINEL_API_KEY is set.
python3 sentinel_wrapper.py sync
bootstrapCreate a default callguard.yaml in the current workspace if one does not already exist.
python3 sentinel_wrapper.py --bootstrap
resetReset local tracked spend for the current run, or for the entire local session state.
python3 sentinel_wrapper.py reset --scope run
python3 sentinel_wrapper.py reset --scope all
Policy is loaded from callguard.yaml in the current workspace when present.
Optional cloud mode is enabled by setting:
AGENT_SENTINEL_API_KEYIf the API key is not present, the skill remains local-only.
Locally recorded events stay on-machine until sync is run.
Use this skill if you want fast local guardrails inside OpenClaw.
Use the AgentSentinel SDK when you want:
Use the AgentSentinel platform when you want:
| Endpoint | When it is called | Data sent |
|---|---|---|
https://api.agentsentinel.dev | Only when AGENT_SENTINEL_API_KEY is present and python3 sentinel_wrapper.py sync is run | locally recorded action events generated by AgentSentinel |
.env or other files.AGENT_SENTINEL_API_KEY and an explicit sync command.OpenClaw may invoke this skill automatically when the task suggests budget enforcement, policy checks, or action gating. That behavior is expected for an installed skill.
By enabling remote sync, you allow AgentSentinel telemetry to be sent to agentsentinel.dev. Only enable that mode if you trust the service and want centralized monitoring.