一键导入
basilica-account-ops
Use when the user wants to log into Basilica, create API tokens, check balance, fund credits with TAO, or inspect deposit history.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use when the user wants to log into Basilica, create API tokens, check balance, fund credits with TAO, or inspect deposit history.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Use when the user broadly wants to operate Basilica as a cloud platform customer, including account setup, funding, rentals, deployments, inference, OpenClaw, Tau, or SDK automation.
Use when the user wants direct machine access on Basilica via rentals, including discovery, SSH keys, secure-cloud/community-cloud selection, volumes, SSH, exec, file copy, and teardown.
Use when the user wants to operate Basilica programmatically from Python, including deployments, rentals, inference templates, balance checks, and usage history.
Use when the user wants to deploy apps, APIs, inference endpoints, or OpenClaw/Tau-style services with the Basilica CLI.
Debug Basilica localnet services using existing scripts and Docker Compose commands
| name | basilica-account-ops |
| description | Use when the user wants to log into Basilica, create API tokens, check balance, fund credits with TAO, or inspect deposit history. |
Use this skill for the account-level Basilica operator surface:
Install the CLI:
curl -sSL https://basilica.ai/install.sh | bash
Authenticate:
basilica login
For headless terminals:
basilica login --device-code
Log out:
basilica logout
Use tokens for SDK/programmatic work, CI, and scripts.
Create:
basilica tokens create my-agent-token
List:
basilica tokens list
Revoke:
basilica tokens revoke my-agent-token --yes
Export for SDK usage:
export BASILICA_API_TOKEN="basilica_..."
Check current balance:
basilica balance
Get or create the user deposit address:
basilica fund
List deposit history:
basilica fund list --limit 100 --offset 0
If the user says "top up", "fund", "add credits", or "what address do I send TAO to", the operational flow is:
basilica fundbasilica fund list to confirm deposit arrivalbasilica balance to confirm credits updatedImportant details currently exposed by the CLI implementation:
0.1 TAO12 confirmationsThere is no separate top-up command. basilica fund is the top-up entrypoint.
basilica login for CLI work.These are safe to run without creating billable resources:
basilica balance
basilica fund
basilica fund list --limit 20 --offset 0
basilica tokens list
basilica balance
If the balance is too low for rentals or deploys, direct the user to:
basilica fund
basilica tokens create my-script-token
export BASILICA_API_TOKEN="basilica_..."
basilica tokens list
basilica tokens revoke old-token-name --yes
basilica tokens create replacement-token
BasilicaClient currently exposes get_balance() and list_usage_history(), but not a clean first-class deposit-account workflow.crates/basilica-cli/src/cli/handlers/auth.rscrates/basilica-cli/src/cli/handlers/tokens.rscrates/basilica-cli/src/cli/handlers/fund.rscrates/basilica-cli/src/cli/handlers/balance.rscrates/basilica-sdk-python/README.mdbasilica fund output and the expected deposit-history shape