# Send Venice Admin to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "venice-admin",
    "name": "Venice Admin",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/sabrinaaquino/venice-admin",
    "canonicalUrl": "https://clawhub.ai/sabrinaaquino/venice-admin",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/venice-admin",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=venice-admin",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "scripts/api_keys_list.py",
      "scripts/balance.py",
      "scripts/usage.py",
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "venice-admin",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-10T15:06:00.933Z",
      "expiresAt": "2026-05-17T15:06:00.933Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=venice-admin",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=venice-admin",
        "contentDisposition": "attachment; filename=\"venice-admin-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "venice-admin"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/venice-admin"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/venice-admin",
    "downloadUrl": "https://openagent3.xyz/downloads/venice-admin",
    "agentUrl": "https://openagent3.xyz/skills/venice-admin/agent",
    "manifestUrl": "https://openagent3.xyz/skills/venice-admin/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/venice-admin/agent.md"
  }
}
```
## Documentation

### Venice Admin

Manage your Venice AI account - check balance, view usage history, and manage API keys.

⚠️ Important: These endpoints require an Admin API key, not a regular inference key. Create one at venice.ai → Settings → API Keys → Create Admin Key.

API Base URL: https://api.venice.ai/api/v1

### Setup

Create an Admin API key from venice.ai → Settings → API Keys
Set the environment variable:

export VENICE_API_KEY="your_admin_api_key_here"

### Check Balance

View your current DIEM and USD balances.

uv run {baseDir}/scripts/balance.py

Output includes:

Whether you can consume (has balance)
Current consumption currency (DIEM or USD)
DIEM balance and epoch allocation
USD balance

### View Usage History

View detailed usage history with filtering and pagination.

uv run {baseDir}/scripts/usage.py

Options:

--currency: Filter by currency: DIEM, USD, VCU (default: DIEM)
--start-date: Start date filter (ISO format: 2024-01-01)
--end-date: End date filter (ISO format: 2024-12-31)
--limit: Results per page (default: 50, max: 200)
--page: Page number (default: 1)
--sort: Sort order: asc or desc (default: desc)
--format: Output format: json or csv (default: json)
--output: Save to file instead of stdout

Examples:

# Last 50 DIEM transactions
uv run {baseDir}/scripts/usage.py

# USD usage in January 2024
uv run {baseDir}/scripts/usage.py --currency USD --start-date 2024-01-01 --end-date 2024-01-31

# Export to CSV
uv run {baseDir}/scripts/usage.py --format csv --output usage.csv

### List API Keys

View all your API keys.

uv run {baseDir}/scripts/api_keys_list.py

Output includes:

Key ID and name
Key type (Admin, Inference, etc.)
Creation date
Last used date
Rate limits

### Runtime Note

This skill uses uv run which automatically installs Python dependencies (httpx) via PEP 723 inline script metadata. No manual Python package installation required - uv handles everything.

### Security Notes

Admin keys have elevated permissions - protect them carefully
Admin keys can view billing info and manage other keys
Never commit admin keys to version control
Consider using inference-only keys for production workloads

### API Reference

EndpointDescriptionAuth RequiredGET /billing/balanceCheck DIEM/USD balanceAdmin keyGET /billing/usageView usage historyAdmin keyGET /api_keysList all API keysAdmin key

Full API docs: docs.venice.ai
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: sabrinaaquino
- Version: 1.0.1
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-10T15:06:00.933Z
- Expires at: 2026-05-17T15:06:00.933Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/venice-admin)
- [Send to Agent page](https://openagent3.xyz/skills/venice-admin/agent)
- [JSON manifest](https://openagent3.xyz/skills/venice-admin/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/venice-admin/agent.md)
- [Download page](https://openagent3.xyz/downloads/venice-admin)