by MeIotCOM
Check AI coding-plan quotas (5h / weekly / monthly) on the go — Zhipu GLM, Kimi, MiniMax, ZenMux, OpenCode Go, Volcengine Ark, DeepSeek & custom relays. No backend; keys never leave your device. Android / iOS / HarmonyOS NEXT, built with uni-app x.
# Add to your Claude Code skills
git clone https://github.com/MeIotCOM/CodingPlanQuotaGuides for using ai agents skills like CodingPlanQuota.
CodingPlanQuota is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by MeIotCOM. Check AI coding-plan quotas (5h / weekly / monthly) on the go — Zhipu GLM, Kimi, MiniMax, ZenMux, OpenCode Go, Volcengine Ark, DeepSeek & custom relays. No backend; keys never leave your device. Android / iOS / HarmonyOS NEXT, built with uni-app x. It has 51 GitHub stars.
CodingPlanQuota's catalog security scan is still queued. You can run an instant dependency and prompt-injection check now with the "Scan for vulnerabilities" button above.
Clone the repository with "git clone https://github.com/MeIotCOM/CodingPlanQuota" and add it to your Claude Code skills directory (see the Installation section above).
CodingPlanQuota is primarily written in Python. It is open-source under MeIotCOM on GitHub, so you can review or fork the full source.
Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh CodingPlanQuota against similar tools.
No comments yet. Be the first to share your thoughts!
Unlocks once the catalog security scan passes (runs nightly).
⚠️ Third-Party Software Notice
This skill is third-party open-source software developed and hosted independently on GitHub. SkillsLLM is an informational directory and does not control or maintain the underlying repository.
Any security checks, ratings, or warnings displayed by SkillsLLM are automated and limited in scope. They do not constitute a security certification or guarantee that the software is safe, error-free, or free from malicious code, vulnerabilities, compromised dependencies, or prompt-injection risks.
Review the source code, permissions, dependencies, and configuration before installing or running any third-party skill. Use is at your own risk. To the maximum extent permitted by applicable law, SkillsLLM is not liable for losses arising from third-party software.
The deep catalog scan for this skill is still queued. Run an instant dependency check now instead.
Your AI coding-plan quotas, at your fingertips.
CodingPlanQuota is a mobile app for checking the 5-hour / weekly / monthly quota usage and reset countdowns of your AI coding subscriptions (Coding Plan / Agent Plan) anytime — no computer required.
简体中文 | English
| Provider | Shown | Credentials |
|---|---|---|
| Zhipu GLM Personal (CN/EN) | 5h / weekly windows | API Key |
| Zhipu GLM Team | 5h / weekly windows | API Key + Organization ID + Project ID |
| Kimi For Coding | 5h / weekly windows | API Key |
| MiniMax (CN/EN) | 5h / weekly windows | API Key |
| ZenMux | 5h / weekly windows | API Key + quota endpoint URL |
| OpenCode Go | 5h / weekly / monthly | workspace API Key |
| Volcengine Ark (Agent / Coding Plan) | 5h / weekly / monthly | AccessKey ID + Secret (Volcengine SigV4) |
| DeepSeek | account balance | platform API Key |
| Custom / Relay | depends on chosen protocol | full endpoint URL + API Key + protocol template |
| Codex (ChatGPT) ⚠️ | 5h / 7d usage windows | ChatGPT access_token (from chatgpt.com/api/auth/session) |
| Codex (feelol) ⚠️ | daily / monthly USD usage + plan expiry | feea.lol bearer token |
| ChatGPT Plus ⚠️ | plan name + renewal countdown | pasted session JSON (no network calls) |
| MiMo Token Plan ⚠️ | token balance / monthly usage / plan expiry | backend URL+token, or direct web cookie |
| Claude ⚠️ | 5h / weekly / model-specific windows | Claude OAuth access_token |
| Gemini (Code Assist) ⚠️ | per-model quota buckets | Google Cloud OAuth access_token |
Custom / Relay: paste the full quota-endpoint URL and pick a parsing-protocol template — one of the built-in provider protocols, or Custom JSON mapping (the mobile equivalent of cc-switch's custom usage scripts): declare the auth style (Bearer / raw key / none) and the JSON paths per window (direct percent, or limit+remaining with optional 0–1 fraction ×100). No coding required to support any read-only GET usage API.
⚠️ Experimental providers — the last six rows rely on unofficial / internal endpoints ported from ai-quota-dashboard and have not been verified against real accounts by the team (we don't hold those subscriptions). The parsers are written defensively from extracted response shapes. If a provider works for you — or breaks — please open an issue so the status can be updated. Tokens/Cookies expire with your web session and must be re-obtained; everything is stored encrypted and never uploaded.
Location: Settings → Backup.
Export generates a JSON snapshot of all providers and copies it to the clipboard:
{
"app": "CodingPlanQuota",
"schemaVersion": 1,
"exportedAt": 1788000000000,
"providers": [
{
"id": "1788332457164-28992",
"kind": "zhipu",
"label": "Zhipu main",
"baseUrl": "",
"apiKey": "your-api-key-in-plaintext",
"protocol": "",
"customQuery": "",
"accessKeyId": "",
"secretAccessKey": "",
"organizationId": "",
"projectId": ""
}
]
}
Import merges a pasted snapshot into local storage:
id → overwritten by the backup; new id → appended;id / kind / apiKey are skipped and counted in the result toast.Typical use: device migration, reinstalling the app, or replicating a setup across your own
devices. The storage schema carries a schemaVersion so future format changes migrate cleanly.
⚠️ The export is plaintext and contains every API key. Never paste it into untrusted channels (chat groups, issue trackers, screenshots). The in-app warning says the same.
The UI ships in 8 languages: 中文, English, Deutsch, Français, 日本語, 한국어, Русский.
Adding a language (contributor guide):
utils/locale/xx.uts exporting xxTable — copy en.uts as the base and translate.utils/i18n.uts: add a LANG_XX constant, import the table, and add a branch in
detectSystemLang() (system-language prefix), tableFor() and resolveLocale().pages/settings/settings.uvue: append the language name (written in that language)
to LANG_VALUES / langLabels.Keys missing from a new table automatically fall back to English, so partial translations are safe to land.
uni-app x (Vue 3 syntax + UTS, compiled to native on all three platforms).
codingplanquota/
├── docs/ # API spec / user agreement / competitive research
├── pages/
│ ├── index/index.uvue # dashboard: provider cards + progress bars + countdowns
│ ├── provider/edit.uvue # add/edit provider credentials
│ ├── settings/settings.uvue # settings: polling / backup / data / about
│ └── agreement/agreement.uvue # user agreement (EN + ZH embedded)
├── services/
│ ├── registry.uts # provider registry + vault storage + query dispatch + migration
│ ├── lastquota.uts # last-query cache
│ ├── settings.uts # query behavior settings
│ └── quota/ # one file per provider (matches the spec doc)
├── utils/
│ ├── i18n.uts # centralized string tables (EN/ZH) + locale resolution
│ ├── locale/ # de / fr / ja / ko / ru tables
│ ├── crypto.uts # HMAC-SHA256 / SHA-256 (conditional compilation)
│ ├── vault.uts # secure-storage wrapper (availability probe + fallback)
│ ├── http.uts / format.uts / types.uts
├── uni_modules/pq-vault/ # UTS plugin: AndroidKeyStore encrypted storage
│ └── utssdk/app-android/ # Android implemented; iOS / Harmony pending
├── icons/ # app icons (asterisk motif reworked from cc-switch)
├── main.uts / App.uvue / pages.json / manifest.json
└── CHANGELOG.md / LICENSE
Some UTS APIs behave slightly differently per platform; the parsers are written defensively (upstream changes produce errors, never crashes). The semantic reference for all parsing is docs/provider-api-spec.md.
These provider endpoints are undocumented and may change upstream. Track:
src-tauri/src/services/coding_plan.rs (requests & parsing)src/config/codingPlanProviders.ts (provider routing table)When upstream changes: update docs/provider-api-spec.md first, then the matching module
in services/quota/.
BSD-3-Clause © 2026 MelotCOM Team — commercial use allowed; keep the copyright notice, license text, and do not use the project name for endorsement when redistributing.