ccg-workflow 3.0.5 → 3.0.6
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.B4dDUxv8.mjs → ccg-workflow.CAM1phsy.mjs} +1 -1
- package/package.json +1 -1
- package/templates/codex/agents/ccg-implement.toml +7 -9
- package/templates/codex/agents/ccg-research.toml +7 -9
- package/templates/codex/agents/ccg-review.toml +7 -9
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.CAM1phsy.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.CAM1phsy.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.6";
|
|
14
14
|
|
|
15
15
|
function cmd(id, order, category, name, nameEn, description, descriptionEn, cmdOverride) {
|
|
16
16
|
return {
|
package/package.json
CHANGED
|
@@ -3,15 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
name = "ccg-implement"
|
|
5
5
|
description = "Implementation worker — writes code for assigned files following the plan"
|
|
6
|
-
|
|
7
|
-
[sandbox]
|
|
8
|
-
mode = "workspace-write"
|
|
9
|
-
|
|
10
|
-
[features]
|
|
11
|
-
multi_agent = false # Prevent recursion — workers don't spawn workers
|
|
12
|
-
|
|
13
|
-
[developer_instructions]
|
|
14
|
-
text = """
|
|
6
|
+
developer_instructions = """
|
|
15
7
|
You are a CCG implementation worker. You have been dispatched by the lead agent.
|
|
16
8
|
|
|
17
9
|
## Rules
|
|
@@ -24,3 +16,9 @@ You are a CCG implementation worker. You have been dispatched by the lead agent.
|
|
|
24
16
|
## You are NOT the lead agent
|
|
25
17
|
Do NOT spawn subagents. Do NOT call codeagent-wrapper. Just write the code assigned to you.
|
|
26
18
|
"""
|
|
19
|
+
|
|
20
|
+
[sandbox]
|
|
21
|
+
mode = "workspace-write"
|
|
22
|
+
|
|
23
|
+
[features]
|
|
24
|
+
multi_agent = false
|
|
@@ -3,15 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
name = "ccg-research"
|
|
5
5
|
description = "Research worker — explores codebase, maps dependencies, gathers context"
|
|
6
|
-
|
|
7
|
-
[sandbox]
|
|
8
|
-
mode = "read-only" # Research never writes
|
|
9
|
-
|
|
10
|
-
[features]
|
|
11
|
-
multi_agent = false
|
|
12
|
-
|
|
13
|
-
[developer_instructions]
|
|
14
|
-
text = """
|
|
6
|
+
developer_instructions = """
|
|
15
7
|
You are a CCG research worker. You have been dispatched to gather information.
|
|
16
8
|
|
|
17
9
|
## Steps
|
|
@@ -29,3 +21,9 @@ RISKS: [potential conflicts or breaking changes]
|
|
|
29
21
|
## You are NOT the lead agent
|
|
30
22
|
Do NOT spawn subagents. Do NOT modify any files. Read only.
|
|
31
23
|
"""
|
|
24
|
+
|
|
25
|
+
[sandbox]
|
|
26
|
+
mode = "read-only"
|
|
27
|
+
|
|
28
|
+
[features]
|
|
29
|
+
multi_agent = false
|
|
@@ -3,15 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
name = "ccg-review"
|
|
5
5
|
description = "Review worker — runs lint, typecheck, tests and reports findings"
|
|
6
|
-
|
|
7
|
-
[sandbox]
|
|
8
|
-
mode = "workspace-write" # Needs write to auto-fix lint issues
|
|
9
|
-
|
|
10
|
-
[features]
|
|
11
|
-
multi_agent = false
|
|
12
|
-
|
|
13
|
-
[developer_instructions]
|
|
14
|
-
text = """
|
|
6
|
+
developer_instructions = """
|
|
15
7
|
You are a CCG review worker. You have been dispatched to verify code quality.
|
|
16
8
|
|
|
17
9
|
## Steps
|
|
@@ -31,3 +23,9 @@ Details: [list of findings with file:line]
|
|
|
31
23
|
## You are NOT the lead agent
|
|
32
24
|
Do NOT spawn subagents. Do NOT call codeagent-wrapper.
|
|
33
25
|
"""
|
|
26
|
+
|
|
27
|
+
[sandbox]
|
|
28
|
+
mode = "workspace-write"
|
|
29
|
+
|
|
30
|
+
[features]
|
|
31
|
+
multi_agent = false
|