Agent skill · software engineering · acedatacloud

acedatacloud

Manage your AceDataCloud account through the management API (platform.acedata.cloud). Use when the user wants to check their balance / remaining credits, look up API call (usage) records and spend, list or create or delete API keys (credentials), list subscribed services, list/create/pay recharge orders, manage platform tokens, view referral/affiliate earnings, or (admins) publish an announcement. Also covers the PUBLIC catalog & docs (no token needed): service detail & pricing, API list & OpenAPI specs, datasets, integrations, full-text documentation search, and the model catalog with per-model credit pricing. This is the self-service "console" API — distinct from the data-generation APIs (image/video/music/search).

Why this skill is useful

Adds a self-contained CLI script for managing AceDataCloud accounts, which provides capabilities not available in public documentation.

What it needs

Requires python3 installed locally. Requires acedatacloud account access. About 7k tokens when loaded. Last updated 2026-08-07. 13 stars on the source repository.

What this skill does

AceDataCloud Platform Management Programmatically manage your AceDataCloud account: balances, usage records, API keys, services, orders, platform tokens, models, announcements and referral earnings — plus browse the public catalog & docs (service pricing, API specs, datasets, integrations, documentation search, model catalog) without a token. This is the management / console API at https://platform.acedata.cloud/api/v1 — the same surface the web console uses. It is different from the data-generation API at api.acedata.cloud (image / video / music / search generation). Setup — use a PLATFORM token, not a service token The management API is authenticated with a platform token (or a logged-in user token), not the per-service API token used for api.acedata.cloud. 1. Create one at platform.acedata.cloud/console/platform-tokens (or POST /api/v1/platform-tokens/). It starts with platform- and never expires. 2. Provide it one of two ways: Connector (recommended in studio / chat): install the AceDataCloud connector at studio.acedata.cloud/console/connectors and paste the token once — the runtime injects ACEDATACLOUDPLATFORMTOKEN into the sandbox automatically (this skill declares connections: [acedatacloud]). Local .env: A normal token only ever sees its own account data. A superuser token sees every user's data and is required for admin operations (announcements). CLI (preferred) The skill ships scripts/acedatacloud.py — a self-contained CLI (stdlib only) for the most common operations. Every command accepts --json for machine-readable output and --token to override the env token. Without --yes, write commands print a dry-run preview and exit without calling the API. Pagination List endpoints return { "count": <total>, "items": [ ... ] } and accept ?limit= and ?offset=. …

How to use it

Reference it in AdaL, Claude Code, Cursor or any coding agent — nothing to install:

@skills acedatacloud/acedatacloud

View the source on GitHub

Browse the @skills marketplace