mirror of
https://github.com/tiennm99/ccs.git
synced 2026-07-16 14:16:43 +00:00
* feat(cliproxy): add runtime quota monitoring during active sessions Adds adaptive background quota polling to detect and respond to quota exhaustion during active CLIProxy sessions. Prevents rate-limit-driven account bans by auto-cooling exhausted accounts and switching defaults. - Adaptive polling: 300s normal, 60s at 20% threshold, stops at 0% - Stderr warnings at 20%, boxed exhaustion alerts at 0% - Cooldown + default switch on exhaustion (existing patterns) - Configurable via quota_management.runtime_monitor in config.yaml - Timer.unref() prevents blocking process exit - monitorStopped guard for in-flight poll safety Closes #524 * fix: address code review feedback (attempt 1/5) - M1: Round quotaPercent display with Math.round() to avoid ugly floats - M2: Rename exhaust_threshold -> exhaustion_threshold for consistency with existing auto.exhaustion_threshold config field - M3: Replace async not.toThrow() with direct await assertion pattern * fix: address code review feedback (attempt 2/5) - Remove .claude/agent-memory/ from tracking and add to .gitignore - Unify cooldown_minutes default to 5 (was 10 in runtime_monitor, 5 in auto) - Add threshold validation in startQuotaMonitor (warn > exhaustion) - Document intentional post-switch monitoring gap in code comment
45 lines
553 B
Plaintext
45 lines
553 B
Plaintext
# User config files
|
|
# Note: config files now live in ~/.ccs/, not in project directory
|
|
repomix-output.xml
|
|
.ccs.json
|
|
|
|
# macOS
|
|
.DS_Store
|
|
|
|
# Editor
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Plans directory
|
|
plans/
|
|
*.tgz
|
|
|
|
# Node.js
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# TypeScript build output
|
|
dist/
|
|
*.tsbuildinfo
|
|
|
|
# Package lock files (use bun.lock only)
|
|
yarn.lock
|
|
pnpm-lock.yaml
|
|
package-lock.json
|
|
|
|
.claude/active-plan
|
|
.claude/agent-memory/
|
|
|
|
# Logs directory
|
|
logs/
|
|
|
|
# CI-generated files
|
|
.dev-release-info.json
|
|
|
|
# Test coverage
|
|
ui/coverage/ |