{"id":50912427,"url":"https://github.com/zuoxinyu/quotify","last_synced_at":"2026-06-16T11:02:21.201Z","repository":{"id":361107625,"uuid":"1250508679","full_name":"zuoxinyu/quotify","owner":"zuoxinyu","description":"Native codexbar alternative for Windows","archived":false,"fork":false,"pushed_at":"2026-06-05T12:07:36.000Z","size":1319,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-05T14:07:25.188Z","etag":null,"topics":["ai-tools","claude-code","codex","codexbar","opencode","windows"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/zuoxinyu.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":null,"cla":null}},"created_at":"2026-05-26T17:47:37.000Z","updated_at":"2026-06-05T12:07:40.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/zuoxinyu/quotify","commit_stats":null,"previous_names":["zuoxinyu/quotify"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/zuoxinyu/quotify","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zuoxinyu%2Fquotify","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zuoxinyu%2Fquotify/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zuoxinyu%2Fquotify/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zuoxinyu%2Fquotify/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zuoxinyu","download_url":"https://codeload.github.com/zuoxinyu/quotify/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zuoxinyu%2Fquotify/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34402663,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-16T02:00:06.860Z","response_time":126,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ai-tools","claude-code","codex","codexbar","opencode","windows"],"created_at":"2026-06-16T11:02:20.464Z","updated_at":"2026-06-16T11:02:21.189Z","avatar_url":"https://github.com/zuoxinyu.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Quotify\n\nQuotify is a small Windows tray app for checking AI provider quota usage.\n\nIt shows a compact flyout with provider status, reset times, and a tray icon that can reflect a primary provider. The app is Windows-only and uses Win32 APIs with an `egui` popup UI.\n\nQuotify is inspired by [CodexBar](https://github.com/steipete/CodexBar), especially its practical approach to surfacing provider usage in a lightweight desktop utility.\n\n## Screenshots\n![light mode](assets/screenshots/light.png)\n![dark mode](assets/screenshots/dark.png)\n\n## Providers\n\nSupported providers:\n\n- Codex/OpenAI\n- OpenCode Zen/Go\n- Claude\n- Gemini/Antigravity\n- Github Copilot\n- DeepSeek\n- Moonshot/Kimi\n- z.ai\n- Xiaomi MiMo\n- Alibaba Token Plan\n- MiniMax\n- StepFun\n- Windsurf\n- Cursor\n- Amp\n- Augment\n- Kiro\n- Kilo Code\n- Ollama\n- OpenRouter\n- Azure OpenAI\n- AWS Bedrock\n- Vertex AI\n- Mistral\n- Grok\n\nAuthentication is intentionally explicit. The app does not scrape browser cookies at runtime; configure credentials through `quotify.toml` or environment variables.\n\n## Usage\n\nCreate a default config:\n\n```powershell\ncargo run -- init\n```\n\nFetch provider usage once:\n\n```powershell\ncargo run -- fetch\ncargo run -- fetch --provider claude\n```\n\nRun the tray app:\n\n```powershell\ncargo run -- tray\n```\n\nBuild an optimized release binary:\n\n```powershell\ncargo build --release\n```\n\n## Configuration\n\nThe default config path is:\n\n```text\n%APPDATA%\\quotify\\quotify.toml\n```\n\nSee `config.example.toml` for available fields. Common environment variables include \n - `OPENCODE_AUTH_COOKIE`\n - `OPENCODE_WORKSPACE_ID`\n - `CLAUDE_ACCESS_TOKEN`\n - `CLAUDE_SESSION_KEY`\n - `GEMINI_API_KEY`\n - `GOOGLE_API_KEY`\n - `OPENAI_ADMIN_KEY`\n - `OPENAI_API_KEY`\n - `DEEPSEEK_API_KEY`\n - `OPENROUTER_API_KEY`\n - `MOONSHOT_API_KEY`\n - `ELEVENLABS_API_KEY`\n - `ARK_API_KEY`\n - `Z_AI_API_KEY`\n - `VENICE_API_KEY`\n - `CROF_API_KEY`\n - `SYNTHETIC_API_KEY`\n - `WARP_API_KEY`\n - `GROQ_API_KEY`\n - `DEEPGRAM_API_KEY`\n - `LLM_PROXY_API_KEY`\n - `CODEBUFF_API_KEY`\n - `KIRO_API_KEY`\n - `GITHUB_COPILOT_TOKEN`\n - `AZURE_OPENAI_API_KEY`\n - `OLLAMA_API_KEY`\n - `MINIMAX_API_KEY`\n - `KIMI_AUTH_TOKEN`\n - `KILO_API_KEY`\n - `AUGMENT_SESSION_TOKEN`\n - `CODEXBAR_BEDROCK_BUDGET`\n - `GOOGLE_CLOUD_PROJECT`\n - `STEPFUN_TOKEN`\n - `ABACUS_COOKIE`\n - `ALIBABA_TOKEN_PLAN_COOKIE`\n - `T3_CHAT_COOKIE`\n - `AMP_COOKIE`\n - `MISTRAL_API_KEY`\n - `XAI_API_KEY`\n - `CURSOR_COOKIE`\n - `FACTORY_API_KEY`\n - `WINDSURF_SERVICE_KEY`\n - `MIMO_SERVICE_TOKEN`\n - `MIMO_COOKIE_HEADER`.\n\n### Cookie helper scripts\n\nSome providers require an explicit browser cookie header in `quotify.toml`. The\nPowerShell helper can open a separate Chrome profile with remote debugging,\nwait for you to log in, fetch cookies for the selected provider, and sync the\ncookie header into the matching config field.\n\nRun the interactive flow:\n\n```powershell\n.\\scripts\\get_cdp_cookies.ps1\n```\n\nThis prompts for a provider, opens the provider page, waits for you to press\nEnter after login, then writes the cookie to `%APPDATA%\\quotify\\quotify.toml`.\nFor MiMo, the script opens `https://platform.xiaomimimo.com/console/balance`.\n\nYou can also run it directly for a provider:\n\n```powershell\n.\\scripts\\get_cdp_cookies.ps1 -Provider mimo -OpenChrome -Sync\n.\\scripts\\get_cdp_cookies.ps1 -Provider opencode -OpenChrome -Sync\n```\n\nIf Chrome is already running with remote debugging enabled, fetch and sync from\nthe existing browser session:\n\n```powershell\n.\\scripts\\get_cdp_cookies.ps1 -Domain platform.xiaomimimo.com -Sync\n```\n\nSupported cookie-sync providers are `mimo`, `opencode`, `opencodego`,\n`abacus`, `alibabatoken`, `t3chat`, `amp`, and `cursor`.\n\nProvider card order is controlled by `[general].provider_order`. In the tray popup\n long-press and drag a provider card to reorder it; the new order is saved back to the config.\n\nFor explicit network proxying, set `[network].proxy` to an HTTP or SOCKS5 URL, for example `http://127.0.0.1:7890` or `socks5://127.0.0.1:7890`.\n\n## License\n\nMIT. See `LICENSE`.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzuoxinyu%2Fquotify","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzuoxinyu%2Fquotify","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzuoxinyu%2Fquotify/lists"}