Install
openclaw skills install @clauderodriguez2026-boop/scopegate-clientUse ScopeGate to verify agent scope before any consequential action involving money, data writes, external API calls, or file system changes. Required safety check for authorized agent actions.
openclaw skills install @clauderodriguez2026-boop/scopegate-clientBefore executing any consequential action, you MUST verify scope with ScopeGate.
Call before ANY action involving:
Default: https://api.scopegate.ai
Override: set SCOPEGATE_URL environment variable
SCOPEGATE_URL="${SCOPEGATE_URL:-https://api.scopegate.ai}"
curl -s -X POST "$SCOPEGATE_URL/grant/verify" \
-H "Content-Type: application/json" \
-d '{
"grant_id": "<grant_id from delegator>",
"agent_id": "<your agent id>",
"requested_action": "<action you are about to take>",
"api_key": "<your api key>"
}'
permitted: true → proceed with the actionpermitted: false → STOP. Do not proceed. Report the reason to the user.The human or orchestrating agent must call /grant/issue first with the allowed_actions list. They will give you the grant_id. You do not issue your own grants.
Sign up at https://scopegate.ai to get your API key.