ccg-workflow 3.0.6 → 3.0.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/dist/cli.mjs +1 -1
- package/dist/index.mjs +1 -1
- package/dist/shared/{ccg-workflow.CAM1phsy.mjs → ccg-workflow.HyaKbgbr.mjs} +1 -1
- package/package.json +1 -1
- package/templates/codex/agents/ccg-implement.toml +0 -7
- package/templates/codex/agents/ccg-research.toml +0 -7
- package/templates/codex/agents/ccg-review.toml +0 -7
package/dist/cli.mjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import cac from 'cac';
|
|
3
3
|
import ansis from 'ansis';
|
|
4
|
-
import { A as diagnoseMcpConfig, B as isWindows, C as readClaudeCodeConfig, D as fixWindowsMcpConfig, E as writeClaudeCodeConfig, r as readCcgConfig, b as initI18n, a as i18n, s as showMainMenu, i as init, F as configMcp, G as version } from './shared/ccg-workflow.
|
|
4
|
+
import { A as diagnoseMcpConfig, B as isWindows, C as readClaudeCodeConfig, D as fixWindowsMcpConfig, E as writeClaudeCodeConfig, r as readCcgConfig, b as initI18n, a as i18n, s as showMainMenu, i as init, F as configMcp, G as version } from './shared/ccg-workflow.HyaKbgbr.mjs';
|
|
5
5
|
import 'inquirer';
|
|
6
6
|
import 'ora';
|
|
7
7
|
import 'node:child_process';
|
package/dist/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { c as changeLanguage, y as checkForUpdates, z as compareVersions, d as createDefaultConfig, e as createDefaultRouting, g as getCcgDir, f as getConfigPath, v as getCurrentVersion, x as getLatestVersion, j as getWorkflowById, h as getWorkflowConfigs, a as i18n, i as init, b as initI18n, l as installAceTool, m as installAceToolRs, n as installCodexMode, k as installWorkflows, q as migrateToV1_4_0, t as needsMigration, r as readCcgConfig, s as showMainMenu, p as uninstallAceTool, o as uninstallWorkflows, u as update, w as writeCcgConfig } from './shared/ccg-workflow.
|
|
1
|
+
export { c as changeLanguage, y as checkForUpdates, z as compareVersions, d as createDefaultConfig, e as createDefaultRouting, g as getCcgDir, f as getConfigPath, v as getCurrentVersion, x as getLatestVersion, j as getWorkflowById, h as getWorkflowConfigs, a as i18n, i as init, b as initI18n, l as installAceTool, m as installAceToolRs, n as installCodexMode, k as installWorkflows, q as migrateToV1_4_0, t as needsMigration, r as readCcgConfig, s as showMainMenu, p as uninstallAceTool, o as uninstallWorkflows, u as update, w as writeCcgConfig } from './shared/ccg-workflow.HyaKbgbr.mjs';
|
|
2
2
|
import 'ansis';
|
|
3
3
|
import 'inquirer';
|
|
4
4
|
import 'ora';
|
|
@@ -10,7 +10,7 @@ import fs from 'fs-extra';
|
|
|
10
10
|
import { parse, stringify } from 'smol-toml';
|
|
11
11
|
import i18next from 'i18next';
|
|
12
12
|
|
|
13
|
-
const version = "3.0.
|
|
13
|
+
const version = "3.0.7";
|
|
14
14
|
|
|
15
15
|
function cmd(id, order, category, name, nameEn, description, descriptionEn, cmdOverride) {
|
|
16
16
|
return {
|
package/package.json
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
# CCG Implementation Sub-Agent
|
|
2
|
-
# Spawned by the lead Codex agent for parallel file implementation
|
|
3
2
|
|
|
4
3
|
name = "ccg-implement"
|
|
5
4
|
description = "Implementation worker — writes code for assigned files following the plan"
|
|
@@ -16,9 +15,3 @@ You are a CCG implementation worker. You have been dispatched by the lead agent.
|
|
|
16
15
|
## You are NOT the lead agent
|
|
17
16
|
Do NOT spawn subagents. Do NOT call codeagent-wrapper. Just write the code assigned to you.
|
|
18
17
|
"""
|
|
19
|
-
|
|
20
|
-
[sandbox]
|
|
21
|
-
mode = "workspace-write"
|
|
22
|
-
|
|
23
|
-
[features]
|
|
24
|
-
multi_agent = false
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
# CCG Research Sub-Agent
|
|
2
|
-
# Spawned by the lead Codex agent for codebase exploration
|
|
3
2
|
|
|
4
3
|
name = "ccg-research"
|
|
5
4
|
description = "Research worker — explores codebase, maps dependencies, gathers context"
|
|
@@ -21,9 +20,3 @@ RISKS: [potential conflicts or breaking changes]
|
|
|
21
20
|
## You are NOT the lead agent
|
|
22
21
|
Do NOT spawn subagents. Do NOT modify any files. Read only.
|
|
23
22
|
"""
|
|
24
|
-
|
|
25
|
-
[sandbox]
|
|
26
|
-
mode = "read-only"
|
|
27
|
-
|
|
28
|
-
[features]
|
|
29
|
-
multi_agent = false
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
# CCG Review Sub-Agent
|
|
2
|
-
# Spawned by the lead Codex agent for code quality checking
|
|
3
2
|
|
|
4
3
|
name = "ccg-review"
|
|
5
4
|
description = "Review worker — runs lint, typecheck, tests and reports findings"
|
|
@@ -23,9 +22,3 @@ Details: [list of findings with file:line]
|
|
|
23
22
|
## You are NOT the lead agent
|
|
24
23
|
Do NOT spawn subagents. Do NOT call codeagent-wrapper.
|
|
25
24
|
"""
|
|
26
|
-
|
|
27
|
-
[sandbox]
|
|
28
|
-
mode = "workspace-write"
|
|
29
|
-
|
|
30
|
-
[features]
|
|
31
|
-
multi_agent = false
|