revenium
v0.4.6MANDATORY budget check BEFORE EVERY OPERATION — read budget-status.json first, always, no exceptions. Enforces token spend limits, warns on threshold exceedance, halts autonomous agents on budget overrun.
Installation
STOP — READ THIS FIRST
This section MUST be executed before EVERY response, EVERY tool call, EVERY operation. This applies to ALL tasks — not just Revenium-related ones. Answering a question, writing code, listing files, naming a rock band — ALL of it requires a budget check first. Do not read further. Do not respond to the user. Check the budget first. Now.
Budget Check Procedure
The budget status is maintained by a background cron job that checks Revenium every minute and writes the result to ~/.openclaw/skills/revenium/budget-status.json. You read this local file — do NOT call the Revenium API directly.
-
Read budget status. Read the file
~/.openclaw/skills/revenium/budget-status.json. If it does not exist, the cron has not run yet — tell the user "Budget status not yet available. The metering cron may not be installed. Runbash ~/.openclaw/skills/revenium/scripts/install-cron.shto set it up." Then proceed with the operation. -
Parse the status. Extract these fields from the JSON:
currentValue— current spend in the budget periodthreshold— the budget limitpercentUsed— percentage of budget consumedexceeded— boolean, whether the budget has been exceeded-
lastChecked— when the cron last updated this file -
Evaluate the result:
If exceeded is false (budget OK): Proceed silently. Do NOT mention the budget to the user.
If exceeded is true (budget blown): Read autonomousMode from ~/.openclaw/skills/revenium/config.json.
If autonomousMode is false or absent (default — interactive mode):
You MUST STOP. Do NOT execute any operation, do NOT generate a response. Tell the user:
"Your Revenium budget has been exceeded. You have spent $CURRENT_VALUE of your $THRESHOLD budget (PERCENT_USED%). Last checked: LAST_CHECKED. Would you like to continue anyway?"
Replace the values with the actual numbers from the file.
- If the user says yes / continue / approved: Proceed with the operation.
- If the user says no / stop / cancel: STOP. Do NOT execute the operation. Tell the user: "Operation cancelled. Run
/reveniumto adjust your budget."
If autonomousMode is true:
Check the halted field in ~/.openclaw/skills/revenium/budget-status.json.
-
If
haltedistrue: You MUST STOP immediately. Do NOT execute any operation, do NOT generate any response beyond this message:"Budget enforcement halt is active. $CURRENT_VALUE of $THRESHOLD budget used (PERCENT_USED%). A notification has been sent to your configured channel. To resume, run:
bash ~/.openclaw/skills/revenium/scripts/clear-halt.sh"Replace the values with the actual numbers from the file. Do NOT proceed under any circumstances until
haltedisfalse. -
If
haltedisfalsebutexceededistrue: The user has explicitly cleared the halt — this is an approval to proceed. Continue with the operation.
If budget-status.json is missing or unreadable
- Tell the user: "Budget status unavailable. Proceeding with caution."
- Proceed with the operation — fail open, do not block the user.
Path Resolution
All file paths in this skill use ~/.openclaw/skills/revenium/ as the skill directory. When using file tools (read, write, edit), pass paths with ~/ — the tool resolves ~ to $HOME automatically. When running shell commands via exec/bash, use the explicit $HOME/.openclaw/skills/revenium/ form so the shell expands $HOME correctly.
Setup
At the start of any operation, check: does ~/.openclaw/skills/revenium/config.json exist?
- If YES and the user has NOT requested reconfiguration: setup is complete. Proceed to the budget check. Do NOT re-run setup.
- If NO: you MUST run the Setup Flow below before proceeding. Do NOT execute any operations until setup is complete.
Setup Flow
Follow these steps in order. If any step fails, STOP. Do NOT write config.json. Do NOT proceed with operations.
-
Check for existing API key. Run:
revenium config showIf the output shows an API Key is already set (not empty), skip to step 3. The key is already configured. -
If no API key is configured: Collect the following from the user. Ask for each value and wait for their response:
-
API Key: "Please provide your Revenium API key."
- Team ID: "Please provide your Revenium Team ID."
- Tenant ID: "Please provide your Revenium Tenant ID."
- User ID: "Please provide your Revenium User ID."
Then configure the CLI by running each command in order:
revenium config set key API_KEY
revenium config set team-id TEAM_ID
revenium config set tenant-id TENANT_ID
revenium config set user-id USER_ID
Replace the placeholder values with the user's actual responses. If any command returns a non-zero exit code: tell the user what went wrong, tell them to run /revenium when ready, and STOP. Do NOT write config.json.
-
Prompt for organization name (optional). Ask the user: "What is your organization name for Revenium reporting? (optional — press Enter to skip)" If the user provides a value, call it
ORG_NAME. If they skip, leave it empty. -
Prompt for budget amount. Ask the user: "What budget threshold would you like to set? (numeric amount, e.g., 5.00)" Wait for the user's response. Call this value
AMOUNT. -
Prompt for budget period. Ask the user: "Which budget period would you like?" and present these four options:
- DAILY
- WEEKLY
- MONTHLY
- QUARTERLY
Wait for the user's selection. Call this value PERIOD.
-
Prompt for autonomous mode. Ask the user: "Will this agent run autonomously (without a user present)? If yes, budget exceedance will halt all operations and notify you. (yes/no, default: no)"
-
If yes: Set
AUTONOMOUS_MODEtotrue. Then:- Ask: "Which OpenClaw channel should receive budget alerts?" Present supported types:
slack,discord,telegram,whatsapp,signal,googlechat,msteams,mattermost,imessage - Wait for the user's selection. Call this value
NOTIFY_CHANNEL. - Ask: "What is the notification target on that channel?" Explain that the format varies by channel:
- Slack:
user:<id>orchannel:<id> - Discord:
user:<id>orchannel:<id> - Telegram: chat id or
@username - WhatsApp: E.164 phone number
- Signal:
+E.164orgroup:<id> - Teams: conversation id
- Wait for the user's response. Call this value
NOTIFY_TARGET.
- Ask: "Which OpenClaw channel should receive budget alerts?" Present supported types:
-
If no (default): Set
AUTONOMOUS_MODEtofalse. Skip notification channel prompts. -
Generate the alert name. Set
ALERT_NAMEto"OpenClaw {Period} Budget"where{Period}is the title-cased version of the selected period: - DAILY -> "OpenClaw Daily Budget"
- WEEKLY -> "OpenClaw Weekly Budget"
- MONTHLY -> "OpenClaw Monthly Budget"
- QUARTERLY -> "OpenClaw Quarterly Budget"
Do NOT ask the user for a name. This is automatic.
-
Delete any existing budget alerts. Before creating a new alert, you MUST check for and remove pre-existing OpenClaw budget alerts to prevent duplicates. Run:
revenium alerts budget list --jsonParse the JSON output and look for any alerts whose name starts with"OpenClaw ". For EACH matching alert, delete it:revenium alerts budget delete EXISTING_ALERT_ID --yesIf the list command fails or returns no results, that is fine — proceed to the next step. If a delete fails, log a warning but continue. -
Create the budget alert. Run:
revenium alerts budget create --name "ALERT_NAME" --threshold AMOUNT --period PERIOD --jsonIf the exit code is non-zero: tell the user what went wrong, tell them to run/reveniumwhen ready, and STOP. Do NOT writeconfig.json. -
Extract the alert ID. From the JSON response, extract the
"id"field. This is a short alphanumeric string (e.g.,"75BjG5"). Call this valueALERT_ID.
CRITICAL: Do NOT use anomalyId from budget get responses — that is an integer and will cause HTTP 400 errors when passed to budget get. The correct value is the string "id" from the budget create response.
To extract reliably, pipe the create output through:
python3 -c "import json,sys; d=json.load(sys.stdin); print(d['id'])"
-
Write config.json. This MUST be the FINAL step — only write after ALL previous steps have succeeded. Write
~/.openclaw/skills/revenium/config.jsonwith pretty-printed JSON containing the alert ID, optional organization name, and autonomous mode settings:python3 -c " import json config = {'alertId': 'ALERT_ID'} org = 'ORG_NAME' if org: config['organizationName'] = org autonomous = AUTONOMOUS_MODE # True or False config['autonomousMode'] = autonomous if autonomous: config['notifyChannel'] = 'NOTIFY_CHANNEL' config['notifyTarget'] = 'NOTIFY_TARGET' print(json.dumps(config, indent=2)) " > ~/.openclaw/skills/revenium/config.jsonReplaceALERT_ID,ORG_NAME,AUTONOMOUS_MODE,NOTIFY_CHANNEL, andNOTIFY_TARGETwith the actual values. If the user skipped the organization name, omit it. If autonomous mode is false, omitnotifyChannelandnotifyTarget. -
Install the metering cron. Run:
bash ~/.openclaw/skills/revenium/scripts/install-cron.shThis registers a background job that ships token usage to Revenium every minute and keeps the local budget status file current. If the cron is already installed, this is a no-op. -
Confirm to the user. Tell the user setup is complete. Show: the alert name, the threshold amount, the period, the organization name (if provided), and autonomous mode status (including notification channel and target if configured).
Error Handling
On ANY failure during the Setup Flow: report what went wrong, tell the user to run /revenium when they are ready to try again, and STOP. Do NOT retry. Do NOT write a partial config.json. The absence of config.json is the signal that setup has not completed.
Reminder: After setup completes, check budget-status.json before your next response.
/revenium Command
When the user invokes /revenium:
If Setup Is Complete (config.json exists)
-
Show budget status. Read
alertIdfrom~/.openclaw/skills/revenium/config.json, then run:revenium alerts budget get ALERT_ID --jsonDisplay the current spend versus threshold to the user (current value, threshold, percent used, remaining). -
Show autonomous mode status. Read
~/.openclaw/skills/revenium/config.jsonand display: - Autonomous mode: enabled or disabled
- Notification channel: the configured channel type and target (if autonomous mode is enabled), or "not configured"
- Halt status: Read
~/.openclaw/skills/revenium/budget-status.jsonand check thehaltedfield. Display "ACTIVE (since HALTED_AT)" ifhaltedistrue, or "inactive" ifhaltedisfalseor absent. -
If halt is active, also show: "To resume operations, run:
bash ~/.openclaw/skills/revenium/scripts/clear-halt.sh" -
Offer actions. Ask the user: "Would you like to reset the budget (zero out current spend), reconfigure (change threshold/period), or done?" If the user declines or says done, STOP — no further action.
If Setup Is NOT Complete (no config.json)
Run the Setup Flow from the Setup section above.
Reconfiguration Flow
When the user requests reconfiguration:
-
Read existing alert ID. Read
alertIdfrom~/.openclaw/skills/revenium/config.json. Call this valueOLD_ALERT_ID. -
Delete the old alert. Run:
revenium alerts budget delete OLD_ALERT_ID --yesIf this fails (e.g., alert already deleted or not found): log a warning but continue. The goal is to prevent orphaned alerts. -
Delete config.json. Remove
~/.openclaw/skills/revenium/config.json. -
Run the full Setup Flow from the Setup section above. This collects fresh API key, budget amount, period, and creates a new alert from scratch.
Reminder: After reconfiguration completes, check budget-status.json before your next response.
Reset Budget Flow
When the user requests a budget reset (zero out current spend without changing settings):
-
Read existing config. Read
alertId,organizationName,autonomousMode,notifyChannel, andnotifyTargetfrom~/.openclaw/skills/revenium/config.json. Call the alert IDOLD_ALERT_ID. -
Get current alert settings. Run:
revenium alerts budget get OLD_ALERT_ID --jsonExtractname,threshold, andperiodDurationfrom the response. -
Delete the old alert. Run:
revenium alerts budget delete OLD_ALERT_ID --yesIf this fails: warn the user but continue. -
Create a new alert with the same settings. Run:
revenium alerts budget create --name "ALERT_NAME" --threshold THRESHOLD --period PERIOD --jsonUse thename,threshold, andperiodDurationvalues from step 2. -
Extract the new alert ID. From the create response, extract the
"id"field. Call thisNEW_ALERT_ID. -
Update config.json. Replace
alertIdwithNEW_ALERT_ID, preserving all other fields:python3 -c " import json with open('$HOME/.openclaw/skills/revenium/config.json', 'r') as f: config = json.load(f) config['alertId'] = 'NEW_ALERT_ID' with open('$HOME/.openclaw/skills/revenium/config.json', 'w') as f: json.dump(config, f, indent=2) f.write('n') " -
Reset local budget status. Write a fresh
budget-status.jsonwith zeroed values andexceeded: false,halted: false. -
Confirm to the user. Tell the user: "Budget reset. Spend counter is now $0.00 of $THRESHOLD (PERIOD). Alert ID: NEW_ALERT_ID."
Reminder: After budget reset completes, check budget-status.json before your next response.
Troubleshooting
Binary Not Found
If revenium is not found on PATH:
- STOP all operations that require budget checking
- Tell the user: "The revenium CLI is not installed or not on your PATH. Install it from https://docs.revenium.io/for-ai-agents and ensure it is available in your shell."
API Key Invalid
If revenium config show reports no API key or an invalid key:
- STOP all operations that require budget checking
- Tell the user: "Your Revenium API key is missing or invalid. Run /revenium to reconfigure."
Network Errors
If any revenium CLI command fails due to network issues:
- Tell the user: "Unable to reach the Revenium API. Check your network connection and try again."
- Do NOT proceed with the operation until budget status is confirmed.
Reminder: Check budget-status.json before your next response.