ScopeGate Client
/install scopegate-client
ScopeGate Client
Before executing any consequential action, you MUST verify scope with ScopeGate.
When to Call ScopeGate
Call before ANY action involving:
- Money (payments, transfers, purchases)
- Data writes (database inserts/updates/deletes)
- External API calls (sending emails, posting to social, webhooks)
- File system changes (deletes, overwrites)
- Any action the human has not explicitly pre-authorized in this session
Endpoint
Default: https://api.scopegate.ai
Override: set SCOPEGATE_URL environment variable
How to Call ScopeGate
SCOPEGATE_URL="${SCOPEGATE_URL:-https://api.scopegate.ai}"
curl -s -X POST "$SCOPEGATE_URL/grant/verify" \
-H "Content-Type: application/json" \
-d '{
"grant_id": "\x3Cgrant_id from delegator>",
"agent_id": "\x3Cyour agent id>",
"requested_action": "\x3Caction you are about to take>",
"api_key": "\x3Cyour api key>"
}'
Decision Rules
- If
permitted: true→ proceed with the action - If
permitted: false→ STOP. Do not proceed. Report thereasonto the user. - If ScopeGate is unreachable → STOP. Treat as denied. Never fail open.
- Never cache a permit — call ScopeGate fresh for every consequential action
Getting a Grant ID
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.
Getting an API Key
Sign up at https://scopegate.ai to get your API key.
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install scopegate-client - After installation, invoke the skill by name or use
/scopegate-client - Provide required inputs per the skill's parameter spec and get structured output
What is ScopeGate Client?
Use ScopeGate to verify agent scope before any consequential action involving money, data writes, external API calls, or file system changes. Required safety... It is an AI Agent Skill for Claude Code / OpenClaw, with 56 downloads so far.
How do I install ScopeGate Client?
Run "/install scopegate-client" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is ScopeGate Client free?
Yes, ScopeGate Client is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does ScopeGate Client support?
ScopeGate Client is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created ScopeGate Client?
It is built and maintained by clauderodriguez2026-boop (@clauderodriguez2026-boop); the current version is v0.1.0.