ccjk 12.0.8 → 12.0.10
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/dist/chunks/agent-teams.mjs +136 -0
- package/dist/chunks/agent.mjs +1439 -0
- package/dist/chunks/agents.mjs +3784 -0
- package/dist/chunks/api-cli.mjs +132 -0
- package/dist/chunks/api-providers.mjs +129 -0
- package/dist/chunks/api.mjs +112 -0
- package/dist/chunks/auto-bootstrap.mjs +358 -0
- package/dist/chunks/auto-fixer.mjs +93 -0
- package/dist/chunks/auto-init.mjs +7584 -0
- package/dist/chunks/auto-updater.mjs +411 -0
- package/dist/chunks/banner.mjs +188 -0
- package/dist/chunks/bash.mjs +187 -0
- package/dist/chunks/boost.mjs +404 -0
- package/dist/chunks/ccjk-agents.mjs +417 -0
- package/dist/chunks/ccjk-all.mjs +1028 -0
- package/dist/chunks/ccjk-config.mjs +261 -0
- package/dist/chunks/ccjk-hooks.mjs +1074 -0
- package/dist/chunks/ccjk-mcp.mjs +761 -0
- package/dist/chunks/ccjk-setup.mjs +763 -0
- package/dist/chunks/ccjk-skills.mjs +514 -0
- package/dist/chunks/ccr.mjs +99 -0
- package/dist/chunks/ccu.mjs +40 -0
- package/dist/chunks/check-updates.mjs +109 -0
- package/dist/chunks/claude-code-config-manager.mjs +750 -0
- package/dist/chunks/claude-code-incremental-manager.mjs +624 -0
- package/dist/chunks/claude-config.mjs +236 -0
- package/dist/chunks/claude-wrapper.mjs +85 -0
- package/dist/chunks/cleanup-migration.mjs +20 -0
- package/dist/chunks/cli-hook.mjs +2287 -0
- package/dist/chunks/cloud-sync.mjs +29 -0
- package/dist/chunks/codex-config-switch.mjs +452 -0
- package/dist/chunks/codex-provider-manager.mjs +237 -0
- package/dist/chunks/codex-uninstaller.mjs +404 -0
- package/dist/chunks/codex.mjs +2077 -0
- package/dist/chunks/commands.mjs +108 -0
- package/dist/chunks/commands2.mjs +413 -0
- package/dist/chunks/commit.mjs +138 -0
- package/dist/chunks/completion.mjs +515 -0
- package/dist/chunks/config-consolidator.mjs +172 -0
- package/dist/chunks/config-switch.mjs +318 -0
- package/dist/chunks/config.mjs +379 -0
- package/dist/chunks/config2.mjs +478 -0
- package/dist/chunks/config3.mjs +470 -0
- package/dist/chunks/constants.mjs +133 -0
- package/dist/chunks/context-loader.mjs +351 -0
- package/dist/chunks/context.mjs +372 -0
- package/dist/chunks/convoy-manager.mjs +985 -0
- package/dist/chunks/dashboard.mjs +476 -0
- package/dist/chunks/doctor.mjs +965 -0
- package/dist/chunks/evolution.mjs +382 -0
- package/dist/chunks/features.mjs +699 -0
- package/dist/chunks/fish.mjs +181 -0
- package/dist/chunks/fs-operations.mjs +192 -0
- package/dist/chunks/health-alerts.mjs +304 -0
- package/dist/chunks/health-check.mjs +532 -0
- package/dist/chunks/help.mjs +340 -0
- package/dist/chunks/hook-installer.mjs +45 -0
- package/dist/chunks/index.mjs +24 -0
- package/dist/chunks/index10.mjs +679 -0
- package/dist/chunks/index11.mjs +1171 -0
- package/dist/chunks/index12.mjs +1009 -0
- package/dist/chunks/index13.mjs +193 -0
- package/dist/chunks/index14.mjs +218 -0
- package/dist/chunks/index2.mjs +19 -0
- package/dist/chunks/index3.mjs +19092 -0
- package/dist/chunks/index4.mjs +8 -0
- package/dist/chunks/index5.mjs +7600 -0
- package/dist/chunks/index6.mjs +171 -0
- package/dist/chunks/index7.mjs +1602 -0
- package/dist/chunks/index8.mjs +19 -0
- package/dist/chunks/index9.mjs +616 -0
- package/dist/chunks/init.mjs +1606 -0
- package/dist/chunks/installer.mjs +691 -0
- package/dist/chunks/installer2.mjs +179 -0
- package/dist/chunks/interview.mjs +2927 -0
- package/dist/chunks/json-config.mjs +60 -0
- package/dist/chunks/linux.mjs +3863 -0
- package/dist/chunks/macos.mjs +69 -0
- package/dist/chunks/main.mjs +635 -0
- package/dist/chunks/manager.mjs +1048 -0
- package/dist/chunks/marketplace.mjs +949 -0
- package/dist/chunks/mcp-cli.mjs +205 -0
- package/dist/chunks/mcp-performance.mjs +187 -0
- package/dist/chunks/mcp.mjs +1232 -0
- package/dist/chunks/menu.mjs +663 -0
- package/dist/chunks/metrics-display.mjs +153 -0
- package/dist/chunks/migrator.mjs +178 -0
- package/dist/chunks/monitor.mjs +1856 -0
- package/dist/chunks/notification.mjs +1864 -0
- package/dist/chunks/onboarding-wizard.mjs +119 -0
- package/dist/chunks/onboarding.mjs +386 -0
- package/dist/chunks/package.mjs +3 -0
- package/dist/chunks/paradigm.mjs +74 -0
- package/dist/chunks/permission-manager.mjs +132 -0
- package/dist/chunks/permissions.mjs +265 -0
- package/dist/chunks/persistence-manager.mjs +794 -0
- package/dist/chunks/persistence.mjs +667 -0
- package/dist/chunks/platform.mjs +391 -0
- package/dist/chunks/plugin.mjs +1936 -0
- package/dist/chunks/powershell.mjs +213 -0
- package/dist/chunks/prompts.mjs +242 -0
- package/dist/chunks/providers.mjs +260 -0
- package/dist/chunks/quick-actions.mjs +320 -0
- package/dist/chunks/quick-provider.mjs +683 -0
- package/dist/chunks/quick-setup.mjs +413 -0
- package/dist/chunks/remote.mjs +498 -0
- package/dist/chunks/session.mjs +878 -0
- package/dist/chunks/sessions.mjs +106 -0
- package/dist/chunks/silent-updater.mjs +396 -0
- package/dist/chunks/simple-config.mjs +98 -0
- package/dist/chunks/skill.mjs +117 -0
- package/dist/chunks/skill2.mjs +9003 -0
- package/dist/chunks/skills-sync.mjs +6460 -0
- package/dist/chunks/skills.mjs +567 -0
- package/dist/chunks/slash-commands.mjs +207 -0
- package/dist/chunks/smart-defaults.mjs +412 -0
- package/dist/chunks/smart-guide.mjs +194 -0
- package/dist/chunks/startup.mjs +487 -0
- package/dist/chunks/stats.mjs +410 -0
- package/dist/chunks/status.mjs +327 -0
- package/dist/chunks/team.mjs +63 -0
- package/dist/chunks/thinking.mjs +626 -0
- package/dist/chunks/trace.mjs +57 -0
- package/dist/chunks/uninstall.mjs +850 -0
- package/dist/chunks/update.mjs +168 -0
- package/dist/chunks/upgrade-manager.mjs +204 -0
- package/dist/chunks/version-checker.mjs +881 -0
- package/dist/chunks/vim.mjs +903 -0
- package/dist/chunks/windows.mjs +14 -0
- package/dist/chunks/workflows.mjs +633 -0
- package/dist/chunks/wsl.mjs +129 -0
- package/dist/chunks/zero-config.mjs +374 -0
- package/dist/chunks/zsh.mjs +182 -0
- package/dist/cli.d.mts +1 -0
- package/dist/cli.d.ts +1 -0
- package/dist/cli.mjs +2215 -0
- package/dist/i18n/locales/en/agent-teams.json +18 -0
- package/dist/i18n/locales/en/agentBrowser.json +79 -0
- package/dist/i18n/locales/en/agents.json +135 -0
- package/dist/i18n/locales/en/api.json +63 -0
- package/dist/i18n/locales/en/ccjk-agents.json +33 -0
- package/dist/i18n/locales/en/ccjk-all.json +23 -0
- package/dist/i18n/locales/en/ccjk-skills.json +22 -0
- package/dist/i18n/locales/en/ccjk.json +276 -0
- package/dist/i18n/locales/en/ccr.json +65 -0
- package/dist/i18n/locales/en/claude-md.json +73 -0
- package/dist/i18n/locales/en/cli.json +152 -0
- package/dist/i18n/locales/en/cloud-setup.json +31 -0
- package/dist/i18n/locales/en/cloud-sync.json +147 -0
- package/dist/i18n/locales/en/cloud.json +40 -0
- package/dist/i18n/locales/en/cloudPlugins.json +118 -0
- package/dist/i18n/locales/en/codex.json +127 -0
- package/dist/i18n/locales/en/cometix.json +29 -0
- package/dist/i18n/locales/en/common.json +68 -0
- package/dist/i18n/locales/en/config.json +108 -0
- package/dist/i18n/locales/en/configuration.json +226 -0
- package/dist/i18n/locales/en/context.json +85 -0
- package/dist/i18n/locales/en/dashboard.json +78 -0
- package/dist/i18n/locales/en/errors.json +26 -0
- package/dist/i18n/locales/en/evolution.json +54 -0
- package/dist/i18n/locales/en/hooks.json +74 -0
- package/dist/i18n/locales/en/hooksSync.json +133 -0
- package/dist/i18n/locales/en/installation.json +83 -0
- package/dist/i18n/locales/en/interview.json +104 -0
- package/dist/i18n/locales/en/language.json +19 -0
- package/dist/i18n/locales/en/lsp.json +78 -0
- package/dist/i18n/locales/en/marketplace.json +116 -0
- package/dist/i18n/locales/en/mcp.json +178 -0
- package/dist/i18n/locales/en/memory.json +92 -0
- package/dist/i18n/locales/en/menu.json +143 -0
- package/dist/i18n/locales/en/multi-config.json +79 -0
- package/dist/i18n/locales/en/notification.json +307 -0
- package/dist/i18n/locales/en/permissions.json +95 -0
- package/dist/i18n/locales/en/persistence.json +127 -0
- package/dist/i18n/locales/en/plugins.json +146 -0
- package/dist/i18n/locales/en/quick-actions.json +78 -0
- package/dist/i18n/locales/en/registry.json +54 -0
- package/dist/i18n/locales/en/remote.json +93 -0
- package/dist/i18n/locales/en/sandbox.json +44 -0
- package/dist/i18n/locales/en/setup.json +44 -0
- package/dist/i18n/locales/en/shencha.json +14 -0
- package/dist/i18n/locales/en/skills.json +100 -0
- package/dist/i18n/locales/en/skillsSync.json +74 -0
- package/dist/i18n/locales/en/smartGuide.json +49 -0
- package/dist/i18n/locales/en/stats.json +20 -0
- package/dist/i18n/locales/en/subagent.json +69 -0
- package/dist/i18n/locales/en/superpowers.json +117 -0
- package/dist/i18n/locales/en/team.json +7 -0
- package/dist/i18n/locales/en/thinking.json +65 -0
- package/dist/i18n/locales/en/tools.json +42 -0
- package/dist/i18n/locales/en/uninstall.json +56 -0
- package/dist/i18n/locales/en/updater.json +29 -0
- package/dist/i18n/locales/en/vim.json +169 -0
- package/dist/i18n/locales/en/workflow.json +55 -0
- package/dist/i18n/locales/en/workspace.json +108 -0
- package/dist/i18n/locales/zh-CN/agent-teams.json +18 -0
- package/dist/i18n/locales/zh-CN/agentBrowser.json +79 -0
- package/dist/i18n/locales/zh-CN/agents.json +135 -0
- package/dist/i18n/locales/zh-CN/api.json +63 -0
- package/dist/i18n/locales/zh-CN/ccjk-agents.json +33 -0
- package/dist/i18n/locales/zh-CN/ccjk-all.json +23 -0
- package/dist/i18n/locales/zh-CN/ccjk-skills.json +22 -0
- package/dist/i18n/locales/zh-CN/ccjk.json +276 -0
- package/dist/i18n/locales/zh-CN/ccr.json +65 -0
- package/dist/i18n/locales/zh-CN/claude-md.json +73 -0
- package/dist/i18n/locales/zh-CN/cli.json +152 -0
- package/dist/i18n/locales/zh-CN/cloud-setup.json +31 -0
- package/dist/i18n/locales/zh-CN/cloud-sync.json +147 -0
- package/dist/i18n/locales/zh-CN/cloud.json +40 -0
- package/dist/i18n/locales/zh-CN/cloudPlugins.json +118 -0
- package/dist/i18n/locales/zh-CN/codex.json +127 -0
- package/dist/i18n/locales/zh-CN/cometix.json +29 -0
- package/dist/i18n/locales/zh-CN/common.json +68 -0
- package/dist/i18n/locales/zh-CN/config.json +108 -0
- package/dist/i18n/locales/zh-CN/configuration.json +224 -0
- package/dist/i18n/locales/zh-CN/context.json +85 -0
- package/dist/i18n/locales/zh-CN/dashboard.json +78 -0
- package/dist/i18n/locales/zh-CN/errors.json +26 -0
- package/dist/i18n/locales/zh-CN/evolution.json +54 -0
- package/dist/i18n/locales/zh-CN/hooks.json +74 -0
- package/dist/i18n/locales/zh-CN/hooksSync.json +133 -0
- package/dist/i18n/locales/zh-CN/installation.json +83 -0
- package/dist/i18n/locales/zh-CN/interview.json +104 -0
- package/dist/i18n/locales/zh-CN/language.json +19 -0
- package/dist/i18n/locales/zh-CN/lsp.json +78 -0
- package/dist/i18n/locales/zh-CN/marketplace.json +116 -0
- package/dist/i18n/locales/zh-CN/mcp.json +178 -0
- package/dist/i18n/locales/zh-CN/memory.json +92 -0
- package/dist/i18n/locales/zh-CN/menu.json +143 -0
- package/dist/i18n/locales/zh-CN/multi-config.json +79 -0
- package/dist/i18n/locales/zh-CN/notification.json +307 -0
- package/dist/i18n/locales/zh-CN/permissions.json +95 -0
- package/dist/i18n/locales/zh-CN/persistence.json +127 -0
- package/dist/i18n/locales/zh-CN/plugins.json +146 -0
- package/dist/i18n/locales/zh-CN/quick-actions.json +78 -0
- package/dist/i18n/locales/zh-CN/registry.json +54 -0
- package/dist/i18n/locales/zh-CN/remote.json +93 -0
- package/dist/i18n/locales/zh-CN/sandbox.json +44 -0
- package/dist/i18n/locales/zh-CN/setup.json +44 -0
- package/dist/i18n/locales/zh-CN/shencha.json +14 -0
- package/dist/i18n/locales/zh-CN/skills.json +100 -0
- package/dist/i18n/locales/zh-CN/skillsSync.json +74 -0
- package/dist/i18n/locales/zh-CN/smartGuide.json +49 -0
- package/dist/i18n/locales/zh-CN/stats.json +20 -0
- package/dist/i18n/locales/zh-CN/subagent.json +69 -0
- package/dist/i18n/locales/zh-CN/superpowers.json +117 -0
- package/dist/i18n/locales/zh-CN/team.json +7 -0
- package/dist/i18n/locales/zh-CN/thinking.json +65 -0
- package/dist/i18n/locales/zh-CN/tools.json +42 -0
- package/dist/i18n/locales/zh-CN/uninstall.json +56 -0
- package/dist/i18n/locales/zh-CN/updater.json +29 -0
- package/dist/i18n/locales/zh-CN/vim.json +169 -0
- package/dist/i18n/locales/zh-CN/workflow.json +55 -0
- package/dist/i18n/locales/zh-CN/workspace.json +108 -0
- package/dist/index.d.mts +5296 -0
- package/dist/index.d.ts +5296 -0
- package/dist/index.mjs +4941 -0
- package/dist/shared/ccjk.B364Fu0N.mjs +1819 -0
- package/dist/shared/ccjk.BAGoDD49.mjs +36 -0
- package/dist/shared/ccjk.BBtCGd_g.mjs +899 -0
- package/dist/shared/ccjk.BFQ7yr5S.mjs +16 -0
- package/dist/shared/ccjk.BFxsJM0k.mjs +599 -0
- package/dist/shared/ccjk.BIxuVL3_.mjs +25 -0
- package/dist/shared/ccjk.BWFpnOr3.mjs +2195 -0
- package/dist/shared/ccjk.BoApaI4j.mjs +28 -0
- package/dist/shared/ccjk.BrPUmTqm.mjs +266 -0
- package/dist/shared/ccjk.BtB1e5jm.mjs +171 -0
- package/dist/shared/ccjk.BxSmJ8B7.mjs +243 -0
- package/dist/shared/ccjk.Bx_rmYfN.mjs +69 -0
- package/dist/shared/ccjk.C2jHOZVP.mjs +52 -0
- package/dist/shared/ccjk.CL4Yat0G.mjs +303 -0
- package/dist/shared/ccjk.CNMWk_mE.mjs +400 -0
- package/dist/shared/ccjk.COweQ1RR.mjs +5 -0
- package/dist/shared/ccjk.CePkJq2S.mjs +223 -0
- package/dist/shared/ccjk.CfKKcvWy.mjs +126 -0
- package/dist/shared/ccjk.Cjgrln_h.mjs +297 -0
- package/dist/shared/ccjk.Cjj8SVrn.mjs +54 -0
- package/dist/shared/ccjk.CvChMYvB.mjs +142 -0
- package/dist/shared/ccjk.CxpGa6MC.mjs +2724 -0
- package/dist/shared/ccjk.D6ycHbak.mjs +270 -0
- package/dist/shared/ccjk.D8ZLYSZZ.mjs +299 -0
- package/dist/shared/ccjk.DG_o24cZ.mjs +88 -0
- package/dist/shared/ccjk.DLLw-h4Y.mjs +460 -0
- package/dist/shared/ccjk.DS7UESmF.mjs +2451 -0
- package/dist/shared/ccjk.DTdjs-qK.mjs +1447 -0
- package/dist/shared/ccjk.DXRAZcix.mjs +66 -0
- package/dist/shared/ccjk.DeWpAShp.mjs +1828 -0
- package/dist/shared/ccjk.DsYaCCx4.mjs +317 -0
- package/dist/shared/ccjk.Dx-O9dWz.mjs +1051 -0
- package/dist/shared/ccjk.J8YiPsOw.mjs +259 -0
- package/dist/shared/ccjk.KfSWcGlE.mjs +38 -0
- package/dist/shared/ccjk.RyizuzOI.mjs +21 -0
- package/dist/shared/ccjk.SPoXMvZD.mjs +1242 -0
- package/dist/shared/ccjk.T_cX87dY.mjs +15 -0
- package/dist/shared/ccjk.UIvifqNE.mjs +1486 -0
- package/dist/shared/ccjk._dESH4Rk.mjs +111 -0
- package/dist/shared/ccjk.bQ7Dh1g4.mjs +249 -0
- package/dist/shared/ccjk.c-ETfBZ_.mjs +617 -0
- package/dist/shared/ccjk.gDEDGD_t.mjs +38 -0
- package/dist/shared/ccjk.hoqrwWdN.mjs +333 -0
- package/dist/shared/ccjk.waa2ikKJ.mjs +351 -0
- package/dist/templates/agents/fullstack-developer.json +70 -0
- package/dist/templates/agents/go-expert.json +69 -0
- package/dist/templates/agents/index.json +64 -0
- package/dist/templates/agents/python-expert.json +69 -0
- package/dist/templates/agents/react-specialist.json +69 -0
- package/dist/templates/agents/testing-automation-expert.json +70 -0
- package/dist/templates/agents/typescript-architect.json +69 -0
- package/dist/templates/claude-code/common/settings.json +107 -0
- package/dist/templates/hooks/post-test/coverage.json +21 -0
- package/dist/templates/hooks/post-test/summary.json +21 -0
- package/dist/templates/hooks/pre-commit/eslint.json +22 -0
- package/dist/templates/hooks/pre-commit/prettier.json +22 -0
- package/dist/templates/skills/index.json +132 -0
- package/package.json +2 -2
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
import { existsSync, readFileSync } from 'node:fs';
|
|
2
|
+
import a from './index2.mjs';
|
|
3
|
+
import { SETTINGS_FILE } from './constants.mjs';
|
|
4
|
+
import { ensureI18nInitialized, i18n } from './index5.mjs';
|
|
5
|
+
import { writeJsonConfig } from './json-config.mjs';
|
|
6
|
+
import '../shared/ccjk.BAGoDD49.mjs';
|
|
7
|
+
import 'node:os';
|
|
8
|
+
import '../shared/ccjk.bQ7Dh1g4.mjs';
|
|
9
|
+
import 'node:process';
|
|
10
|
+
import 'node:url';
|
|
11
|
+
import '../shared/ccjk.RyizuzOI.mjs';
|
|
12
|
+
import './fs-operations.mjs';
|
|
13
|
+
import 'node:crypto';
|
|
14
|
+
import 'node:fs/promises';
|
|
15
|
+
|
|
16
|
+
const ENV_KEY = "CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS";
|
|
17
|
+
function t(key, opts) {
|
|
18
|
+
return i18n.t(`agent-teams:${key}`, opts);
|
|
19
|
+
}
|
|
20
|
+
function readSettings() {
|
|
21
|
+
if (!existsSync(SETTINGS_FILE)) return {};
|
|
22
|
+
try {
|
|
23
|
+
return JSON.parse(readFileSync(SETTINGS_FILE, "utf-8"));
|
|
24
|
+
} catch {
|
|
25
|
+
return {};
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
function isAgentTeamsEnabled() {
|
|
29
|
+
const settings = readSettings();
|
|
30
|
+
return settings?.env?.[ENV_KEY] === "1";
|
|
31
|
+
}
|
|
32
|
+
function setAgentTeams(enabled) {
|
|
33
|
+
const settings = readSettings();
|
|
34
|
+
if (!settings.env) settings.env = {};
|
|
35
|
+
if (enabled) {
|
|
36
|
+
settings.env[ENV_KEY] = "1";
|
|
37
|
+
} else {
|
|
38
|
+
delete settings.env[ENV_KEY];
|
|
39
|
+
}
|
|
40
|
+
writeJsonConfig(SETTINGS_FILE, settings);
|
|
41
|
+
}
|
|
42
|
+
function getTeammateMode() {
|
|
43
|
+
const settings = readSettings();
|
|
44
|
+
return settings?.teammateMode || "auto";
|
|
45
|
+
}
|
|
46
|
+
function setTeammateMode(mode) {
|
|
47
|
+
const settings = readSettings();
|
|
48
|
+
settings.teammateMode = mode;
|
|
49
|
+
writeJsonConfig(SETTINGS_FILE, settings);
|
|
50
|
+
}
|
|
51
|
+
async function agentTeamsCommand(options) {
|
|
52
|
+
ensureI18nInitialized();
|
|
53
|
+
if (options.status) {
|
|
54
|
+
printStatus();
|
|
55
|
+
return;
|
|
56
|
+
}
|
|
57
|
+
if (options.on !== void 0 || options.off !== void 0) {
|
|
58
|
+
const enable = options.on === true;
|
|
59
|
+
setAgentTeams(enable);
|
|
60
|
+
console.log(a.green(t(enable ? "enabled" : "disabled")));
|
|
61
|
+
return;
|
|
62
|
+
}
|
|
63
|
+
if (options.mode) {
|
|
64
|
+
const valid = ["auto", "in-process", "tmux"];
|
|
65
|
+
if (!valid.includes(options.mode)) {
|
|
66
|
+
console.log(a.red(t("invalidMode")));
|
|
67
|
+
return;
|
|
68
|
+
}
|
|
69
|
+
setTeammateMode(options.mode);
|
|
70
|
+
console.log(a.green(t("modeSet", { mode: options.mode })));
|
|
71
|
+
return;
|
|
72
|
+
}
|
|
73
|
+
const current = isAgentTeamsEnabled();
|
|
74
|
+
const { default: inquirer } = await import('./index3.mjs').then(function (n) { return n.c; });
|
|
75
|
+
const { action } = await inquirer.prompt([{
|
|
76
|
+
type: "list",
|
|
77
|
+
name: "action",
|
|
78
|
+
message: t("settings"),
|
|
79
|
+
choices: [
|
|
80
|
+
{
|
|
81
|
+
name: current ? t("toggleDisable") : t("toggleEnable"),
|
|
82
|
+
value: "toggle"
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
name: t("setMode"),
|
|
86
|
+
value: "mode"
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
name: t("viewStatus"),
|
|
90
|
+
value: "status"
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
name: t("back"),
|
|
94
|
+
value: "back"
|
|
95
|
+
}
|
|
96
|
+
]
|
|
97
|
+
}]);
|
|
98
|
+
if (action === "toggle") {
|
|
99
|
+
setAgentTeams(!current);
|
|
100
|
+
console.log(a.green(t(!current ? "enabled" : "disabled")));
|
|
101
|
+
} else if (action === "mode") {
|
|
102
|
+
const currentMode = getTeammateMode();
|
|
103
|
+
const { mode } = await inquirer.prompt([{
|
|
104
|
+
type: "list",
|
|
105
|
+
name: "mode",
|
|
106
|
+
message: t("selectMode"),
|
|
107
|
+
choices: [
|
|
108
|
+
{ name: `auto ${currentMode === "auto" ? "(current)" : ""}`, value: "auto" },
|
|
109
|
+
{ name: `in-process ${currentMode === "in-process" ? "(current)" : ""}`, value: "in-process" },
|
|
110
|
+
{ name: `tmux ${currentMode === "tmux" ? "(current)" : ""}`, value: "tmux" }
|
|
111
|
+
]
|
|
112
|
+
}]);
|
|
113
|
+
setTeammateMode(mode);
|
|
114
|
+
console.log(a.green(t("modeSet", { mode })));
|
|
115
|
+
} else if (action === "status") {
|
|
116
|
+
printStatus();
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
function printStatus() {
|
|
120
|
+
const enabled = isAgentTeamsEnabled();
|
|
121
|
+
const mode = getTeammateMode();
|
|
122
|
+
console.log();
|
|
123
|
+
console.log(a.bold(t("statusTitle")));
|
|
124
|
+
console.log(a.gray("\u2500".repeat(40)));
|
|
125
|
+
console.log(` ${t("statusLabel")}: ${enabled ? a.green("\u2705 Enabled") : a.dim("\u2B1C Disabled")}`);
|
|
126
|
+
console.log(` ${t("modeLabel")}: ${a.cyan(mode)}`);
|
|
127
|
+
console.log();
|
|
128
|
+
if (!enabled) {
|
|
129
|
+
console.log(a.dim(` ${t("enableHint")}`));
|
|
130
|
+
} else {
|
|
131
|
+
console.log(a.dim(` ${t("usageHint")}`));
|
|
132
|
+
}
|
|
133
|
+
console.log();
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
export { agentTeamsCommand, getTeammateMode, isAgentTeamsEnabled, setAgentTeams, setTeammateMode };
|