| name | satgate |
| description | Manage your API's economic firewall from the terminal. Mint tokens, track spend, revoke agents, enforce budgets. The server-side counterpart to lnget. |
| homepage | https://satgate.io |
SatGate CLI
SatGate CLI manages API access, budgets, and monetization for the agent economy. Use it when you need to control what agents can access and how much they can spend.
They're the wallet. We're the register.
If the agent needs to pay for L402 APIs, install lnget from Lightning Labs. SatGate is for the server side — enforcement, attribution, and governance.
Setup
Run scripts/configure.sh if no ~/.satgate/config.yaml exists. Or set environment variables:
export SATGATE_GATEWAY=http://localhost:9090
export SATGATE_ADMIN_TOKEN=sgk_your_token
export SATGATE_SURFACE=cloud
export SATGATE_GATEWAY=https://satgate-gateway.fly.dev
export SATGATE_BEARER_TOKEN=sg_your_api_key
export SATGATE_TENANT=your-tenant-slug
Always run satgate status first to confirm you're targeting the right gateway.
Safety Rules
- Check target first — run
satgate status before any operation to verify gateway URL and surface.
- Use
--dry-run on destructive operations (revoke, mint with large budgets).
- Never use
--yes without explicit user approval.
- Revocation is irreversible — always confirm token name before revoking.
Commands
Check gateway health
satgate status
satgate ping
Mint a token for a new agent
satgate mint
satgate mint --agent "my-bot" --budget 500 --expiry 30d --routes "/api/openai/*"
satgate mint --agent "child-bot" --budget 100 --parent "parent-token-id"
satgate mint --agent "my-bot" --budget 500 --dry-run
Check agent spend
satgate spend
satgate spend --agent "cs-bot"
satgate spend --period 7d
List and inspect tokens
satgate tokens
satgate token <id>
Revoke a compromised agent
satgate revoke <token-id>
satgate revoke <token-id> --dry-run
View security threats
satgate report threats
Check policy modes
satgate mode
Common Workflows
"New agent needs API access"
→ satgate mint --agent "agent-name" --budget 500 --routes "/api/openai/*"
"How much are agents spending?"
→ satgate spend
"Agent is misbehaving"
→ satgate revoke <token-id>
"Board wants AI spend report"
→ satgate spend --json > report.json
"Is the gateway healthy?"
→ satgate ping
Output Formats
All commands support --json for machine-readable output:
satgate tokens --json | jq '.[] | select(.status == "active")'
satgate spend --json > monthly-report.json
Pairing with lnget
SatGate (server-side) + lnget (client-side) = complete agent commerce stack.
- lnget: Agents pay for L402-gated APIs automatically
- SatGate CLI: Operators mint tokens, set budgets, revoke access, view spend
An agent using lnget hits your SatGate-protected endpoint → SatGate enforces the budget and attributes the cost → you see it in satgate spend.
Install lnget: claude plugin marketplace add lightninglabs/lightning-agent-tools