Install
openclaw skills install weryai-accountCheck WeryAI account credits and API balance through the official WeryAI account endpoint. Use when the user wants to query remaining credits, inspect WeryAI account balance, verify that WERYAI_API_KEY works for account access, or asks how many credits are left before running paid image, video, or music jobs.
openclaw skills install weryai-accountUse this skill for official WeryAI account balance and credits queries. It is intentionally narrow: the only supported public account action in this skill is reading the current API credits balance from WeryAI.
This skill is intentionally strict about secret declaration and input safety: the only runtime secret is WERYAI_API_KEY. This is a read-only account check, not a generation or editing workflow.
Dependencies: scripts/account.js in this directory + WERYAI_API_KEY + Node.js 18+. No other Cursor skills are required.
Check my remaining WeryAI credits.How many credits are left on this WeryAI API account?Verify that this WERYAI_API_KEY can read the account balance.Before I run a paid image job, show me the current WeryAI balance.balanceWERYAI_API_KEY runtime-secret policyBefore the first real account query:
https://www.weryai.com/api/keys.WERYAI_API_KEY.WERYAI_API_KEY in metadata.openclaw.requires.env and primaryEnv.WERYAI_API_KEY.export WERYAI_API_KEY="your_api_key_here"
Use one safe check before the first real account query:
node {baseDir}/scripts/account.js balance
If the key is valid, the command returns JSON with a numeric balance.
balance confirms that the key is configured and the official account endpoint is reachable.balance is 0, guide the user to recharge or buy credits at https://www.weryai.com/api/pricing before running paid jobs.WERYAI_API_KEY must be set before running account.js.>=18 is required because the runtime uses built-in fetch.WERYAI_API_KEY: Treat it as a secret. Configure it only in the runtime environment; never write the secret value into the skill files.WERYAI_BASE_URL defaults to https://api.weryai.com. Only override it with a trusted host.scripts/account.js before production use.Use this skill when the user asks:
Do not use this skill for:
Those belong to other WeryAI skills.
node {baseDir}/scripts/account.js balance
WERYAI_API_KEY is available in the runtime environment.node {baseDir}/scripts/account.js balance.The command prints JSON to stdout. Successful output includes:
okphasebalancetopUpRequiredrechargeUrlguidanceFailure output can include:
errorCodeerrorMessageThe task is done when:
0, the recharge guidance is shown with https://www.weryai.com/api/pricing,WERYAI_API_KEY.balance is read-only and safe to re-run.