โ† All skills
Tencent SkillHub ยท Developer Tools

Venice Admin

Venice AI account administration - check balance, view usage history, and manage API keys. Requires an Admin API key.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Venice AI account administration - check balance, view usage history, and manage API keys. Requires an Admin API key.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
scripts/api_keys_list.py, scripts/balance.py, scripts/usage.py, SKILL.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

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

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.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.1

Documentation

ClawHub primary doc Primary doc: SKILL.md 8 sections Open source page

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

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
3 Scripts1 Docs
  • SKILL.md Primary doc
  • scripts/api_keys_list.py Scripts
  • scripts/balance.py Scripts
  • scripts/usage.py Scripts