@cloudbase/cli 2.11.6 → 2.11.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.augment-guidelines +119 -0
- package/.claude/settings.local.json +6 -0
- package/.clinerules/cloudbase-rules.mdc +119 -0
- package/.cursor/rules/cloudbase-rules.mdc +119 -0
- package/.editorconfig +10 -0
- package/.eslintignore +8 -0
- package/.eslintrc +35 -0
- package/.mcp.json +11 -0
- package/.prettierignore +1 -0
- package/.prettierrc.js +29 -0
- package/.vscode/launch.json +26 -0
- package/.yarnrc.yml +1 -0
- package/CLAUDE.md +119 -0
- package/LICENSE +6 -0
- package/bin/ccr.js +3 -0
- package/bin/cloudbase.js +7 -0
- package/bin/tcb.js +339 -0
- package/changelog.md +6 -0
- package/cloudbaserc.json +13 -0
- package/jest.config.js +17 -0
- package/lib/auth/index.js +18 -0
- package/lib/auth/login.js +111 -0
- package/lib/auth/logout.js +20 -0
- package/lib/commands/account/index.js +18 -0
- package/lib/commands/account/login.js +269 -0
- package/lib/commands/account/logout.js +56 -0
- package/lib/commands/ai/index.js +200 -0
- package/lib/commands/cloudfunction/base.js +369 -0
- package/lib/commands/cloudfunction/index.js +17 -0
- package/lib/commands/cloudrun/base.js +1040 -0
- package/lib/commands/cloudrun/cloudrun-run-ui/index.html +193 -0
- package/lib/commands/cloudrun/index.js +17 -0
- package/lib/commands/common.js +225 -0
- package/lib/commands/config/delete.js +72 -0
- package/lib/commands/config/get.js +69 -0
- package/lib/commands/config/index.js +21 -0
- package/lib/commands/config/interface.js +25 -0
- package/lib/commands/config/list.js +72 -0
- package/lib/commands/config/set.js +89 -0
- package/lib/commands/constants.js +11 -0
- package/lib/commands/db/base.js +399 -0
- package/lib/commands/db/index.js +17 -0
- package/lib/commands/env/base.js +129 -0
- package/lib/commands/env/domain.js +222 -0
- package/lib/commands/env/index.js +19 -0
- package/lib/commands/env/login.js +271 -0
- package/lib/commands/framework/index.js +196 -0
- package/lib/commands/fun/base.js +434 -0
- package/lib/commands/fun/index.js +17 -0
- package/lib/commands/functions/alias/getRoute.js +99 -0
- package/lib/commands/functions/alias/index.js +18 -0
- package/lib/commands/functions/alias/setRoute.js +101 -0
- package/lib/commands/functions/code-download.js +123 -0
- package/lib/commands/functions/code-update.js +96 -0
- package/lib/commands/functions/concurrency/delete.js +71 -0
- package/lib/commands/functions/concurrency/index.js +19 -0
- package/lib/commands/functions/concurrency/list.js +82 -0
- package/lib/commands/functions/concurrency/set.js +73 -0
- package/lib/commands/functions/config-update.js +103 -0
- package/lib/commands/functions/copy.js +82 -0
- package/lib/commands/functions/delete.js +102 -0
- package/lib/commands/functions/deploy.js +331 -0
- package/lib/commands/functions/detail.js +166 -0
- package/lib/commands/functions/index.js +33 -0
- package/lib/commands/functions/invoke.js +140 -0
- package/lib/commands/functions/layer/bind.js +191 -0
- package/lib/commands/functions/layer/common.js +13 -0
- package/lib/commands/functions/layer/create.js +88 -0
- package/lib/commands/functions/layer/delete.js +92 -0
- package/lib/commands/functions/layer/download.js +112 -0
- package/lib/commands/functions/layer/index.js +23 -0
- package/lib/commands/functions/layer/list.js +105 -0
- package/lib/commands/functions/layer/sort.js +98 -0
- package/lib/commands/functions/list.js +92 -0
- package/lib/commands/functions/log.js +156 -0
- package/lib/commands/functions/run.js +245 -0
- package/lib/commands/functions/trigger-create.js +99 -0
- package/lib/commands/functions/trigger-delete.js +121 -0
- package/lib/commands/functions/version/index.js +18 -0
- package/lib/commands/functions/version/list.js +97 -0
- package/lib/commands/functions/version/publish.js +71 -0
- package/lib/commands/gateway/create.js +125 -0
- package/lib/commands/gateway/delete.js +111 -0
- package/lib/commands/gateway/domain.js +202 -0
- package/lib/commands/gateway/index.js +21 -0
- package/lib/commands/gateway/list.js +107 -0
- package/lib/commands/gateway/switch.js +144 -0
- package/lib/commands/helpers/index.js +19 -0
- package/lib/commands/helpers/init.js +395 -0
- package/lib/commands/helpers/new.js +130 -0
- package/lib/commands/helpers/open.js +90 -0
- package/lib/commands/hosting/hosting.js +378 -0
- package/lib/commands/hosting/index.js +17 -0
- package/lib/commands/index.js +38 -0
- package/lib/commands/lowcode/app.js +400 -0
- package/lib/commands/lowcode/comps.js +384 -0
- package/lib/commands/lowcode/deps.js +85 -0
- package/lib/commands/lowcode/index.js +19 -0
- package/lib/commands/lowcode/utils.js +308 -0
- package/lib/commands/pull/index.js +17 -0
- package/lib/commands/pull/pull.js +107 -0
- package/lib/commands/run/delete.js +102 -0
- package/lib/commands/run/image/common.js +13 -0
- package/lib/commands/run/image/delete.js +91 -0
- package/lib/commands/run/image/download.js +86 -0
- package/lib/commands/run/image/index.js +21 -0
- package/lib/commands/run/image/list.js +104 -0
- package/lib/commands/run/image/upload.js +114 -0
- package/lib/commands/run/index.js +21 -0
- package/lib/commands/run/list.js +104 -0
- package/lib/commands/run/service/config.js +113 -0
- package/lib/commands/run/service/deploy.js +155 -0
- package/lib/commands/run/service/index.js +20 -0
- package/lib/commands/run/service/list.js +116 -0
- package/lib/commands/run/service/update.js +141 -0
- package/lib/commands/run/standalonegateway/common.js +13 -0
- package/lib/commands/run/standalonegateway/create.js +106 -0
- package/lib/commands/run/standalonegateway/destroy.js +82 -0
- package/lib/commands/run/standalonegateway/index.js +21 -0
- package/lib/commands/run/standalonegateway/list.js +78 -0
- package/lib/commands/run/standalonegateway/package.js +87 -0
- package/lib/commands/run/standalonegateway/turn.js +87 -0
- package/lib/commands/run/version/common.js +13 -0
- package/lib/commands/run/version/create.js +329 -0
- package/lib/commands/run/version/delete.js +90 -0
- package/lib/commands/run/version/index.js +21 -0
- package/lib/commands/run/version/list.js +109 -0
- package/lib/commands/run/version/modify.js +142 -0
- package/lib/commands/run/version/update.js +353 -0
- package/lib/commands/runf/base.js +453 -0
- package/lib/commands/runf/index.js +17 -0
- package/lib/commands/self-update.js +134 -0
- package/lib/commands/smart.js +124 -0
- package/lib/commands/storage/index.js +17 -0
- package/lib/commands/storage/storage.js +515 -0
- package/lib/commands/third/index.js +17 -0
- package/lib/commands/third/thirdAttach.js +78 -0
- package/lib/commands/utils.js +197 -0
- package/lib/completion/index.js +15 -0
- package/lib/constant.js +142 -0
- package/lib/db/index.js +85 -0
- package/lib/decorators/captureError.js +30 -0
- package/lib/decorators/constants.js +15 -0
- package/lib/decorators/deprecate.js +18 -0
- package/lib/decorators/guard.js +35 -0
- package/lib/decorators/index.js +25 -0
- package/lib/decorators/injectParams.js +58 -0
- package/lib/decorators/params/common.js +16 -0
- package/lib/decorators/params/index.js +34 -0
- package/lib/env/domain.js +42 -0
- package/lib/env/index.js +80 -0
- package/lib/env/login.js +78 -0
- package/lib/error.js +17 -0
- package/lib/function/alias.js +54 -0
- package/lib/function/base.js +266 -0
- package/lib/function/code.js +28 -0
- package/lib/function/concurrency.js +70 -0
- package/lib/function/create.js +72 -0
- package/lib/function/delete.js +53 -0
- package/lib/function/index.js +27 -0
- package/lib/function/layer/attach.js +63 -0
- package/lib/function/layer/create.js +63 -0
- package/lib/function/layer/delete.js +24 -0
- package/lib/function/layer/download.js +37 -0
- package/lib/function/layer/index.js +23 -0
- package/lib/function/layer/list.js +36 -0
- package/lib/function/layer/sort.js +25 -0
- package/lib/function/trigger.js +106 -0
- package/lib/function/update.js +41 -0
- package/lib/function/version.js +52 -0
- package/lib/function/vpc.js +35 -0
- package/lib/gateway/index.js +136 -0
- package/lib/help.js +44 -0
- package/lib/hosting.js +244 -0
- package/lib/i18n/index.js +73 -0
- package/lib/index.js +13 -0
- package/lib/logger.js +19 -0
- package/lib/run/delete.js +22 -0
- package/lib/run/image/build.js +37 -0
- package/lib/run/image/delete.js +22 -0
- package/lib/run/image/index.js +20 -0
- package/lib/run/image/info.js +29 -0
- package/lib/run/image/list.js +30 -0
- package/lib/run/index.js +23 -0
- package/lib/run/list.js +39 -0
- package/lib/run/repo.js +31 -0
- package/lib/run/service/common.js +271 -0
- package/lib/run/service/config.js +70 -0
- package/lib/run/service/deployPackage.js +83 -0
- package/lib/run/service/index.js +22 -0
- package/lib/run/service/list.js +31 -0
- package/lib/run/service/showLogs.js +117 -0
- package/lib/run/service/update.js +84 -0
- package/lib/run/standalonegateway/create.js +32 -0
- package/lib/run/standalonegateway/destroy.js +28 -0
- package/lib/run/standalonegateway/index.js +21 -0
- package/lib/run/standalonegateway/list.js +48 -0
- package/lib/run/standalonegateway/package/index.js +17 -0
- package/lib/run/standalonegateway/package/list.js +32 -0
- package/lib/run/standalonegateway/turn/index.js +18 -0
- package/lib/run/standalonegateway/turn/off.js +28 -0
- package/lib/run/standalonegateway/turn/on.js +28 -0
- package/lib/run/version/create.js +50 -0
- package/lib/run/version/delete.js +23 -0
- package/lib/run/version/index.js +22 -0
- package/lib/run/version/list.js +24 -0
- package/lib/run/version/modify.js +24 -0
- package/lib/run/version/repo.js +33 -0
- package/lib/run/version/update.js +39 -0
- package/lib/storage.js +125 -0
- package/lib/third/index.js +25 -0
- package/lib/types.js +12 -0
- package/lib/utils/ai/banner.js +106 -0
- package/lib/utils/ai/claudeWindows.js +64 -0
- package/lib/utils/ai/config.js +290 -0
- package/lib/utils/ai/const.js +178 -0
- package/lib/utils/ai/ensureFiles.js +27 -0
- package/lib/utils/ai/env.js +37 -0
- package/lib/utils/ai/envLocalManager.js +145 -0
- package/lib/utils/ai/nodeVersion.js +19 -0
- package/lib/utils/ai/router.js +1315 -0
- package/lib/utils/ai/setup.js +705 -0
- package/lib/utils/auth.js +28 -0
- package/lib/utils/checkTcbrEnv.js +76 -0
- package/lib/utils/cli-table.js +19 -0
- package/lib/utils/commonParamsCheck.js +49 -0
- package/lib/utils/config.js +59 -0
- package/lib/utils/debug-logger.js +31 -0
- package/lib/utils/dts.js +154 -0
- package/lib/utils/env.js +222 -0
- package/lib/utils/fs/del.js +11 -0
- package/lib/utils/fs/index.js +94 -0
- package/lib/utils/function-packer.js +87 -0
- package/lib/utils/index.js +38 -0
- package/lib/utils/log.js +85 -0
- package/lib/utils/mcp-config-modifier.js +205 -0
- package/lib/utils/net/cloud-api-request.js +64 -0
- package/lib/utils/net/credential.js +61 -0
- package/lib/utils/net/http-request.js +108 -0
- package/lib/utils/net/index.js +21 -0
- package/lib/utils/net/manager-service.js +51 -0
- package/lib/utils/net/proxy.js +9 -0
- package/lib/utils/notice.js +37 -0
- package/lib/utils/output/highlight.js +11 -0
- package/lib/utils/output/index.js +19 -0
- package/lib/utils/output/link.js +16 -0
- package/lib/utils/output/loading.js +68 -0
- package/lib/utils/parallel.js +65 -0
- package/lib/utils/platform/index.js +19 -0
- package/lib/utils/platform/mac.js +37 -0
- package/lib/utils/platform/os.js +59 -0
- package/lib/utils/platform/port.js +26 -0
- package/lib/utils/progress-bar.js +44 -0
- package/lib/utils/prompt/index.js +17 -0
- package/lib/utils/prompt/select.js +54 -0
- package/lib/utils/report.js +78 -0
- package/lib/utils/reporter/agree.js +31 -0
- package/lib/utils/reporter/download.js +37 -0
- package/lib/utils/reporter/index.js +19 -0
- package/lib/utils/reporter/usage.js +32 -0
- package/lib/utils/store/auth.js +59 -0
- package/lib/utils/store/common.js +8 -0
- package/lib/utils/store/config.js +49 -0
- package/lib/utils/store/db.js +84 -0
- package/lib/utils/store/index.js +21 -0
- package/lib/utils/store/usage.js +9 -0
- package/lib/utils/tcbrApi/callTcbrApi.js +39 -0
- package/lib/utils/tcbrApi/index.js +17 -0
- package/lib/utils/template-manager.js +458 -0
- package/lib/utils/template.js +131 -0
- package/lib/utils/tools/common.js +74 -0
- package/lib/utils/tools/encoding.js +13 -0
- package/lib/utils/tools/index.js +20 -0
- package/lib/utils/tools/object.js +28 -0
- package/lib/utils/tools/time.js +49 -0
- package/lib/utils/tools/uid.js +25 -0
- package/lib/utils/url.js +19 -0
- package/lib/utils/validator.js +72 -0
- package/locales/README.md +160 -0
- package/locales/i18next-scanner.config.js +211 -0
- package/locales/index.js +5 -0
- package/locales/langs/en.json +1236 -0
- package/locales/langs/zh.json +1236 -0
- package/locales/mapping.json +1242 -0
- package/package.json +133 -16
- package/patches/@musistudio+claude-code-router+1.0.36.patch +40 -0
- package/post-install.js +63 -0
- package/rules/cloudbase-platform.mdc +44 -0
- package/rules/database.mdc +25 -0
- package/rules/miniprogram-development.mdc +61 -0
- package/rules/ui-design.mdc +24 -0
- package/rules/web-development.mdc +44 -0
- package/rules/workflows.mdc +30 -0
- package/runtime/nodejs/bootstrap.js +255 -0
- package/runtime/nodejs/runtime.js +183 -0
- package/specs/ai-cli-bootstrap/QWEN.md +196 -0
- package/specs/ai-cli-bootstrap/design.md +185 -0
- package/specs/ai-cli-bootstrap/requirements.md +51 -0
- package/specs/ai-cli-bootstrap/tasks.md +70 -0
- package/specs/ai-cli-bootstrap/technical-docs.md +421 -0
- package/specs/cli-install-upgrade/design.md +207 -0
- package/specs/cli-install-upgrade/requirements.md +315 -0
- package/specs/cli-install-upgrade/tasks.md +120 -0
- package/specs/codebuddy-integration/design.md +152 -0
- package/specs/codebuddy-integration/requirements.md +85 -0
- package/specs/codebuddy-integration/tasks.md +159 -0
- package/specs/mcp-global-bin/design.md +57 -0
- package/specs/mcp-global-bin/requirements.md +43 -0
- package/specs/mcp-global-bin/tasks.md +54 -0
- package/specs/ssl-fix/design.md +93 -0
- package/specs/ssl-fix/requirements.md +47 -0
- package/specs/ssl-fix/tasks.md +65 -0
- package/specs/tcb-pull-cnb-support/design.md +137 -0
- package/specs/tcb-pull-cnb-support/requirements.md +56 -0
- package/specs/tcb-pull-cnb-support/tasks.md +101 -0
- package/specs/tcb-pull-mcp-integration/design.md +153 -0
- package/specs/tcb-pull-mcp-integration/implementation-summary.md +127 -0
- package/specs/tcb-pull-mcp-integration/requirements.md +68 -0
- package/specs/tcb-pull-mcp-integration/tasks.md +125 -0
- package/specs/template-pull-command/design.md +135 -0
- package/specs/template-pull-command/implementation-summary.md +160 -0
- package/specs/template-pull-command/requirements.md +73 -0
- package/specs/template-pull-command/tasks.md +101 -0
- package/templates/html/loginFail.html +90 -0
- package/templates/html/loginSuccess.html +86 -0
- package/templates/server/node/_gitignore +54 -0
- package/templates/server/node/cloudbaserc.json +10 -0
- package/templates/server/node/index.js +6 -0
- package/templates/server/node/package.json +9 -0
- package/test-mcp-integration.js +68 -0
- package/tsconfig.json +20 -0
- package/tsconfig.test.json +13 -0
- package/types/auth/index.d.ts +2 -0
- package/types/auth/login.d.ts +25 -0
- package/types/auth/logout.d.ts +1 -0
- package/types/commands/account/index.d.ts +2 -0
- package/types/commands/account/login.d.ts +15 -0
- package/types/commands/account/logout.d.ts +12 -0
- package/types/commands/ai/index.d.ts +23 -0
- package/types/commands/cloudfunction/base.d.ts +43 -0
- package/types/commands/cloudfunction/index.d.ts +1 -0
- package/types/commands/cloudrun/base.d.ts +160 -0
- package/types/commands/cloudrun/index.d.ts +1 -0
- package/types/commands/common.d.ts +38 -0
- package/types/commands/config/delete.d.ts +13 -0
- package/types/commands/config/get.d.ts +13 -0
- package/types/commands/config/index.d.ts +5 -0
- package/types/commands/config/interface.d.ts +17 -0
- package/types/commands/config/list.d.ts +13 -0
- package/types/commands/config/set.d.ts +13 -0
- package/types/commands/constants.d.ts +8 -0
- package/types/commands/db/base.d.ts +44 -0
- package/types/commands/db/index.d.ts +1 -0
- package/types/commands/env/base.d.ts +27 -0
- package/types/commands/env/domain.d.ts +53 -0
- package/types/commands/env/index.d.ts +3 -0
- package/types/commands/env/login.d.ts +47 -0
- package/types/commands/framework/index.d.ts +42 -0
- package/types/commands/fun/base.d.ts +43 -0
- package/types/commands/fun/index.d.ts +1 -0
- package/types/commands/functions/alias/getRoute.d.ts +13 -0
- package/types/commands/functions/alias/index.d.ts +2 -0
- package/types/commands/functions/alias/setRoute.d.ts +13 -0
- package/types/commands/functions/code-download.d.ts +18 -0
- package/types/commands/functions/code-update.d.ts +18 -0
- package/types/commands/functions/concurrency/delete.d.ts +13 -0
- package/types/commands/functions/concurrency/index.d.ts +3 -0
- package/types/commands/functions/concurrency/list.d.ts +13 -0
- package/types/commands/functions/concurrency/set.d.ts +13 -0
- package/types/commands/functions/config-update.d.ts +19 -0
- package/types/commands/functions/copy.d.ts +15 -0
- package/types/commands/functions/delete.d.ts +14 -0
- package/types/commands/functions/deploy.d.ts +22 -0
- package/types/commands/functions/detail.d.ts +16 -0
- package/types/commands/functions/index.d.ts +17 -0
- package/types/commands/functions/invoke.d.ts +15 -0
- package/types/commands/functions/layer/bind.d.ts +35 -0
- package/types/commands/functions/layer/common.d.ts +8 -0
- package/types/commands/functions/layer/create.d.ts +18 -0
- package/types/commands/functions/layer/delete.d.ts +18 -0
- package/types/commands/functions/layer/download.d.ts +18 -0
- package/types/commands/functions/layer/index.d.ts +7 -0
- package/types/commands/functions/layer/list.d.ts +19 -0
- package/types/commands/functions/layer/sort.d.ts +18 -0
- package/types/commands/functions/list.d.ts +14 -0
- package/types/commands/functions/log.d.ts +15 -0
- package/types/commands/functions/run.d.ts +17 -0
- package/types/commands/functions/trigger-create.d.ts +18 -0
- package/types/commands/functions/trigger-delete.d.ts +18 -0
- package/types/commands/functions/version/index.d.ts +2 -0
- package/types/commands/functions/version/list.d.ts +13 -0
- package/types/commands/functions/version/publish.d.ts +13 -0
- package/types/commands/gateway/create.d.ts +14 -0
- package/types/commands/gateway/delete.d.ts +14 -0
- package/types/commands/gateway/domain.d.ts +47 -0
- package/types/commands/gateway/index.d.ts +5 -0
- package/types/commands/gateway/list.d.ts +15 -0
- package/types/commands/gateway/switch.d.ts +31 -0
- package/types/commands/helpers/index.d.ts +3 -0
- package/types/commands/helpers/init.d.ts +22 -0
- package/types/commands/helpers/new.d.ts +17 -0
- package/types/commands/helpers/open.d.ts +11 -0
- package/types/commands/hosting/hosting.d.ts +66 -0
- package/types/commands/hosting/index.d.ts +1 -0
- package/types/commands/index.d.ts +22 -0
- package/types/commands/lowcode/app.d.ts +81 -0
- package/types/commands/lowcode/comps.d.ts +77 -0
- package/types/commands/lowcode/deps.d.ts +15 -0
- package/types/commands/lowcode/index.d.ts +3 -0
- package/types/commands/lowcode/utils.d.ts +23 -0
- package/types/commands/pull/index.d.ts +1 -0
- package/types/commands/pull/pull.d.ts +16 -0
- package/types/commands/run/delete.d.ts +13 -0
- package/types/commands/run/image/common.d.ts +8 -0
- package/types/commands/run/image/delete.d.ts +17 -0
- package/types/commands/run/image/download.d.ts +17 -0
- package/types/commands/run/image/index.d.ts +5 -0
- package/types/commands/run/image/list.d.ts +17 -0
- package/types/commands/run/image/upload.d.ts +17 -0
- package/types/commands/run/index.d.ts +5 -0
- package/types/commands/run/list.d.ts +13 -0
- package/types/commands/run/service/config.d.ts +14 -0
- package/types/commands/run/service/deploy.d.ts +13 -0
- package/types/commands/run/service/index.d.ts +4 -0
- package/types/commands/run/service/list.d.ts +13 -0
- package/types/commands/run/service/update.d.ts +13 -0
- package/types/commands/run/standalonegateway/common.d.ts +8 -0
- package/types/commands/run/standalonegateway/create.d.ts +17 -0
- package/types/commands/run/standalonegateway/destroy.d.ts +17 -0
- package/types/commands/run/standalonegateway/index.d.ts +5 -0
- package/types/commands/run/standalonegateway/list.d.ts +17 -0
- package/types/commands/run/standalonegateway/package.d.ts +17 -0
- package/types/commands/run/standalonegateway/turn.d.ts +17 -0
- package/types/commands/run/version/common.d.ts +8 -0
- package/types/commands/run/version/create.d.ts +17 -0
- package/types/commands/run/version/delete.d.ts +17 -0
- package/types/commands/run/version/index.d.ts +5 -0
- package/types/commands/run/version/list.d.ts +17 -0
- package/types/commands/run/version/modify.d.ts +17 -0
- package/types/commands/run/version/update.d.ts +17 -0
- package/types/commands/runf/base.d.ts +43 -0
- package/types/commands/runf/index.d.ts +1 -0
- package/types/commands/self-update.d.ts +24 -0
- package/types/commands/smart.d.ts +1 -0
- package/types/commands/storage/index.d.ts +1 -0
- package/types/commands/storage/storage.d.ts +106 -0
- package/types/commands/third/index.d.ts +1 -0
- package/types/commands/third/thirdAttach.d.ts +15 -0
- package/types/commands/utils.d.ts +28 -0
- package/types/completion/index.d.ts +4 -0
- package/types/constant.d.ts +71 -0
- package/types/db/index.d.ts +24 -0
- package/types/decorators/captureError.d.ts +1 -0
- package/types/decorators/constants.d.ts +11 -0
- package/types/decorators/deprecate.d.ts +4 -0
- package/types/decorators/guard.d.ts +5 -0
- package/types/decorators/index.d.ts +7 -0
- package/types/decorators/injectParams.d.ts +1 -0
- package/types/decorators/params/common.d.ts +4 -0
- package/types/decorators/params/index.d.ts +8 -0
- package/types/env/domain.d.ts +11 -0
- package/types/env/index.d.ts +12 -0
- package/types/env/login.d.ts +16 -0
- package/types/error.d.ts +20 -0
- package/types/function/alias.d.ts +3 -0
- package/types/function/base.d.ts +32 -0
- package/types/function/code.d.ts +8 -0
- package/types/function/concurrency.d.ts +4 -0
- package/types/function/create.d.ts +3 -0
- package/types/function/delete.d.ts +8 -0
- package/types/function/index.d.ts +11 -0
- package/types/function/layer/attach.d.ts +9 -0
- package/types/function/layer/create.d.ts +8 -0
- package/types/function/layer/delete.d.ts +5 -0
- package/types/function/layer/download.d.ts +7 -0
- package/types/function/layer/index.d.ts +7 -0
- package/types/function/layer/list.d.ts +10 -0
- package/types/function/layer/sort.d.ts +10 -0
- package/types/function/trigger.d.ts +5 -0
- package/types/function/update.d.ts +2 -0
- package/types/function/version.d.ts +3 -0
- package/types/function/vpc.d.ts +2 -0
- package/types/gateway/index.d.ts +18 -0
- package/types/help.d.ts +1 -0
- package/types/hosting.d.ts +35 -0
- package/types/i18n/index.d.ts +3 -0
- package/types/index.d.ts +4 -0
- package/types/logger.d.ts +3 -0
- package/types/run/delete.d.ts +2 -0
- package/types/run/image/build.d.ts +10 -0
- package/types/run/image/delete.d.ts +2 -0
- package/types/run/image/index.d.ts +4 -0
- package/types/run/image/info.d.ts +1 -0
- package/types/run/image/list.d.ts +3 -0
- package/types/run/index.d.ts +7 -0
- package/types/run/list.d.ts +2 -0
- package/types/run/repo.d.ts +5 -0
- package/types/run/service/common.d.ts +42 -0
- package/types/run/service/config.d.ts +23 -0
- package/types/run/service/deployPackage.d.ts +11 -0
- package/types/run/service/index.d.ts +6 -0
- package/types/run/service/list.d.ts +2 -0
- package/types/run/service/showLogs.d.ts +2 -0
- package/types/run/service/update.d.ts +3 -0
- package/types/run/standalonegateway/create.d.ts +2 -0
- package/types/run/standalonegateway/destroy.d.ts +2 -0
- package/types/run/standalonegateway/index.d.ts +5 -0
- package/types/run/standalonegateway/list.d.ts +2 -0
- package/types/run/standalonegateway/package/index.d.ts +1 -0
- package/types/run/standalonegateway/package/list.d.ts +2 -0
- package/types/run/standalonegateway/turn/index.d.ts +2 -0
- package/types/run/standalonegateway/turn/off.d.ts +2 -0
- package/types/run/standalonegateway/turn/on.d.ts +2 -0
- package/types/run/version/create.d.ts +10 -0
- package/types/run/version/delete.d.ts +2 -0
- package/types/run/version/index.d.ts +6 -0
- package/types/run/version/list.d.ts +2 -0
- package/types/run/version/modify.d.ts +2 -0
- package/types/run/version/repo.d.ts +10 -0
- package/types/run/version/update.d.ts +6 -0
- package/types/storage.d.ts +34 -0
- package/types/third/index.d.ts +1 -0
- package/types/types.d.ts +590 -0
- package/types/utils/ai/banner.d.ts +2 -0
- package/types/utils/ai/claudeWindows.d.ts +2 -0
- package/types/utils/ai/config.d.ts +89 -0
- package/types/utils/ai/const.d.ts +401 -0
- package/types/utils/ai/ensureFiles.d.ts +1 -0
- package/types/utils/ai/env.d.ts +2 -0
- package/types/utils/ai/envLocalManager.d.ts +23 -0
- package/types/utils/ai/nodeVersion.d.ts +2 -0
- package/types/utils/ai/router.d.ts +59 -0
- package/types/utils/ai/setup.d.ts +26 -0
- package/types/utils/auth.d.ts +3 -0
- package/types/utils/checkTcbrEnv.d.ts +3 -0
- package/types/utils/cli-table.d.ts +2 -0
- package/types/utils/commonParamsCheck.d.ts +3 -0
- package/types/utils/config.d.ts +27 -0
- package/types/utils/debug-logger.d.ts +1 -0
- package/types/utils/dts.d.ts +6 -0
- package/types/utils/env.d.ts +5 -0
- package/types/utils/fs/del.d.ts +1 -0
- package/types/utils/fs/index.d.ts +7 -0
- package/types/utils/function-packer.d.ts +18 -0
- package/types/utils/index.d.ts +22 -0
- package/types/utils/log.d.ts +22 -0
- package/types/utils/mcp-config-modifier.d.ts +7 -0
- package/types/utils/net/cloud-api-request.d.ts +9 -0
- package/types/utils/net/credential.d.ts +5 -0
- package/types/utils/net/http-request.d.ts +8 -0
- package/types/utils/net/index.d.ts +5 -0
- package/types/utils/net/manager-service.d.ts +4 -0
- package/types/utils/net/proxy.d.ts +1 -0
- package/types/utils/notice.d.ts +1 -0
- package/types/utils/output/highlight.d.ts +1 -0
- package/types/utils/output/index.d.ts +3 -0
- package/types/utils/output/link.d.ts +1 -0
- package/types/utils/output/loading.d.ts +18 -0
- package/types/utils/parallel.d.ts +11 -0
- package/types/utils/platform/index.d.ts +3 -0
- package/types/utils/platform/mac.d.ts +2 -0
- package/types/utils/platform/os.d.ts +2 -0
- package/types/utils/platform/port.d.ts +1 -0
- package/types/utils/progress-bar.d.ts +1 -0
- package/types/utils/prompt/index.d.ts +1 -0
- package/types/utils/prompt/select.d.ts +4 -0
- package/types/utils/report.d.ts +16 -0
- package/types/utils/reporter/agree.d.ts +1 -0
- package/types/utils/reporter/download.d.ts +1 -0
- package/types/utils/reporter/index.d.ts +3 -0
- package/types/utils/reporter/usage.d.ts +1 -0
- package/types/utils/store/auth.d.ts +8 -0
- package/types/utils/store/common.d.ts +2 -0
- package/types/utils/store/config.d.ts +8 -0
- package/types/utils/store/db.d.ts +17 -0
- package/types/utils/store/index.d.ts +5 -0
- package/types/utils/store/usage.d.ts +2 -0
- package/types/utils/tcbrApi/callTcbrApi.d.ts +1 -0
- package/types/utils/tcbrApi/index.d.ts +1 -0
- package/types/utils/template-manager.d.ts +27 -0
- package/types/utils/template.d.ts +8 -0
- package/types/utils/tools/common.d.ts +1 -0
- package/types/utils/tools/encoding.d.ts +1 -0
- package/types/utils/tools/index.d.ts +4 -0
- package/types/utils/tools/object.d.ts +1 -0
- package/types/utils/tools/time.d.ts +2 -0
- package/types/utils/tools/uid.d.ts +2 -0
- package/types/utils/url.d.ts +18 -0
- package/types/utils/validator.d.ts +9 -0
- package/bin/ccr +0 -2
- package/bin/cloudbase +0 -2
- package/bin/cloudbase-mcp +0 -2
- package/bin/tcb +0 -2
- package/dist/fonts/Slant.flf +0 -1295
- package/dist/standalone/ccr.js +0 -78668
- package/dist/standalone/cli.js +0 -627922
|
@@ -0,0 +1,1315 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
25
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
26
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
27
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
28
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
29
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
30
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
31
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
32
|
+
});
|
|
33
|
+
};
|
|
34
|
+
var __asyncValues = (this && this.__asyncValues) || function (o) {
|
|
35
|
+
if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined.");
|
|
36
|
+
var m = o[Symbol.asyncIterator], i;
|
|
37
|
+
return m ? m.call(o) : (o = typeof __values === "function" ? __values(o) : o[Symbol.iterator](), i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i);
|
|
38
|
+
function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }
|
|
39
|
+
function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }
|
|
40
|
+
};
|
|
41
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
42
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
43
|
+
};
|
|
44
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
45
|
+
exports.AICommandRouter = void 0;
|
|
46
|
+
const child_process_1 = require("child_process");
|
|
47
|
+
const config_1 = require("./config");
|
|
48
|
+
const error_1 = require("../../error");
|
|
49
|
+
const inquirer_1 = __importDefault(require("inquirer"));
|
|
50
|
+
const chalk_1 = __importDefault(require("chalk"));
|
|
51
|
+
const output_1 = require("../output");
|
|
52
|
+
const i18n_1 = require("../../i18n");
|
|
53
|
+
const const_1 = require("./const");
|
|
54
|
+
const utils_1 = require("../../commands/utils");
|
|
55
|
+
const auth_1 = require("../../auth");
|
|
56
|
+
const nodeVersion_1 = require("./nodeVersion");
|
|
57
|
+
const claudeWindows_1 = require("./claudeWindows");
|
|
58
|
+
const env_1 = require("./env");
|
|
59
|
+
const url_1 = require("../url");
|
|
60
|
+
const cloudbase_mcp_1 = require("@cloudbase/cloudbase-mcp");
|
|
61
|
+
const IDE_FILE_MAPPINGS = cloudbase_mcp_1.RAW_IDE_FILE_MAPPINGS;
|
|
62
|
+
const MCP_CONFIG_SET = new Set(Object.values(IDE_FILE_MAPPINGS).reduce((acc, descriptors) => {
|
|
63
|
+
for (const d of descriptors) {
|
|
64
|
+
if (d.isMcpConfig)
|
|
65
|
+
acc.push(d.path);
|
|
66
|
+
}
|
|
67
|
+
return acc;
|
|
68
|
+
}, []));
|
|
69
|
+
function inferConfigFormat(filePath) {
|
|
70
|
+
return filePath.toLowerCase().endsWith('.toml') ? 'toml' : 'json';
|
|
71
|
+
}
|
|
72
|
+
class AICommandRouter {
|
|
73
|
+
constructor() {
|
|
74
|
+
this.configManager = new config_1.AIConfigManager();
|
|
75
|
+
}
|
|
76
|
+
execute({ agent, addtionalArgs, log, template, useDefaultConfig }) {
|
|
77
|
+
var _a;
|
|
78
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
79
|
+
if ((0, config_1.isValidAgent)(agent) !== true) {
|
|
80
|
+
log.error((0, i18n_1.t)('无效的 agent: {{agent}}', { agent }));
|
|
81
|
+
return;
|
|
82
|
+
}
|
|
83
|
+
const config = yield this.configManager.loadConfig();
|
|
84
|
+
if (!config) {
|
|
85
|
+
log.warn((0, i18n_1.t)("未检测到 AI CLI 配置,请运行 'tcb ai --setup' 进行配置"));
|
|
86
|
+
return;
|
|
87
|
+
}
|
|
88
|
+
const agentUpperCased = agent.toUpperCase();
|
|
89
|
+
const agentConfig = (_a = config.agents) === null || _a === void 0 ? void 0 : _a[agent];
|
|
90
|
+
if (!agentConfig) {
|
|
91
|
+
log.warn((0, i18n_1.t)('未找到 {{agent}} 配置,请运行 tcb ai --setup 进行配置', { agent: agentUpperCased }));
|
|
92
|
+
return;
|
|
93
|
+
}
|
|
94
|
+
log.info((0, i18n_1.t)('启动 {{agent}} AI CLI 工具', { agent: chalk_1.default.bold(agentUpperCased) }));
|
|
95
|
+
try {
|
|
96
|
+
yield this.checkToolkitConfig({ agent, log, template, useDefaultConfig });
|
|
97
|
+
}
|
|
98
|
+
catch (e) {
|
|
99
|
+
log.warn((0, i18n_1.t)('云开发功能检查失败,但 AI 工具仍可正常使用'));
|
|
100
|
+
}
|
|
101
|
+
const isValid = yield this.validateAgentConfig(agent, agentConfig, log);
|
|
102
|
+
if (!isValid) {
|
|
103
|
+
log.warn((0, i18n_1.t)('{{agent}} 配置无效,请重新配置', { agent: agent.toUpperCase() }));
|
|
104
|
+
return;
|
|
105
|
+
}
|
|
106
|
+
this.executeAgentWithConfig(agent, agentConfig, this.parseArgs(addtionalArgs), log);
|
|
107
|
+
});
|
|
108
|
+
}
|
|
109
|
+
checkToolkitConfig(checkOptions) {
|
|
110
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
111
|
+
const { agent, log, template, useDefaultConfig } = checkOptions;
|
|
112
|
+
const { missingFiles } = yield this.configManager.checkToolkitConfig(agent);
|
|
113
|
+
if (missingFiles.length > 0) {
|
|
114
|
+
const skipTemplate = yield this.checkSkipTemplateConfig();
|
|
115
|
+
if (skipTemplate) {
|
|
116
|
+
log.info((0, i18n_1.t)('已跳过模板下载,无法使用云开发 MCP 及 AI 规则。如需使用,请参考 tcb pull --help'));
|
|
117
|
+
return;
|
|
118
|
+
}
|
|
119
|
+
log.log('');
|
|
120
|
+
yield this.downloadTemplate({ log, template, agent, useDefaultConfig });
|
|
121
|
+
log.log('');
|
|
122
|
+
}
|
|
123
|
+
});
|
|
124
|
+
}
|
|
125
|
+
checkSkipTemplateConfig() {
|
|
126
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
127
|
+
try {
|
|
128
|
+
const fs = yield Promise.resolve().then(() => __importStar(require('fs-extra')));
|
|
129
|
+
const path = yield Promise.resolve().then(() => __importStar(require('path')));
|
|
130
|
+
const skipFile = path.join(process.cwd(), '.skip-template');
|
|
131
|
+
return yield fs.pathExists(skipFile);
|
|
132
|
+
}
|
|
133
|
+
catch (_a) {
|
|
134
|
+
return false;
|
|
135
|
+
}
|
|
136
|
+
});
|
|
137
|
+
}
|
|
138
|
+
saveSkipTemplateConfig() {
|
|
139
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
140
|
+
try {
|
|
141
|
+
const fs = yield Promise.resolve().then(() => __importStar(require('fs-extra')));
|
|
142
|
+
const path = yield Promise.resolve().then(() => __importStar(require('path')));
|
|
143
|
+
const skipFile = path.join(process.cwd(), '.skip-template');
|
|
144
|
+
yield fs.writeFile(skipFile, new Date().toISOString());
|
|
145
|
+
}
|
|
146
|
+
catch (error) {
|
|
147
|
+
}
|
|
148
|
+
});
|
|
149
|
+
}
|
|
150
|
+
downloadTemplate(options) {
|
|
151
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
152
|
+
const { log, template, agent, useDefaultConfig } = options;
|
|
153
|
+
try {
|
|
154
|
+
let templateType;
|
|
155
|
+
if (template) {
|
|
156
|
+
templateType = template;
|
|
157
|
+
}
|
|
158
|
+
else {
|
|
159
|
+
if (useDefaultConfig) {
|
|
160
|
+
templateType = 'rules';
|
|
161
|
+
}
|
|
162
|
+
else {
|
|
163
|
+
const { templateType: selectedType } = yield inquirer_1.default.prompt([
|
|
164
|
+
{
|
|
165
|
+
type: 'list',
|
|
166
|
+
name: 'templateType',
|
|
167
|
+
message: (0, i18n_1.t)('下载模板以获取完整的开发体验: {{hint}}', { hint: const_1.LIST_HINT }),
|
|
168
|
+
choices: [
|
|
169
|
+
{ name: (0, i18n_1.t)('微信小程序 + CloudBase'), value: 'miniprogram' },
|
|
170
|
+
{ name: (0, i18n_1.t)('Web 应用 - React + CloudBase'), value: 'react' },
|
|
171
|
+
{ name: (0, i18n_1.t)('Web 应用 - Vue + CloudBase'), value: 'vue' },
|
|
172
|
+
{ name: (0, i18n_1.t)('跨端应用 - UniApp + CloudBase'), value: 'uniapp' },
|
|
173
|
+
{ name: (0, i18n_1.t)('只下载 AI 规则和配置'), value: 'rules' },
|
|
174
|
+
{ name: (0, i18n_1.t)('不下载模板'), value: 'none' }
|
|
175
|
+
],
|
|
176
|
+
default: 'miniprogram'
|
|
177
|
+
}
|
|
178
|
+
]);
|
|
179
|
+
templateType = selectedType;
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
if (templateType === 'none') {
|
|
183
|
+
log.info((0, i18n_1.t)('跳过模板下载'));
|
|
184
|
+
yield this.saveSkipTemplateConfig();
|
|
185
|
+
return;
|
|
186
|
+
}
|
|
187
|
+
log.info((0, i18n_1.t)('正在下载并解压 {{templateType}} 模板...', { templateType }));
|
|
188
|
+
yield this.downloadAndExtractTemplate({ templateType, log, agent: agent, useDefaultConfig: useDefaultConfig || false });
|
|
189
|
+
log.info((0, i18n_1.t)('{{templateType}} 模板配置完成', { templateType }));
|
|
190
|
+
}
|
|
191
|
+
catch (error) {
|
|
192
|
+
log.error((0, i18n_1.t)('配置失败: {{error}}', { error: error.message }));
|
|
193
|
+
throw new error_1.CloudBaseError((0, i18n_1.t)('模板下载失败'), { original: error });
|
|
194
|
+
}
|
|
195
|
+
});
|
|
196
|
+
}
|
|
197
|
+
downloadAndExtractTemplate(options) {
|
|
198
|
+
var _a, e_1, _b, _c;
|
|
199
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
200
|
+
const fs = yield Promise.resolve().then(() => __importStar(require('fs-extra')));
|
|
201
|
+
const path = yield Promise.resolve().then(() => __importStar(require('path')));
|
|
202
|
+
const os = yield Promise.resolve().then(() => __importStar(require('os')));
|
|
203
|
+
const unzipper = yield Promise.resolve().then(() => __importStar(require('unzipper')));
|
|
204
|
+
const https = yield Promise.resolve().then(() => __importStar(require('https')));
|
|
205
|
+
let ConfigParser;
|
|
206
|
+
const { templateType, log, agent, useDefaultConfig } = options;
|
|
207
|
+
try {
|
|
208
|
+
ConfigParser = (yield Promise.resolve().then(() => __importStar(require('@cloudbase/toolbox')))).ConfigParser;
|
|
209
|
+
}
|
|
210
|
+
catch (_d) {
|
|
211
|
+
ConfigParser = undefined;
|
|
212
|
+
}
|
|
213
|
+
const templateMap = {
|
|
214
|
+
rules: {
|
|
215
|
+
url: 'https://static.cloudbase.net/cloudbase-examples/web-cloudbase-project.zip'
|
|
216
|
+
},
|
|
217
|
+
react: {
|
|
218
|
+
url: 'https://static.cloudbase.net/cloudbase-examples/web-cloudbase-react-template.zip'
|
|
219
|
+
},
|
|
220
|
+
vue: {
|
|
221
|
+
url: 'https://static.cloudbase.net/cloudbase-examples/web-cloudbase-vue-template.zip'
|
|
222
|
+
},
|
|
223
|
+
miniprogram: {
|
|
224
|
+
url: 'https://static.cloudbase.net/cloudbase-examples/miniprogram-cloudbase-miniprogram-template.zip'
|
|
225
|
+
},
|
|
226
|
+
uniapp: {
|
|
227
|
+
url: 'https://static.cloudbase.net/cloudbase-examples/universal-cloudbase-uniapp-template.zip'
|
|
228
|
+
}
|
|
229
|
+
};
|
|
230
|
+
const template = templateMap[templateType];
|
|
231
|
+
if (!template)
|
|
232
|
+
throw new error_1.CloudBaseError((0, i18n_1.t)('未知模板类型'));
|
|
233
|
+
const tmpDir = os.tmpdir();
|
|
234
|
+
const zipPath = path.join(tmpDir, `cloudbase-template-${templateType}-${Date.now()}.zip`);
|
|
235
|
+
yield new Promise((resolve, reject) => {
|
|
236
|
+
const file = fs.createWriteStream(zipPath);
|
|
237
|
+
https
|
|
238
|
+
.get(template.url, (response) => {
|
|
239
|
+
if (response.statusCode !== 200) {
|
|
240
|
+
reject(new Error((0, i18n_1.t)('下载失败: {{statusCode}}', { statusCode: response.statusCode })));
|
|
241
|
+
return;
|
|
242
|
+
}
|
|
243
|
+
response.pipe(file);
|
|
244
|
+
file.on('finish', () => {
|
|
245
|
+
file.close();
|
|
246
|
+
resolve();
|
|
247
|
+
});
|
|
248
|
+
})
|
|
249
|
+
.on('error', (err) => {
|
|
250
|
+
fs.unlink(zipPath);
|
|
251
|
+
reject(err);
|
|
252
|
+
});
|
|
253
|
+
});
|
|
254
|
+
const extractDir = process.cwd();
|
|
255
|
+
const zipStream = fs.createReadStream(zipPath).pipe(unzipper.Parse({ forceStream: true }));
|
|
256
|
+
const agentDirs = Array.from(new Set(Object.values(IDE_FILE_MAPPINGS)
|
|
257
|
+
.reduce((acc, descriptors) => {
|
|
258
|
+
for (const d of descriptors) {
|
|
259
|
+
const filePath = d.path;
|
|
260
|
+
const pathParts = filePath.split('/');
|
|
261
|
+
if (pathParts.length > 1) {
|
|
262
|
+
const firstPart = pathParts[0];
|
|
263
|
+
if (firstPart.startsWith('.')) {
|
|
264
|
+
acc.push(firstPart);
|
|
265
|
+
}
|
|
266
|
+
}
|
|
267
|
+
}
|
|
268
|
+
return acc;
|
|
269
|
+
}, [])));
|
|
270
|
+
const pathMatches = (entryPath, configPath) => {
|
|
271
|
+
if (entryPath === configPath)
|
|
272
|
+
return true;
|
|
273
|
+
if (configPath.endsWith('/') && entryPath.startsWith(configPath))
|
|
274
|
+
return true;
|
|
275
|
+
if (entryPath.endsWith('/') && configPath.startsWith(entryPath))
|
|
276
|
+
return true;
|
|
277
|
+
return false;
|
|
278
|
+
};
|
|
279
|
+
try {
|
|
280
|
+
for (var _e = true, _f = __asyncValues(zipStream), _g; _g = yield _f.next(), _a = _g.done, !_a;) {
|
|
281
|
+
_c = _g.value;
|
|
282
|
+
_e = false;
|
|
283
|
+
try {
|
|
284
|
+
const entry = _c;
|
|
285
|
+
const entryPath = entry.path;
|
|
286
|
+
const destPath = path.join(extractDir, entryPath);
|
|
287
|
+
if (useDefaultConfig && agent) {
|
|
288
|
+
const currentAgentPaths = IDE_FILE_MAPPINGS[agent] || [];
|
|
289
|
+
const currentAgentPathSet = new Set(currentAgentPaths.map(d => d.path));
|
|
290
|
+
let belongsToOtherAgent = false;
|
|
291
|
+
for (const [otherAgent, paths] of Object.entries(IDE_FILE_MAPPINGS)) {
|
|
292
|
+
if (otherAgent === agent)
|
|
293
|
+
continue;
|
|
294
|
+
for (const descriptor of paths) {
|
|
295
|
+
if (pathMatches(entryPath, descriptor.path)) {
|
|
296
|
+
belongsToOtherAgent = true;
|
|
297
|
+
break;
|
|
298
|
+
}
|
|
299
|
+
}
|
|
300
|
+
if (belongsToOtherAgent)
|
|
301
|
+
break;
|
|
302
|
+
}
|
|
303
|
+
if (belongsToOtherAgent) {
|
|
304
|
+
const belongsToCurrentAgent = currentAgentPathSet.has(entryPath) ||
|
|
305
|
+
currentAgentPaths.some(d => pathMatches(entryPath, d.path));
|
|
306
|
+
if (!belongsToCurrentAgent) {
|
|
307
|
+
log.debug && log.debug((0, i18n_1.t)('跳过不匹配的 agent 文件/目录: {{entryPath}} (当前 agent: {{agent}})', { entryPath, agent }));
|
|
308
|
+
entry.autodrain();
|
|
309
|
+
continue;
|
|
310
|
+
}
|
|
311
|
+
}
|
|
312
|
+
}
|
|
313
|
+
if (entry.type === 'Directory') {
|
|
314
|
+
yield fs.ensureDir(destPath);
|
|
315
|
+
entry.autodrain();
|
|
316
|
+
continue;
|
|
317
|
+
}
|
|
318
|
+
if (MCP_CONFIG_SET.has(entryPath)) {
|
|
319
|
+
try {
|
|
320
|
+
yield this.mergeMcpConfig(entry, destPath, inferConfigFormat(entryPath), log);
|
|
321
|
+
}
|
|
322
|
+
catch (e) {
|
|
323
|
+
log.warn((0, i18n_1.t)('MCP 配置合并失败 {{entryPath}}:{{error}},已跳过', { entryPath, error: e.message }));
|
|
324
|
+
}
|
|
325
|
+
continue;
|
|
326
|
+
}
|
|
327
|
+
if (entryPath === 'cloudbaserc.json' && (yield fs.pathExists(destPath))) {
|
|
328
|
+
try {
|
|
329
|
+
const templateContent = yield entry.buffer();
|
|
330
|
+
const templateJson = JSON.parse(templateContent.toString('utf8'));
|
|
331
|
+
const localJson = yield fs.readJson(destPath);
|
|
332
|
+
const deepMerge = (target, source) => {
|
|
333
|
+
if (typeof target !== 'object' ||
|
|
334
|
+
typeof source !== 'object' ||
|
|
335
|
+
!target ||
|
|
336
|
+
!source)
|
|
337
|
+
return target;
|
|
338
|
+
const result = Object.assign(Object.assign({}, source), target);
|
|
339
|
+
for (const key of Object.keys(source)) {
|
|
340
|
+
if (key in target &&
|
|
341
|
+
typeof target[key] === 'object' &&
|
|
342
|
+
typeof source[key] === 'object') {
|
|
343
|
+
result[key] = deepMerge(target[key], source[key]);
|
|
344
|
+
}
|
|
345
|
+
}
|
|
346
|
+
return result;
|
|
347
|
+
};
|
|
348
|
+
let merged = deepMerge(localJson, templateJson);
|
|
349
|
+
yield fs.writeJson(destPath, merged, { spaces: 2 });
|
|
350
|
+
}
|
|
351
|
+
catch (e) {
|
|
352
|
+
log.warn((0, i18n_1.t)('cloudbaserc.json 合并失败,已跳过: {{error}}', { error: e.message }));
|
|
353
|
+
}
|
|
354
|
+
continue;
|
|
355
|
+
}
|
|
356
|
+
if (yield fs.pathExists(destPath)) {
|
|
357
|
+
if (useDefaultConfig) {
|
|
358
|
+
entry.autodrain();
|
|
359
|
+
continue;
|
|
360
|
+
}
|
|
361
|
+
const { confirmOverwriteFile } = yield inquirer_1.default.prompt([
|
|
362
|
+
{
|
|
363
|
+
type: 'confirm',
|
|
364
|
+
name: 'confirmOverwriteFile',
|
|
365
|
+
message: (0, i18n_1.t)('检测到已存在文件 {{entryPath}},是否覆盖? {{hint}}', {
|
|
366
|
+
entryPath,
|
|
367
|
+
hint: (0, const_1.getBooleanHint)(false)
|
|
368
|
+
}),
|
|
369
|
+
default: false
|
|
370
|
+
}
|
|
371
|
+
]);
|
|
372
|
+
if (!confirmOverwriteFile) {
|
|
373
|
+
entry.autodrain();
|
|
374
|
+
continue;
|
|
375
|
+
}
|
|
376
|
+
}
|
|
377
|
+
yield fs.ensureDir(path.dirname(destPath));
|
|
378
|
+
yield new Promise((res, rej) => {
|
|
379
|
+
entry.pipe(fs.createWriteStream(destPath)).on('finish', res).on('error', rej);
|
|
380
|
+
});
|
|
381
|
+
}
|
|
382
|
+
finally {
|
|
383
|
+
_e = true;
|
|
384
|
+
}
|
|
385
|
+
}
|
|
386
|
+
}
|
|
387
|
+
catch (e_1_1) { e_1 = { error: e_1_1 }; }
|
|
388
|
+
finally {
|
|
389
|
+
try {
|
|
390
|
+
if (!_e && !_a && (_b = _f.return)) yield _b.call(_f);
|
|
391
|
+
}
|
|
392
|
+
finally { if (e_1) throw e_1.error; }
|
|
393
|
+
}
|
|
394
|
+
yield fs.unlink(zipPath);
|
|
395
|
+
yield this.modifyMCPConfigs(extractDir, log);
|
|
396
|
+
});
|
|
397
|
+
}
|
|
398
|
+
getInstallCommand(agent) {
|
|
399
|
+
switch (agent) {
|
|
400
|
+
case 'claude':
|
|
401
|
+
return {
|
|
402
|
+
success: true,
|
|
403
|
+
command: 'npm',
|
|
404
|
+
args: ['install', '-g', '@anthropic-ai/claude-code'],
|
|
405
|
+
message: 'macOS/Linux/WSL: curl -fsSL claude.ai/install.sh | bash\nWindows PowerShell: irm https://claude.ai/install.ps1 | iex'
|
|
406
|
+
};
|
|
407
|
+
case 'qwen':
|
|
408
|
+
return {
|
|
409
|
+
success: true,
|
|
410
|
+
command: 'npm',
|
|
411
|
+
args: ['install', '-g', '@qwen-code/qwen-code'],
|
|
412
|
+
message: 'npm install -g @qwen-code/qwen-code'
|
|
413
|
+
};
|
|
414
|
+
case 'codex':
|
|
415
|
+
return {
|
|
416
|
+
success: true,
|
|
417
|
+
command: 'npm',
|
|
418
|
+
args: ['install', '-g', '@openai/codex-cli'],
|
|
419
|
+
message: 'npm install -g @openai/codex-cli'
|
|
420
|
+
};
|
|
421
|
+
case 'gemini':
|
|
422
|
+
return {
|
|
423
|
+
success: true,
|
|
424
|
+
command: 'npm',
|
|
425
|
+
args: ['install', '-g', '@google/gemini-cli'],
|
|
426
|
+
message: 'npm install -g @google/gemini-cli'
|
|
427
|
+
};
|
|
428
|
+
case 'codebuddy':
|
|
429
|
+
return {
|
|
430
|
+
success: true,
|
|
431
|
+
command: 'npm',
|
|
432
|
+
args: ['install', '-g', '@tencent-ai/codebuddy-code'],
|
|
433
|
+
message: 'npm install -g @tencent-ai/codebuddy-code'
|
|
434
|
+
};
|
|
435
|
+
default:
|
|
436
|
+
return { success: false, message: (0, i18n_1.t)('# 请查阅 {{agent}} 的官方安装文档', { agent }) };
|
|
437
|
+
}
|
|
438
|
+
}
|
|
439
|
+
executeCommand(command, args, env, log) {
|
|
440
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
441
|
+
return new Promise((resolve, reject) => {
|
|
442
|
+
const useShell = process.platform === 'win32';
|
|
443
|
+
const child = (0, child_process_1.spawn)(command, args, {
|
|
444
|
+
stdio: 'inherit',
|
|
445
|
+
env,
|
|
446
|
+
shell: useShell
|
|
447
|
+
});
|
|
448
|
+
child.on('close', (code) => {
|
|
449
|
+
if (code === 0) {
|
|
450
|
+
resolve();
|
|
451
|
+
}
|
|
452
|
+
else {
|
|
453
|
+
const errorMsg = (0, i18n_1.t)('命令执行失败: {{command}} {{args}} (退出码: {{code}})', {
|
|
454
|
+
command,
|
|
455
|
+
args: args.join(' '),
|
|
456
|
+
code
|
|
457
|
+
});
|
|
458
|
+
log.error((0, i18n_1.t)('{{errorMsg}}', { errorMsg }));
|
|
459
|
+
if (code === 127) {
|
|
460
|
+
log.info((0, i18n_1.t)('命令未找到,请检查是否正确安装'));
|
|
461
|
+
log.info((0, i18n_1.t)('安装命令: {{installCmd}}', { installCmd: this.getInstallCommand(command).message }));
|
|
462
|
+
}
|
|
463
|
+
else if (code === 1) {
|
|
464
|
+
log.info((0, i18n_1.t)('可能是参数错误或配置问题'));
|
|
465
|
+
log.info((0, i18n_1.t)('请检查 API 密钥、模型名称等配置是否正确'));
|
|
466
|
+
}
|
|
467
|
+
if (command === 'ccr') {
|
|
468
|
+
log.info((0, i18n_1.t)('请前往 {{logPath}} 查看日志', { logPath: const_1.CLAUDE_CODE_ROUTER_LOG_PATH }));
|
|
469
|
+
}
|
|
470
|
+
reject(new Error(errorMsg));
|
|
471
|
+
}
|
|
472
|
+
});
|
|
473
|
+
child.on('error', (err) => {
|
|
474
|
+
const errorMsg = (0, i18n_1.t)('启动失败: {{command}} ({{error}})', { command, error: err.message });
|
|
475
|
+
log.error((0, i18n_1.t)('{{errorMsg}}', { errorMsg }));
|
|
476
|
+
if (err.message.includes('ENOENT')) {
|
|
477
|
+
log.info((0, i18n_1.t)('命令不存在,请先安装对应的 AI CLI 工具'));
|
|
478
|
+
log.info((0, i18n_1.t)('安装命令: {{installCmd}}', { installCmd: this.getInstallCommand(command).message }));
|
|
479
|
+
}
|
|
480
|
+
else if (err.message.includes('EACCES')) {
|
|
481
|
+
log.info((0, i18n_1.t)('权限不足,请检查文件权限或使用管理员权限'));
|
|
482
|
+
}
|
|
483
|
+
reject(new Error(errorMsg));
|
|
484
|
+
});
|
|
485
|
+
});
|
|
486
|
+
});
|
|
487
|
+
}
|
|
488
|
+
isToolAvailable(command) {
|
|
489
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
490
|
+
return new Promise((resolve) => {
|
|
491
|
+
const child = (0, child_process_1.spawn)(command, ['--version'], {
|
|
492
|
+
stdio: 'pipe',
|
|
493
|
+
shell: true
|
|
494
|
+
});
|
|
495
|
+
child.on('close', (code) => {
|
|
496
|
+
resolve(code === 0);
|
|
497
|
+
});
|
|
498
|
+
child.on('error', () => {
|
|
499
|
+
resolve(false);
|
|
500
|
+
});
|
|
501
|
+
});
|
|
502
|
+
});
|
|
503
|
+
}
|
|
504
|
+
validateAgentConfig(agent, agentConfig, log) {
|
|
505
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
506
|
+
if (!agentConfig) {
|
|
507
|
+
log.error((0, i18n_1.t)('Agent 配置为空'));
|
|
508
|
+
return false;
|
|
509
|
+
}
|
|
510
|
+
const validateResult = (0, const_1.getAgentConfigValidator)(agent)(agentConfig);
|
|
511
|
+
if (validateResult.success === true) {
|
|
512
|
+
log.debug((0, i18n_1.t)('Agent 配置验证通过'));
|
|
513
|
+
return true;
|
|
514
|
+
}
|
|
515
|
+
else {
|
|
516
|
+
log.error((0, i18n_1.t)('{{agent}} 配置无效: {{error}}', { agent, error: validateResult.error }));
|
|
517
|
+
return false;
|
|
518
|
+
}
|
|
519
|
+
});
|
|
520
|
+
}
|
|
521
|
+
executeAgentWithConfig(agent, agentConfig, additionalArgs, log) {
|
|
522
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
523
|
+
switch (agent) {
|
|
524
|
+
case const_1.CLAUDE.value:
|
|
525
|
+
try {
|
|
526
|
+
if (agentConfig.type === 'cloudbase') {
|
|
527
|
+
return yield this.executeClaudeCloudbaseAgent(agentConfig, additionalArgs, log);
|
|
528
|
+
}
|
|
529
|
+
else if (agentConfig.type === 'custom') {
|
|
530
|
+
return yield this.executeClaudeAgent(agentConfig, additionalArgs, log);
|
|
531
|
+
}
|
|
532
|
+
else {
|
|
533
|
+
return yield this.executeNoneClaudeAgent(additionalArgs, log);
|
|
534
|
+
}
|
|
535
|
+
}
|
|
536
|
+
catch (_) {
|
|
537
|
+
(0, claudeWindows_1.claudeWindowsCheck)(log);
|
|
538
|
+
return process.exit(1);
|
|
539
|
+
}
|
|
540
|
+
case const_1.QWEN.value:
|
|
541
|
+
if (agentConfig.type === 'cloudbase') {
|
|
542
|
+
return yield this.executeQwenCloudbaseAgent(agentConfig, additionalArgs, log);
|
|
543
|
+
}
|
|
544
|
+
else if (agentConfig.type === 'custom') {
|
|
545
|
+
return yield this.executeQwenAgent(agentConfig, additionalArgs, log);
|
|
546
|
+
}
|
|
547
|
+
else {
|
|
548
|
+
return yield this.executeNoneQwenAgent(additionalArgs, log);
|
|
549
|
+
}
|
|
550
|
+
case const_1.CODEX.value:
|
|
551
|
+
if (agentConfig.type === 'cloudbase') {
|
|
552
|
+
return yield this.executeCodexCloudbaseAgent(agentConfig, additionalArgs, log);
|
|
553
|
+
}
|
|
554
|
+
else if (agentConfig.type === 'custom') {
|
|
555
|
+
return yield this.executeCodexAgent(agentConfig, additionalArgs, log);
|
|
556
|
+
}
|
|
557
|
+
else {
|
|
558
|
+
return yield this.executeNoneCodexAgent(additionalArgs, log);
|
|
559
|
+
}
|
|
560
|
+
case const_1.AIDER.value:
|
|
561
|
+
if (agentConfig.type === 'cloudbase') {
|
|
562
|
+
return yield this.executeAiderCloudbaseAgent(agentConfig, additionalArgs, log);
|
|
563
|
+
}
|
|
564
|
+
else {
|
|
565
|
+
return yield this.executeAiderAgent(agentConfig, additionalArgs, log);
|
|
566
|
+
}
|
|
567
|
+
case const_1.CURSOR.value:
|
|
568
|
+
return yield this.executeNoneCursorAgent(additionalArgs, log);
|
|
569
|
+
case const_1.CODEBUDDY.value:
|
|
570
|
+
if (agentConfig.type === 'custom') {
|
|
571
|
+
return yield this.executeCodebuddyAgent(agentConfig, additionalArgs, log);
|
|
572
|
+
}
|
|
573
|
+
else {
|
|
574
|
+
return yield this.executeNoneCodebuddyAgent(additionalArgs, log);
|
|
575
|
+
}
|
|
576
|
+
default:
|
|
577
|
+
throw new Error((0, i18n_1.t)('不支持的 AI 工具: {{agent}}', { agent }));
|
|
578
|
+
}
|
|
579
|
+
});
|
|
580
|
+
}
|
|
581
|
+
executeClaudeAgent({ apiKey, baseUrl, model }, additionalArgs, log) {
|
|
582
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
583
|
+
(0, nodeVersion_1.ensureNodeVersion)('v18.0.0', log);
|
|
584
|
+
yield this.ensureClaudeCode(log);
|
|
585
|
+
yield this.executeCommand('claude', additionalArgs, Object.assign(Object.assign({}, process.env), { ANTHROPIC_AUTH_TOKEN: apiKey, ANTHROPIC_BASE_URL: baseUrl, ANTHROPIC_MODEL: model }), log);
|
|
586
|
+
});
|
|
587
|
+
}
|
|
588
|
+
executeNoneClaudeAgent(additionalArgs, log) {
|
|
589
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
590
|
+
yield this.ensureClaudeCode(log);
|
|
591
|
+
yield this.executeCommand('claude', additionalArgs, Object.assign({}, process.env), log);
|
|
592
|
+
});
|
|
593
|
+
}
|
|
594
|
+
executeQwenAgent({ apiKey, baseUrl, model }, additionalArgs, log) {
|
|
595
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
596
|
+
(0, nodeVersion_1.ensureNodeVersion)('v20.0.0', log);
|
|
597
|
+
yield this.ensureQwenCode(log);
|
|
598
|
+
yield this.executeCommand('qwen', additionalArgs, Object.assign(Object.assign({}, process.env), { OPENAI_API_KEY: apiKey, OPENAI_BASE_URL: baseUrl, OPENAI_MODEL: model }), log);
|
|
599
|
+
});
|
|
600
|
+
}
|
|
601
|
+
executeNoneQwenAgent(additionalArgs, log) {
|
|
602
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
603
|
+
yield this.ensureQwenCode(log);
|
|
604
|
+
yield this.executeCommand('qwen', additionalArgs, Object.assign({}, process.env), log);
|
|
605
|
+
});
|
|
606
|
+
}
|
|
607
|
+
executeQwenCloudbaseAgent({ provider, model }, additionalArgs, log) {
|
|
608
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
609
|
+
(0, nodeVersion_1.ensureNodeVersion)('v20.0.0', log);
|
|
610
|
+
yield this.ensureQwenCode(log);
|
|
611
|
+
const _envId = yield (0, config_1.createConfigParser)().get('envId');
|
|
612
|
+
yield (0, auth_1.checkLogin)();
|
|
613
|
+
const credential = yield (0, utils_1.getCredential)({}, {});
|
|
614
|
+
const envId = yield (0, env_1.ensureValidEnv)(_envId, log);
|
|
615
|
+
const accessToken = yield (0, utils_1.rawFetchAccessToken)({
|
|
616
|
+
envId,
|
|
617
|
+
secretId: credential.secretId,
|
|
618
|
+
secretKey: credential.secretKey,
|
|
619
|
+
token: credential.token
|
|
620
|
+
});
|
|
621
|
+
if (!accessToken.access_token) {
|
|
622
|
+
log.error((0, i18n_1.t)('获取云开发 Access Token 失败,请运行 tcb login 后再重试,{{token}}', {
|
|
623
|
+
token: JSON.stringify(accessToken)
|
|
624
|
+
}));
|
|
625
|
+
process.exit(1);
|
|
626
|
+
}
|
|
627
|
+
const baseUrl = `${(0, url_1.getGatewayUrl)(envId)}/v1/ai/${provider}`;
|
|
628
|
+
const apiKey = accessToken.access_token;
|
|
629
|
+
yield this.executeCommand('qwen', additionalArgs, Object.assign(Object.assign({}, process.env), { OPENAI_API_KEY: apiKey, OPENAI_BASE_URL: baseUrl, OPENAI_MODEL: model }), log);
|
|
630
|
+
});
|
|
631
|
+
}
|
|
632
|
+
executeClaudeCloudbaseAgent({ provider, model, transformer }, additionalArgs, log) {
|
|
633
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
634
|
+
(0, nodeVersion_1.ensureNodeVersion)('v18.19.0', log);
|
|
635
|
+
yield this.ensureClaudeCodeRouter(log);
|
|
636
|
+
yield this.ensureClaudeCode(log);
|
|
637
|
+
yield this.configureClaudeCodeRouter(provider, model, transformer, log);
|
|
638
|
+
yield this.restartClaudeCodeRouter(log);
|
|
639
|
+
yield this.executeCommand('ccr', ['code', ...additionalArgs], Object.assign({}, process.env), log);
|
|
640
|
+
});
|
|
641
|
+
}
|
|
642
|
+
restartClaudeCodeRouter(log) {
|
|
643
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
644
|
+
try {
|
|
645
|
+
yield this.executeCommand('ccr', ['restart'], process.env, log);
|
|
646
|
+
}
|
|
647
|
+
catch (e) {
|
|
648
|
+
log.error((0, i18n_1.t)('执行 ccr restart 失败,尝试执行 ccr stop && ccr start'));
|
|
649
|
+
yield this.executeCommand('ccr', ['stop'], process.env, log);
|
|
650
|
+
this.executeCommand('ccr', ['start'], process.env, log);
|
|
651
|
+
const max = 3;
|
|
652
|
+
let current = 0;
|
|
653
|
+
while (current < max) {
|
|
654
|
+
current++;
|
|
655
|
+
if (current > max) {
|
|
656
|
+
throw new Error((0, i18n_1.t)('ccr 重启完成失败,可前往 {{logPath}} 查看日志', { logPath: const_1.CLAUDE_CODE_ROUTER_LOG_PATH }));
|
|
657
|
+
}
|
|
658
|
+
log.info((0, i18n_1.t)('{{current}}/{{max}}等待 ccr 重启完成...', { current, max }));
|
|
659
|
+
const isRunning = yield this.isClaudeCodeRouterRunning();
|
|
660
|
+
if (isRunning) {
|
|
661
|
+
log.info((0, i18n_1.t)('ccr 重启完成'));
|
|
662
|
+
break;
|
|
663
|
+
}
|
|
664
|
+
}
|
|
665
|
+
}
|
|
666
|
+
});
|
|
667
|
+
}
|
|
668
|
+
isClaudeCodeRouterRunning() {
|
|
669
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
670
|
+
return new Promise((resolve) => {
|
|
671
|
+
const child = (0, child_process_1.spawn)('ccr', ['status'], {
|
|
672
|
+
stdio: 'pipe',
|
|
673
|
+
env: process.env,
|
|
674
|
+
shell: process.platform === 'win32'
|
|
675
|
+
});
|
|
676
|
+
child.stdout.on('data', (data) => {
|
|
677
|
+
const str = data.toString();
|
|
678
|
+
if (str.includes('Status: Running')) {
|
|
679
|
+
resolve(true);
|
|
680
|
+
child.kill();
|
|
681
|
+
}
|
|
682
|
+
});
|
|
683
|
+
setTimeout(() => {
|
|
684
|
+
resolve(false);
|
|
685
|
+
child.kill();
|
|
686
|
+
}, 3000);
|
|
687
|
+
});
|
|
688
|
+
});
|
|
689
|
+
}
|
|
690
|
+
configureClaudeCodeRouter(provider, model, transformer, log) {
|
|
691
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
692
|
+
const fs = yield Promise.resolve().then(() => __importStar(require('fs-extra')));
|
|
693
|
+
const _envId = yield (0, config_1.createConfigParser)().get('envId');
|
|
694
|
+
yield (0, auth_1.checkLogin)();
|
|
695
|
+
const credential = yield (0, utils_1.getCredential)({}, {});
|
|
696
|
+
const envId = yield (0, env_1.ensureValidEnv)(_envId, log);
|
|
697
|
+
const accessToken = yield (0, utils_1.rawFetchAccessToken)({
|
|
698
|
+
envId,
|
|
699
|
+
secretId: credential.secretId,
|
|
700
|
+
secretKey: credential.secretKey,
|
|
701
|
+
token: credential.token
|
|
702
|
+
});
|
|
703
|
+
if (!accessToken.access_token) {
|
|
704
|
+
log.error((0, i18n_1.t)('获取云开发 Access Token 失败,请运行 tcb login 后再重试,{{token}}', {
|
|
705
|
+
token: JSON.stringify(accessToken)
|
|
706
|
+
}));
|
|
707
|
+
process.exit(1);
|
|
708
|
+
}
|
|
709
|
+
const cloudbaseProvider = {
|
|
710
|
+
name: 'cloudbase',
|
|
711
|
+
api_base_url: `${(0, url_1.getGatewayUrl)(envId)}/v1/ai/${provider}/chat/completions`,
|
|
712
|
+
api_key: accessToken.access_token,
|
|
713
|
+
models: [model]
|
|
714
|
+
};
|
|
715
|
+
if (transformer && transformer.trim().length > 0) {
|
|
716
|
+
cloudbaseProvider.transformer = { use: [transformer] };
|
|
717
|
+
}
|
|
718
|
+
yield fs.ensureFile(const_1.CLAUDE_CODE_ROUTER_CONFIG_PATH);
|
|
719
|
+
const claudeCodeRouterConfig = yield fs.readFile(const_1.CLAUDE_CODE_ROUTER_CONFIG_PATH, 'utf-8');
|
|
720
|
+
if (claudeCodeRouterConfig.trim().length === 0) {
|
|
721
|
+
log.debug((0, i18n_1.t)('claude-code-router 配置为空,写入 Cloudbase 配置...'));
|
|
722
|
+
yield fs.writeJson(const_1.CLAUDE_CODE_ROUTER_CONFIG_PATH, { Providers: [cloudbaseProvider] });
|
|
723
|
+
log.debug((0, i18n_1.t)('claude-code-router 配置完成'));
|
|
724
|
+
}
|
|
725
|
+
else {
|
|
726
|
+
const config = safeParseJson(claudeCodeRouterConfig);
|
|
727
|
+
if (!config) {
|
|
728
|
+
const { shouldOverwrite } = yield inquirer_1.default.prompt([
|
|
729
|
+
{
|
|
730
|
+
type: 'confirm',
|
|
731
|
+
name: 'shouldOverwrite',
|
|
732
|
+
message: (0, i18n_1.t)('claude-code-router 配置文件非合法 JSON ,是否覆盖? {{hint}}', { hint: (0, const_1.getBooleanHint)() })
|
|
733
|
+
}
|
|
734
|
+
]);
|
|
735
|
+
if (shouldOverwrite) {
|
|
736
|
+
yield fs.writeJson(const_1.CLAUDE_CODE_ROUTER_CONFIG_PATH, {
|
|
737
|
+
Providers: [cloudbaseProvider]
|
|
738
|
+
}, { spaces: 2 });
|
|
739
|
+
log.debug((0, i18n_1.t)('claude-code-router 配置完成'));
|
|
740
|
+
}
|
|
741
|
+
else {
|
|
742
|
+
log.error((0, i18n_1.t)('claude-code-router 配置文件非合法 JSON ,请手动修复'));
|
|
743
|
+
process.exit(1);
|
|
744
|
+
}
|
|
745
|
+
}
|
|
746
|
+
if (typeof config !== 'object' || config === null) {
|
|
747
|
+
log.error((0, i18n_1.t)('未知 claude-code-router 配置文件格式请手动修复'));
|
|
748
|
+
process.exit(1);
|
|
749
|
+
}
|
|
750
|
+
if (!('Providers' in config)) {
|
|
751
|
+
config.Providers = [cloudbaseProvider];
|
|
752
|
+
}
|
|
753
|
+
if (!Array.isArray(config.Providers)) {
|
|
754
|
+
log.error((0, i18n_1.t)('claude-code-router 配置文件 Providers 字段非数组类型,请手动修复'));
|
|
755
|
+
process.exit(1);
|
|
756
|
+
}
|
|
757
|
+
const providers = config.Providers;
|
|
758
|
+
const index = providers.findIndex((p) => typeof p === 'object' && (p === null || p === void 0 ? void 0 : p.name) === 'cloudbase');
|
|
759
|
+
if (index !== -1) {
|
|
760
|
+
providers[index] = cloudbaseProvider;
|
|
761
|
+
}
|
|
762
|
+
else {
|
|
763
|
+
providers.push(cloudbaseProvider);
|
|
764
|
+
}
|
|
765
|
+
if (!('Router' in config) ||
|
|
766
|
+
typeof config.Router !== 'object' ||
|
|
767
|
+
config.Router === null) {
|
|
768
|
+
config.Router = {};
|
|
769
|
+
}
|
|
770
|
+
config.Router.default = `cloudbase,${model}`;
|
|
771
|
+
config.Log = true;
|
|
772
|
+
yield fs.writeJson(const_1.CLAUDE_CODE_ROUTER_CONFIG_PATH, config, { spaces: 2 });
|
|
773
|
+
log.debug((0, i18n_1.t)('claude-code-router 配置完成'));
|
|
774
|
+
}
|
|
775
|
+
});
|
|
776
|
+
}
|
|
777
|
+
parseArgs(args) {
|
|
778
|
+
return args.filter((arg) => typeof arg === 'string' && arg.trim().length > 0);
|
|
779
|
+
}
|
|
780
|
+
ensureClaudeCodeRouter(log) {
|
|
781
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
782
|
+
const isAvailable = yield new Promise((resolve) => {
|
|
783
|
+
const child = (0, child_process_1.spawn)('ccr', ['--version'], {
|
|
784
|
+
stdio: 'pipe',
|
|
785
|
+
shell: true
|
|
786
|
+
});
|
|
787
|
+
child.stdout.on('data', (data) => {
|
|
788
|
+
data.toString().includes('Usage: ccr [command]') && resolve(true);
|
|
789
|
+
});
|
|
790
|
+
child.on('close', (code) => {
|
|
791
|
+
resolve(code === 0);
|
|
792
|
+
});
|
|
793
|
+
child.on('error', () => {
|
|
794
|
+
resolve(false);
|
|
795
|
+
});
|
|
796
|
+
});
|
|
797
|
+
if (isAvailable) {
|
|
798
|
+
log.debug((0, i18n_1.t)('claude code router 已安装!'));
|
|
799
|
+
}
|
|
800
|
+
else {
|
|
801
|
+
const { shouldInstall } = yield inquirer_1.default.prompt([
|
|
802
|
+
{
|
|
803
|
+
type: 'confirm',
|
|
804
|
+
name: 'shouldInstall',
|
|
805
|
+
message: (0, i18n_1.t)('AI 开发缺少 claude code router 依赖,是否安装? {{hint}}', {
|
|
806
|
+
hint: (0, const_1.getBooleanHint)(true)
|
|
807
|
+
})
|
|
808
|
+
}
|
|
809
|
+
]);
|
|
810
|
+
if (shouldInstall) {
|
|
811
|
+
yield this.executeCommand('npm', ['install', '-g', '@musistudio/claude-code-router'], process.env, log);
|
|
812
|
+
log.info((0, i18n_1.t)('claude-code-router 安装完成'));
|
|
813
|
+
}
|
|
814
|
+
else {
|
|
815
|
+
log.info((0, i18n_1.t)('claude code router 未安装,请手动安装'));
|
|
816
|
+
process.exit(1);
|
|
817
|
+
}
|
|
818
|
+
}
|
|
819
|
+
});
|
|
820
|
+
}
|
|
821
|
+
ensureClaudeCode(log) {
|
|
822
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
823
|
+
if (yield this.isToolAvailable('claude')) {
|
|
824
|
+
log.debug((0, i18n_1.t)('claude code 已安装!'));
|
|
825
|
+
}
|
|
826
|
+
else {
|
|
827
|
+
const { shouldInstall } = yield inquirer_1.default.prompt([
|
|
828
|
+
{
|
|
829
|
+
type: 'confirm',
|
|
830
|
+
name: 'shouldInstall',
|
|
831
|
+
message: (0, i18n_1.t)('AI 开发缺少 claude code 依赖,是否安装? {{hint}}', { hint: (0, const_1.getBooleanHint)(true) })
|
|
832
|
+
}
|
|
833
|
+
]);
|
|
834
|
+
if (shouldInstall) {
|
|
835
|
+
const platform = process.platform;
|
|
836
|
+
if (platform === 'win32') {
|
|
837
|
+
yield this.executeCommand('npm', ['install', '-g', '@anthropic-ai/claude-code'], process.env, log);
|
|
838
|
+
}
|
|
839
|
+
else {
|
|
840
|
+
try {
|
|
841
|
+
yield this.executeCommand('sh', ['-c', 'curl -fsSL https://claude.ai/install.sh | bash'], process.env, log);
|
|
842
|
+
}
|
|
843
|
+
catch (error) {
|
|
844
|
+
log.warn((0, i18n_1.t)('curl 安装失败,尝试使用 npm 安装...'));
|
|
845
|
+
try {
|
|
846
|
+
yield this.executeCommand('npm', ['install', '-g', '@anthropic-ai/claude-code'], process.env, log);
|
|
847
|
+
}
|
|
848
|
+
catch (npmError) {
|
|
849
|
+
log.error((0, i18n_1.t)('claude code 安装失败'));
|
|
850
|
+
log.error((0, i18n_1.t)('请手动安装 claude code:'));
|
|
851
|
+
log.error((0, i18n_1.t)('安装文档: {{link}}', {
|
|
852
|
+
link: (0, output_1.genClickableLink)('https://docs.anthropic.com/en/docs/claude-code/setup')
|
|
853
|
+
}));
|
|
854
|
+
process.exit(1);
|
|
855
|
+
}
|
|
856
|
+
}
|
|
857
|
+
}
|
|
858
|
+
log.info((0, i18n_1.t)('claude code 安装完成'));
|
|
859
|
+
}
|
|
860
|
+
else {
|
|
861
|
+
log.info((0, i18n_1.t)('claude code 未安装,请手动安装'));
|
|
862
|
+
log.info((0, i18n_1.t)('安装文档: {{link}}', {
|
|
863
|
+
link: (0, output_1.genClickableLink)('https://docs.anthropic.com/en/docs/claude-code/setup')
|
|
864
|
+
}));
|
|
865
|
+
process.exit(1);
|
|
866
|
+
}
|
|
867
|
+
}
|
|
868
|
+
});
|
|
869
|
+
}
|
|
870
|
+
ensureQwenCode(log) {
|
|
871
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
872
|
+
if (yield this.isToolAvailable('qwen')) {
|
|
873
|
+
log.debug((0, i18n_1.t)('qwen code 已安装!'));
|
|
874
|
+
}
|
|
875
|
+
else {
|
|
876
|
+
const { shouldInstall } = yield inquirer_1.default.prompt([
|
|
877
|
+
{
|
|
878
|
+
type: 'confirm',
|
|
879
|
+
name: 'shouldInstall',
|
|
880
|
+
message: (0, i18n_1.t)('AI 开发缺少 qwen code 依赖,是否安装? {{hint}}', { hint: (0, const_1.getBooleanHint)(true) })
|
|
881
|
+
}
|
|
882
|
+
]);
|
|
883
|
+
if (shouldInstall) {
|
|
884
|
+
yield this.executeCommand('npm', ['install', '-g', '@qwen-code/qwen-code'], process.env, log);
|
|
885
|
+
log.info((0, i18n_1.t)('qwen code 安装完成'));
|
|
886
|
+
}
|
|
887
|
+
else {
|
|
888
|
+
log.info((0, i18n_1.t)('qwen code 未安装,请手动安装'));
|
|
889
|
+
process.exit(1);
|
|
890
|
+
}
|
|
891
|
+
}
|
|
892
|
+
});
|
|
893
|
+
}
|
|
894
|
+
executeCodexAgent({ apiKey, baseUrl, model }, additionalArgs, log) {
|
|
895
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
896
|
+
yield this.ensureCodexCode(log);
|
|
897
|
+
const codexArgs = [
|
|
898
|
+
...(model ? ['--config', `model=${model}`] : []),
|
|
899
|
+
'--config',
|
|
900
|
+
'model_providers.custom.name=Custom OpenAI',
|
|
901
|
+
...(baseUrl ? ['--config', `model_providers.custom.base_url=${baseUrl}`] : []),
|
|
902
|
+
'--config',
|
|
903
|
+
'model_providers.custom.env_key=OPENAI_API_KEY',
|
|
904
|
+
'--config',
|
|
905
|
+
'model_provider=custom',
|
|
906
|
+
...additionalArgs
|
|
907
|
+
];
|
|
908
|
+
yield this.executeCommand('codex', codexArgs, Object.assign(Object.assign({}, process.env), { OPENAI_API_KEY: apiKey }), log);
|
|
909
|
+
});
|
|
910
|
+
}
|
|
911
|
+
executeNoneCodexAgent(additionalArgs, log) {
|
|
912
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
913
|
+
yield this.ensureCodexCode(log);
|
|
914
|
+
yield this.executeCommand('codex', additionalArgs, Object.assign({}, process.env), log);
|
|
915
|
+
});
|
|
916
|
+
}
|
|
917
|
+
executeCodexCloudbaseAgent({ provider, model }, additionalArgs, log) {
|
|
918
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
919
|
+
yield this.ensureCodexCode(log);
|
|
920
|
+
const _envId = yield (0, config_1.createConfigParser)().get('envId');
|
|
921
|
+
yield (0, auth_1.checkLogin)();
|
|
922
|
+
const credential = yield (0, utils_1.getCredential)({}, {});
|
|
923
|
+
const envId = yield (0, env_1.ensureValidEnv)(_envId, log);
|
|
924
|
+
const accessToken = yield (0, utils_1.rawFetchAccessToken)({
|
|
925
|
+
envId,
|
|
926
|
+
secretId: credential.secretId,
|
|
927
|
+
secretKey: credential.secretKey,
|
|
928
|
+
token: credential.token
|
|
929
|
+
});
|
|
930
|
+
if (!accessToken.access_token) {
|
|
931
|
+
log.error((0, i18n_1.t)('获取云开发 Access Token 失败,请运行 tcb login 后再重试,{{token}}', {
|
|
932
|
+
token: JSON.stringify(accessToken)
|
|
933
|
+
}));
|
|
934
|
+
process.exit(1);
|
|
935
|
+
}
|
|
936
|
+
const baseUrl = `${(0, url_1.getGatewayUrl)(envId)}/v1/ai/${provider}`;
|
|
937
|
+
const apiKey = accessToken.access_token;
|
|
938
|
+
const codexArgs = [
|
|
939
|
+
'--config',
|
|
940
|
+
`model=${model}`,
|
|
941
|
+
'--config',
|
|
942
|
+
'model_providers.cloudbase.name=CloudBase AI',
|
|
943
|
+
'--config',
|
|
944
|
+
`model_providers.cloudbase.base_url=${baseUrl}`,
|
|
945
|
+
'--config',
|
|
946
|
+
'model_providers.cloudbase.env_key=CLOUDBASE_ACCESS_TOKEN',
|
|
947
|
+
'--config',
|
|
948
|
+
'model_provider=cloudbase',
|
|
949
|
+
...additionalArgs
|
|
950
|
+
];
|
|
951
|
+
yield this.executeCommand('codex', codexArgs, Object.assign(Object.assign({}, process.env), { CLOUDBASE_ACCESS_TOKEN: apiKey }), log);
|
|
952
|
+
});
|
|
953
|
+
}
|
|
954
|
+
executeNoneCursorAgent(additionalArgs, log) {
|
|
955
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
956
|
+
yield this.ensureCursor(log);
|
|
957
|
+
yield this.executeCommand('cursor-agent', additionalArgs, Object.assign({}, process.env), log);
|
|
958
|
+
});
|
|
959
|
+
}
|
|
960
|
+
ensureCursor(log) {
|
|
961
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
962
|
+
if (yield this.isToolAvailable('cursor-agent')) {
|
|
963
|
+
log.debug((0, i18n_1.t)('Cursor CLI 已安装!'));
|
|
964
|
+
}
|
|
965
|
+
else {
|
|
966
|
+
const { shouldInstall } = yield inquirer_1.default.prompt([
|
|
967
|
+
{
|
|
968
|
+
type: 'confirm',
|
|
969
|
+
name: 'shouldInstall',
|
|
970
|
+
message: (0, i18n_1.t)('AI 开发缺少 Cursor CLI 依赖,是否安装? {{hint}}', { hint: (0, const_1.getBooleanHint)(true) })
|
|
971
|
+
}
|
|
972
|
+
]);
|
|
973
|
+
if (shouldInstall) {
|
|
974
|
+
log.info((0, i18n_1.t)('正在安装 Cursor CLI...'));
|
|
975
|
+
yield this.executeCommand('sh', ['-c', 'curl https://cursor.com/install -fsS | bash'], process.env, log);
|
|
976
|
+
log.info((0, i18n_1.t)('Cursor CLI 安装完成'));
|
|
977
|
+
}
|
|
978
|
+
else {
|
|
979
|
+
log.info((0, i18n_1.t)('Cursor CLI 未安装,请手动安装'));
|
|
980
|
+
process.exit(1);
|
|
981
|
+
}
|
|
982
|
+
}
|
|
983
|
+
});
|
|
984
|
+
}
|
|
985
|
+
ensureCodexCode(log) {
|
|
986
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
987
|
+
if (yield this.isToolAvailable('codex')) {
|
|
988
|
+
log.debug((0, i18n_1.t)('codex 已安装!'));
|
|
989
|
+
}
|
|
990
|
+
else {
|
|
991
|
+
const { shouldInstall } = yield inquirer_1.default.prompt([
|
|
992
|
+
{
|
|
993
|
+
type: 'confirm',
|
|
994
|
+
name: 'shouldInstall',
|
|
995
|
+
message: (0, i18n_1.t)('AI 开发缺少 codex 依赖,是否安装? {{hint}}', { hint: (0, const_1.getBooleanHint)(true) })
|
|
996
|
+
}
|
|
997
|
+
]);
|
|
998
|
+
if (shouldInstall) {
|
|
999
|
+
yield this.executeCommand('npm', ['install', '-g', '@openai/codex'], process.env, log);
|
|
1000
|
+
log.info((0, i18n_1.t)('codex 安装完成'));
|
|
1001
|
+
}
|
|
1002
|
+
else {
|
|
1003
|
+
log.info((0, i18n_1.t)('codex 未安装,请手动安装'));
|
|
1004
|
+
process.exit(1);
|
|
1005
|
+
}
|
|
1006
|
+
}
|
|
1007
|
+
});
|
|
1008
|
+
}
|
|
1009
|
+
executeAiderAgent(config, additionalArgs, log) {
|
|
1010
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
1011
|
+
yield this.ensureAider(log);
|
|
1012
|
+
const { apiKey, baseUrl, model } = config;
|
|
1013
|
+
const aiderArgs = ['--model', `openai/${model}`, ...additionalArgs];
|
|
1014
|
+
const env = Object.assign(Object.assign({}, process.env), { OPENAI_API_KEY: apiKey, OPENAI_API_BASE: baseUrl });
|
|
1015
|
+
yield this.executeCommand('aider', aiderArgs, env, log);
|
|
1016
|
+
});
|
|
1017
|
+
}
|
|
1018
|
+
executeAiderCloudbaseAgent(config, additionalArgs, log) {
|
|
1019
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
1020
|
+
yield this.ensureAider(log);
|
|
1021
|
+
const { provider, model } = config;
|
|
1022
|
+
const _envId = yield (0, config_1.createConfigParser)().get('envId');
|
|
1023
|
+
yield (0, auth_1.checkLogin)();
|
|
1024
|
+
const credential = yield (0, utils_1.getCredential)({}, {});
|
|
1025
|
+
const envId = yield (0, env_1.ensureValidEnv)(_envId, log);
|
|
1026
|
+
const accessToken = yield (0, utils_1.rawFetchAccessToken)({
|
|
1027
|
+
envId,
|
|
1028
|
+
secretId: credential.secretId,
|
|
1029
|
+
secretKey: credential.secretKey,
|
|
1030
|
+
token: credential.token
|
|
1031
|
+
});
|
|
1032
|
+
if (!accessToken.access_token) {
|
|
1033
|
+
log.error((0, i18n_1.t)('获取云开发 Access Token 失败,请运行 tcb login 后再重试,{{token}}', {
|
|
1034
|
+
token: JSON.stringify(accessToken)
|
|
1035
|
+
}));
|
|
1036
|
+
process.exit(1);
|
|
1037
|
+
}
|
|
1038
|
+
const baseUrl = `${(0, url_1.getGatewayUrl)(envId)}/v1/ai/${provider}`;
|
|
1039
|
+
const apiKey = accessToken.access_token;
|
|
1040
|
+
const aiderArgs = ['--model', `openai/${model}`, ...additionalArgs];
|
|
1041
|
+
const env = Object.assign(Object.assign({}, process.env), { OPENAI_API_KEY: apiKey, OPENAI_API_BASE: baseUrl });
|
|
1042
|
+
yield this.executeCommand('aider', aiderArgs, env, log);
|
|
1043
|
+
});
|
|
1044
|
+
}
|
|
1045
|
+
ensureAider(log) {
|
|
1046
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
1047
|
+
if (yield this.isToolAvailable('aider')) {
|
|
1048
|
+
log.debug((0, i18n_1.t)('aider 已安装!'));
|
|
1049
|
+
}
|
|
1050
|
+
else {
|
|
1051
|
+
const { shouldInstall } = yield inquirer_1.default.prompt([
|
|
1052
|
+
{
|
|
1053
|
+
type: 'confirm',
|
|
1054
|
+
name: 'shouldInstall',
|
|
1055
|
+
message: (0, i18n_1.t)('AI 开发缺少 aider 依赖,是否安装? {{hint}}', { hint: (0, const_1.getBooleanHint)(true) })
|
|
1056
|
+
}
|
|
1057
|
+
]);
|
|
1058
|
+
if (shouldInstall) {
|
|
1059
|
+
log.info((0, i18n_1.t)('正在安装 aider...'));
|
|
1060
|
+
const platform = process.platform;
|
|
1061
|
+
if (platform === 'win32') {
|
|
1062
|
+
yield this.executeCommand('powershell', ['-c', 'irm https://aider.chat/install.ps1 | iex'], process.env, log);
|
|
1063
|
+
}
|
|
1064
|
+
else {
|
|
1065
|
+
yield this.executeCommand('sh', ['-c', 'curl -LsSf https://aider.chat/install.sh | sh'], process.env, log);
|
|
1066
|
+
}
|
|
1067
|
+
log.info((0, i18n_1.t)('aider 安装完成'));
|
|
1068
|
+
}
|
|
1069
|
+
else {
|
|
1070
|
+
log.info((0, i18n_1.t)('aider 未安装,请手动安装'));
|
|
1071
|
+
process.exit(1);
|
|
1072
|
+
}
|
|
1073
|
+
}
|
|
1074
|
+
});
|
|
1075
|
+
}
|
|
1076
|
+
modifyMCPConfigs(extractDir, log) {
|
|
1077
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
1078
|
+
const fs = yield Promise.resolve().then(() => __importStar(require('fs-extra')));
|
|
1079
|
+
const path = yield Promise.resolve().then(() => __importStar(require('path')));
|
|
1080
|
+
try {
|
|
1081
|
+
log.info((0, i18n_1.t)('正在修改 MCP 配置文件...'));
|
|
1082
|
+
for (const [, files] of Object.entries(IDE_FILE_MAPPINGS)) {
|
|
1083
|
+
for (const descriptor of files) {
|
|
1084
|
+
if (!descriptor.isMcpConfig)
|
|
1085
|
+
continue;
|
|
1086
|
+
const filePath = path.join(extractDir, descriptor.path);
|
|
1087
|
+
if (yield fs.pathExists(filePath)) {
|
|
1088
|
+
const format = inferConfigFormat(descriptor.path);
|
|
1089
|
+
if (format === 'json') {
|
|
1090
|
+
yield this.modifyMCPJsonFile(filePath, log);
|
|
1091
|
+
}
|
|
1092
|
+
else if (format === 'toml') {
|
|
1093
|
+
yield this.modifyMCPTomlFile(filePath, log);
|
|
1094
|
+
}
|
|
1095
|
+
}
|
|
1096
|
+
}
|
|
1097
|
+
}
|
|
1098
|
+
log.info((0, i18n_1.t)('MCP 配置文件修改完成'));
|
|
1099
|
+
}
|
|
1100
|
+
catch (error) {
|
|
1101
|
+
log.warn((0, i18n_1.t)(' MCP 配置文件修改失败: {{error}}', { error: error.message }));
|
|
1102
|
+
}
|
|
1103
|
+
});
|
|
1104
|
+
}
|
|
1105
|
+
modifyMCPJsonFile(filePath, log) {
|
|
1106
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
1107
|
+
const fs = yield Promise.resolve().then(() => __importStar(require('fs-extra')));
|
|
1108
|
+
try {
|
|
1109
|
+
const content = yield fs.readFile(filePath, 'utf-8');
|
|
1110
|
+
const config = JSON.parse(content);
|
|
1111
|
+
let modified = false;
|
|
1112
|
+
const modifyCommands = (obj) => {
|
|
1113
|
+
if (typeof obj !== 'object' || obj === null) {
|
|
1114
|
+
return obj;
|
|
1115
|
+
}
|
|
1116
|
+
if (Array.isArray(obj)) {
|
|
1117
|
+
return obj.map((item) => modifyCommands(item));
|
|
1118
|
+
}
|
|
1119
|
+
const result = Object.assign({}, obj);
|
|
1120
|
+
if (result.command === 'npx' && Array.isArray(result.args)) {
|
|
1121
|
+
const argsStr = result.args.join(' ');
|
|
1122
|
+
if (argsStr.includes('npm-global-exec@latest') &&
|
|
1123
|
+
argsStr.includes('@cloudbase/cloudbase-mcp@latest')) {
|
|
1124
|
+
result.command = 'cloudbase-mcp';
|
|
1125
|
+
result.args = [];
|
|
1126
|
+
result.env = {
|
|
1127
|
+
INTEGRATION_IDE: process.env.INTEGRATION_IDE || 'CloudBaseCLI'
|
|
1128
|
+
};
|
|
1129
|
+
modified = true;
|
|
1130
|
+
log.debug((0, i18n_1.t)('修改配置文件 {{filePath}}: npx -> cloudbase-mcp', { filePath }));
|
|
1131
|
+
}
|
|
1132
|
+
}
|
|
1133
|
+
for (const [key, value] of Object.entries(result)) {
|
|
1134
|
+
result[key] = modifyCommands(value);
|
|
1135
|
+
}
|
|
1136
|
+
return result;
|
|
1137
|
+
};
|
|
1138
|
+
const modifiedConfig = modifyCommands(config);
|
|
1139
|
+
if (modified) {
|
|
1140
|
+
yield fs.writeJson(filePath, modifiedConfig, { spaces: 2 });
|
|
1141
|
+
log.debug((0, i18n_1.t)('已修改 {{filePath}}', { filePath }));
|
|
1142
|
+
}
|
|
1143
|
+
}
|
|
1144
|
+
catch (error) {
|
|
1145
|
+
log.warn((0, i18n_1.t)(' 修改配置文件 {{filePath}} 失败: {{error}}', { filePath, error: error.message }));
|
|
1146
|
+
}
|
|
1147
|
+
});
|
|
1148
|
+
}
|
|
1149
|
+
modifyMCPTomlFile(filePath, log) {
|
|
1150
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
1151
|
+
const fs = yield Promise.resolve().then(() => __importStar(require('fs-extra')));
|
|
1152
|
+
const toml = yield Promise.resolve().then(() => __importStar(require('toml')));
|
|
1153
|
+
try {
|
|
1154
|
+
const content = yield fs.readFile(filePath, 'utf-8');
|
|
1155
|
+
const config = toml.parse(content);
|
|
1156
|
+
let modified = false;
|
|
1157
|
+
const modifyCommands = (obj) => {
|
|
1158
|
+
if (typeof obj !== 'object' || obj === null) {
|
|
1159
|
+
return obj;
|
|
1160
|
+
}
|
|
1161
|
+
if (Array.isArray(obj)) {
|
|
1162
|
+
return obj.map((item) => modifyCommands(item));
|
|
1163
|
+
}
|
|
1164
|
+
const result = Object.assign({}, obj);
|
|
1165
|
+
if (result.command === 'npx' && Array.isArray(result.args)) {
|
|
1166
|
+
const argsStr = result.args.join(' ');
|
|
1167
|
+
if (argsStr.includes('@cloudbase/cloudbase-mcp@latest')) {
|
|
1168
|
+
result.command = 'cloudbase-mcp';
|
|
1169
|
+
result.args = [];
|
|
1170
|
+
result.env = {
|
|
1171
|
+
INTEGRATION_IDE: process.env.INTEGRATION_IDE || 'CloudBaseCLI'
|
|
1172
|
+
};
|
|
1173
|
+
modified = true;
|
|
1174
|
+
log.debug((0, i18n_1.t)('修改配置文件 {{filePath}}: npx -> cloudbase-mcp', { filePath }));
|
|
1175
|
+
}
|
|
1176
|
+
}
|
|
1177
|
+
for (const [key, value] of Object.entries(result)) {
|
|
1178
|
+
result[key] = modifyCommands(value);
|
|
1179
|
+
}
|
|
1180
|
+
return result;
|
|
1181
|
+
};
|
|
1182
|
+
const modifiedConfig = modifyCommands(config);
|
|
1183
|
+
if (modified) {
|
|
1184
|
+
const tomlString = this.objectToToml(modifiedConfig);
|
|
1185
|
+
yield fs.writeFile(filePath, tomlString, 'utf-8');
|
|
1186
|
+
log.debug((0, i18n_1.t)('已修改 {{filePath}}', { filePath }));
|
|
1187
|
+
}
|
|
1188
|
+
}
|
|
1189
|
+
catch (error) {
|
|
1190
|
+
log.warn((0, i18n_1.t)(' 修改配置文件 {{filePath}} 失败: {{error}}', { filePath, error: error.message }));
|
|
1191
|
+
}
|
|
1192
|
+
});
|
|
1193
|
+
}
|
|
1194
|
+
mergeMcpConfig(entry, destPath, format, log) {
|
|
1195
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
1196
|
+
const fs = yield Promise.resolve().then(() => __importStar(require('fs-extra')));
|
|
1197
|
+
const path = yield Promise.resolve().then(() => __importStar(require('path')));
|
|
1198
|
+
const incomingStr = (yield entry.buffer()).toString('utf8');
|
|
1199
|
+
const deepMerge = (target, source) => {
|
|
1200
|
+
if (typeof target !== 'object' || typeof source !== 'object' || !target || !source) {
|
|
1201
|
+
return target;
|
|
1202
|
+
}
|
|
1203
|
+
const result = Array.isArray(target) ? [...target] : Object.assign(Object.assign({}, source), target);
|
|
1204
|
+
for (const key of Object.keys(source)) {
|
|
1205
|
+
if (key in target &&
|
|
1206
|
+
typeof target[key] === 'object' &&
|
|
1207
|
+
typeof source[key] === 'object') {
|
|
1208
|
+
result[key] = deepMerge(target[key], source[key]);
|
|
1209
|
+
}
|
|
1210
|
+
}
|
|
1211
|
+
return result;
|
|
1212
|
+
};
|
|
1213
|
+
yield fs.ensureDir(path.dirname(destPath));
|
|
1214
|
+
if (format === 'json') {
|
|
1215
|
+
const incomingObj = JSON.parse(incomingStr);
|
|
1216
|
+
if (yield fs.pathExists(destPath)) {
|
|
1217
|
+
const existingObj = yield fs.readJson(destPath);
|
|
1218
|
+
const merged = deepMerge(existingObj, incomingObj);
|
|
1219
|
+
yield fs.writeJson(destPath, merged, { spaces: 2 });
|
|
1220
|
+
}
|
|
1221
|
+
else {
|
|
1222
|
+
yield fs.writeJson(destPath, incomingObj, { spaces: 2 });
|
|
1223
|
+
}
|
|
1224
|
+
return;
|
|
1225
|
+
}
|
|
1226
|
+
const toml = yield Promise.resolve().then(() => __importStar(require('toml')));
|
|
1227
|
+
const incomingObj = toml.parse(incomingStr);
|
|
1228
|
+
if (yield fs.pathExists(destPath)) {
|
|
1229
|
+
const existingStr = yield fs.readFile(destPath, 'utf-8');
|
|
1230
|
+
const existingObj = toml.parse(existingStr);
|
|
1231
|
+
const merged = deepMerge(existingObj, incomingObj);
|
|
1232
|
+
const out = this.objectToToml(merged);
|
|
1233
|
+
yield fs.writeFile(destPath, out, 'utf-8');
|
|
1234
|
+
}
|
|
1235
|
+
else {
|
|
1236
|
+
const out = this.objectToToml(incomingObj);
|
|
1237
|
+
yield fs.writeFile(destPath, out, 'utf-8');
|
|
1238
|
+
}
|
|
1239
|
+
});
|
|
1240
|
+
}
|
|
1241
|
+
objectToToml(obj, prefix = '') {
|
|
1242
|
+
const lines = [];
|
|
1243
|
+
for (const [key, value] of Object.entries(obj)) {
|
|
1244
|
+
const fullKey = prefix ? `${prefix}.${key}` : key;
|
|
1245
|
+
if (typeof value === 'object' && value !== null && !Array.isArray(value)) {
|
|
1246
|
+
lines.push(`[${fullKey}]`);
|
|
1247
|
+
lines.push(this.objectToToml(value, fullKey));
|
|
1248
|
+
}
|
|
1249
|
+
else if (Array.isArray(value)) {
|
|
1250
|
+
const arrayStr = value
|
|
1251
|
+
.map((item) => {
|
|
1252
|
+
if (typeof item === 'string') {
|
|
1253
|
+
return `"${item}"`;
|
|
1254
|
+
}
|
|
1255
|
+
return item;
|
|
1256
|
+
})
|
|
1257
|
+
.join(', ');
|
|
1258
|
+
lines.push(`${key} = [${arrayStr}]`);
|
|
1259
|
+
}
|
|
1260
|
+
else if (typeof value === 'string') {
|
|
1261
|
+
lines.push(`${key} = "${value}"`);
|
|
1262
|
+
}
|
|
1263
|
+
else {
|
|
1264
|
+
lines.push(`${key} = ${value}`);
|
|
1265
|
+
}
|
|
1266
|
+
}
|
|
1267
|
+
return lines.join('\n');
|
|
1268
|
+
}
|
|
1269
|
+
executeCodebuddyAgent({ apiKey }, additionalArgs, log) {
|
|
1270
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
1271
|
+
yield this.ensureCodebuddy(log);
|
|
1272
|
+
yield this.executeCommand('codebuddy', additionalArgs, Object.assign(Object.assign({}, process.env), (apiKey && { CODEBUDDY_API_KEY: apiKey })), log);
|
|
1273
|
+
});
|
|
1274
|
+
}
|
|
1275
|
+
executeNoneCodebuddyAgent(additionalArgs, log) {
|
|
1276
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
1277
|
+
yield this.ensureCodebuddy(log);
|
|
1278
|
+
yield this.executeCommand('codebuddy', additionalArgs, Object.assign({}, process.env), log);
|
|
1279
|
+
});
|
|
1280
|
+
}
|
|
1281
|
+
ensureCodebuddy(log) {
|
|
1282
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
1283
|
+
if (yield this.isToolAvailable('codebuddy')) {
|
|
1284
|
+
log.debug((0, i18n_1.t)('codebuddy 已安装!'));
|
|
1285
|
+
}
|
|
1286
|
+
else {
|
|
1287
|
+
const { shouldInstall } = yield inquirer_1.default.prompt([
|
|
1288
|
+
{
|
|
1289
|
+
type: 'confirm',
|
|
1290
|
+
name: 'shouldInstall',
|
|
1291
|
+
message: (0, i18n_1.t)('AI 开发缺少 codebuddy 依赖,是否安装? {{hint}}', { hint: (0, const_1.getBooleanHint)(true) })
|
|
1292
|
+
}
|
|
1293
|
+
]);
|
|
1294
|
+
if (shouldInstall) {
|
|
1295
|
+
yield this.executeCommand('npm', ['install', '-g', '@tencent-ai/codebuddy-code'], process.env, log);
|
|
1296
|
+
log.info((0, i18n_1.t)('codebuddy 安装完成'));
|
|
1297
|
+
}
|
|
1298
|
+
else {
|
|
1299
|
+
log.info((0, i18n_1.t)('codebuddy 未安装,请手动安装'));
|
|
1300
|
+
log.info((0, i18n_1.t)('安装命令: npm install -g @tencent-ai/codebuddy-code'));
|
|
1301
|
+
process.exit(1);
|
|
1302
|
+
}
|
|
1303
|
+
}
|
|
1304
|
+
});
|
|
1305
|
+
}
|
|
1306
|
+
}
|
|
1307
|
+
exports.AICommandRouter = AICommandRouter;
|
|
1308
|
+
function safeParseJson(json) {
|
|
1309
|
+
try {
|
|
1310
|
+
return JSON.parse(json);
|
|
1311
|
+
}
|
|
1312
|
+
catch (_) {
|
|
1313
|
+
return null;
|
|
1314
|
+
}
|
|
1315
|
+
}
|