mirror of
https://github.com/HKUDS/CLI-Anything.git
synced 2026-07-03 13:02:27 +08:00
* feat: add CC Switch CLI harness Add CLI harness for CC Switch — a desktop app that manages AI coding tool configurations (Claude Code, Codex, Gemini CLI, OpenCode, OpenClaw, Hermes). Reads from the live SQLite database with 7 command groups: providers, proxy, mcp, skills, usage, settings, sessions. 50 tests (30 unit + 20 E2E) all passing. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix(ccswitch): harden secret masking and live config writes * fix(ccswitch): align gemini env writes and json sessions * fix(ccswitch): cover openclaw listings and nullable usage stats * fix: restore rekordbox harness gitignore exception * fix(ccswitch): preserve codex config during provider switch * Fix CC Switch review blockers --------- Co-authored-by: cjc-agent <agent@cjc-company.com> Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com> Co-authored-by: yuhao <itsyuhao@icloud.com>
6 lines
135 B
Python
6 lines
135 B
Python
"""Allow python -m cli_anything.ccswitch"""
|
|
from cli_anything.ccswitch.ccswitch_cli import main
|
|
|
|
if __name__ == "__main__":
|
|
main()
|