volcengine-ark-quota

volcengine-ark-quota is a skill for Claude Code, Codex from uvwt/agentdock-skills. It costs 32 tokens per session (868 once invoked), scanned A, original, Apache-2.0.

A connector for the VolcEngine Ark console, a web dashboard for managing Ark Coding Plan usage. It reads quota and subscription information from the console using an existing logged-in browser session or cookie.

In plain words
What is it for?
Use it to check session readiness and query Coding Plan usage for the current session, recent week and recent month, along with subscription status when requested.
Why use it?
It avoids manually opening the dashboard and locating usage details. It also provides a status check for the page, usage endpoint and available login state.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to check session readiness and query Coding Plan usage for the current session, recent week and recent month, along with subscription status when requested.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/uvwt/agentdock-skills/volcengine-ark-quota
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add uvwt/agentdock-skills --skill volcengine-ark-quota
Clone the repo
git clone --depth 1 https://github.com/uvwt/agentdock-skills

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for volcengine-ark-quota

README.md
[![agentmods](https://agentmods.dev/badge/skills/uvwt/agentdock-skills/volcengine-ark-quota/github.svg)](https://agentmods.dev/skills/uvwt/agentdock-skills/volcengine-ark-quota)
Your own site
<a href="https://agentmods.dev/skills/uvwt/agentdock-skills/volcengine-ark-quota"><img src="https://agentmods.dev/badge/skills/uvwt/agentdock-skills/volcengine-ark-quota/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for volcengine-ark-quota

Your own site · 80×15
<a href="https://agentmods.dev/skills/uvwt/agentdock-skills/volcengine-ark-quota"><img src="https://agentmods.dev/badge/skills/uvwt/agentdock-skills/volcengine-ark-quota.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 32 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 868 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00032 $0.00868
Opus 5 $0.00016 $0.00434
Sonnet 5 $0.00006 $0.00174
Haiku 4.5 $0.00003 $0.00087

Measured 10d ago against content hash 26d17d313715, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

volcengine-ark-quota scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (run.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/volcengine-ark-quota/SKILL.md · 78 lines

How it starts

The opening of the file, as written. The whole thing — 78 lines — stays where its author put it; the contents beside it link to each section on GitHub.

VolcEngine Ark Quota Skill

用于查询火山引擎 Ark 控制台 Coding Plan 页面里的额度/用量。

目标页面:https://console.volcengine.com/ark/region:cn-beijing/subscription/coding-plan

能力

  • status:检查 Coding Plan 页面、GetCodingPlanUsage 接口是否可达,并检查是否配置了登录态来源。
  • query:调用控制台接口查询 Coding Plan 的 QuotaUsage,默认同时查询订阅状态 ListSubscribeTrade

前端反查到的核心接口:

  • POST https://console.volcengine.com/api/top/ark/<region>/2024-01-01/GetCodingPlanUsage
  • CSRF 头:X-Csrf-Token
  • 未登录时提供商错误通常是 NotLogin

登录态来源

query 至少需要一种登录态:

  1. storage_state_path:Playwright storage state JSON,推荐。
  2. VOLCENGINE_ARK_STORAGE_STATE:可在 ~/.agentdock/env/skill/volcengine-ark-quota.env 或当前命令显式环境中配置,指向 storage state 文件。
  3. VOLCENGINE_ARK_COOKIE:可在同一私有环境文件或当前命令环境中配置原始 Cookie header;不得写入 Skill 包或日志。
  4. cookie 输入参数:临时 Cookie header,不推荐长期使用。

可选:VOLCENGINE_ARK_CSRF_TOKENcsrf_token。通常不需要手动传,Skill 会从 Cookie 里找 CSRF,并在缺失时先探测一次再重试。

推荐使用流程

  1. 用浏览器工具打开目标页面并登录火山引擎控制台。
  2. 导出/保存 Playwright storage state。
  3. 调用:
{
  "storage_state_path": "/path/to/storage_state.json",
  "region": "cn-beijing"
}

输出说明

quota_periods 会返回三类用量:

  • session / 当前会话
  • weekly / 近 1 周
  • monthly / 近 1 月

每一项包含 used_percentremaining_percentreset_atreset_seconds 等字段。不同账号/套餐返回字段可能有差异,include_raw=true 可返回已脱敏原始响应用于排障。

安全边界

  • Skill 不会把 Cookie、CSRF、API Key 等敏感值输出到 stdout。
  • Skill 包内不保存登录态;持久登录态应放在 skill-data/volcengine-ark-quota/;环境变量单独放在 ~/.agentdock/env/skill/volcengine-ark-quota.env
  • 这是控制台内部接口封装,不是火山引擎公开 OpenAPI;如果前端接口改版,Skill 可能需要更新。

辅助脚本执行

Skill 本体是本说明文档。确需调用包内辅助脚本时,在 Skill 包根目录使用相对路径执行;运行宿主负责切换到包根目录并把所需变量注入当前子进程。

printf '%s' '{"skill_action":"<动作>"}' | python3 run.py

输入必须是 JSON 对象。写操作仍按本文档中的确认规则执行。

动作 用途
status Check whether the public Coding Plan page and quota endpoint are reachable, and report available local auth sources without exposing secrets.
query Query live Coding Plan quota usage and subscription status. Requires a logged-in console cookie or Playwright storage_state path.

Read the full file on GitHub · 78 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 78 lines · 32 tokens per session scan A 26d17d313715

Subscribe to this mod's changes

volcengine-ark-quota is a skill published in the GitHub repository uvwt/agentdock-skills (3 stars, last pushed 9d ago), licensed Apache-2.0. It adds 32 tokens to every session and 868 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

claude-md-improver

Audit and improve CLAUDE.md files in repositories. Use when user asks to check, audit, update, improve, or fix CLAUDE.md files. Scans for all CLAUDE.md files, evaluates quality against templates, outputs quality report, then makes targeted updates. Also use when the user mentions "CLAUDE.md maintenance" or "project…

anthropics/claude-plugins-official · 82 tokens

agent-platform-rag-engine-management

Manage and query Agent Platform RAG Engine Corpora and retrieve grounded contexts using the Google GenAI SDK. Use when listing RAG corpora or files, inspecting a corpus, retrieving contexts, or generating content grounded in a RAG corpus. Do not use for standard database queries (use SQL/Spanner skills), Google…

google/skills · 85 tokens

gke-workload-security

Audits, configures, and hardens workload-level security controls for Google Kubernetes Engine (GKE) applications and namespaces. Covers running cluster security audits (auditcluster.sh), configuring Workload Identity Federation (impersonation, KSA/GSA binding, and pod setup), enforcing Network Policies (default-deny…

google/skills · 181 tokens

gke-reliability

Improves GKE workload reliability, using PDBs, health probes, and topology spread constraints. Use when configuring GKE workload reliability, setting up PDBs, or configuring GKE health probes (liveness, readiness, startup). Don't use for disaster recovery setup or full cluster backups (use gke-backup-dr instead).

google/skills · 73 tokens

agent-platform-model-registry

Agent Platform Model Registry Management. Use when you need to upload, list, describe, update, or delete machine learning models (and their versions) in the Agent Platform Model Registry. Don't use for model training, model deployment to endpoints, or managing non-Agent Platform models.

google/skills · 60 tokens

google-cloud-solution-agentic-analytics-spark-knowledge-catalog

Discovers requirements and generates guidance to design and deploy a governed, secure agentic-analytics solution for data that's distributed across Google Cloud, other cloud providers, or on-premises. Data that's outside Google Cloud (such as data from Databricks, Snowflake, Salesforce, SAP, or Oracle systems) is…

google/skills · 138 tokens