You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
FishXCode CLI(命令行工具名:fishx / fishxcode)是一个帮助开发者一键将 AI 编码工具接入 FishXCode API 代理服务的命令行工具。通过统一的适配器机制,用户无需手动修改各工具配置文件,即可完成 claude-code、aider、codex、continue.dev、opencode、openclaw 等主流 AI 编码工具的 API 来源切换。
graph TD
A["(根) fishxcode/cli"] --> B["src/"]
B --> C["src/commands/"]
B --> D["src/lib/"]
B --> E["src/tools/"]
A --> F["test/"]
A --> G[".github/workflows/"]
click C "./src/commands/CLAUDE.md" "查看 commands 模块文档"
click D "./src/lib/CLAUDE.md" "查看 lib 模块文档"
click E "./src/tools/CLAUDE.md" "查看 tools 模块文档"
click F "./test/CLAUDE.md" "查看 test 模块文档"
# 安装依赖
bun install
# 本地开发运行(无需构建)
bun run dev # 等价于 bun run src/index.ts# 类型检查
bun run typecheck
# 单元测试
bun test# 构建生产包
bun run build # 输出到 dist/index.js# 发布前全量检查(typecheck + test + build)
bun run check
# 全局安装后使用
fishx login
fishx setup
fishx doctor
fishx tools
fishx balance
fishx reset
fishx logout
fishx whoami