claude-code-workflow 6.3.11 → 6.3.13
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/.claude/CLAUDE.md +33 -33
- package/.claude/agents/issue-plan-agent.md +77 -5
- package/.claude/agents/issue-queue-agent.md +122 -18
- package/.claude/commands/issue/execute.md +53 -40
- package/.claude/commands/issue/new.md +113 -11
- package/.claude/commands/issue/plan.md +112 -37
- package/.claude/commands/issue/queue.md +28 -18
- package/.claude/skills/software-manual/scripts/assemble_docsify.py +584 -0
- package/.claude/skills/software-manual/templates/css/docsify-base.css +984 -0
- package/.claude/skills/software-manual/templates/docsify-shell.html +466 -0
- package/.claude/workflows/cli-templates/schemas/issues-jsonl-schema.json +141 -168
- package/.claude/workflows/cli-templates/schemas/solution-schema.json +3 -2
- package/.codex/prompts/issue-execute.md +3 -3
- package/.codex/prompts/issue-queue.md +3 -3
- package/ccw/dist/commands/issue.d.ts.map +1 -1
- package/ccw/dist/commands/issue.js +2 -1
- package/ccw/dist/commands/issue.js.map +1 -1
- package/ccw/src/commands/issue.ts +2 -1
- package/ccw/src/templates/dashboard-css/33-cli-stream-viewer.css +580 -467
- package/ccw/src/templates/dashboard-js/components/cli-stream-viewer.js +532 -461
- package/ccw/src/templates/dashboard-js/components/notifications.js +774 -774
- package/ccw/src/templates/dashboard-js/i18n.js +4 -0
- package/ccw/src/templates/dashboard.html +10 -0
- package/ccw/src/tools/claude-cli-tools.ts +388 -388
- package/codex-lens/src/codexlens/__pycache__/config.cpython-313.pyc +0 -0
- package/codex-lens/src/codexlens/config.py +19 -3
- package/codex-lens/src/codexlens/search/__pycache__/ranking.cpython-313.pyc +0 -0
- package/codex-lens/src/codexlens/search/ranking.py +15 -4
- package/codex-lens/src/codexlens/semantic/__pycache__/vector_store.cpython-313.pyc +0 -0
- package/codex-lens/src/codexlens/semantic/vector_store.py +57 -47
- package/codex-lens/src/codexlens/storage/__pycache__/registry.cpython-313.pyc +0 -0
- package/codex-lens/src/codexlens/storage/registry.py +114 -101
- package/package.json +83 -83
package/package.json
CHANGED
|
@@ -1,83 +1,83 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "claude-code-workflow",
|
|
3
|
-
"version": "6.3.
|
|
4
|
-
"description": "JSON-driven multi-agent development framework with intelligent CLI orchestration (Gemini/Qwen/Codex), context-first architecture, and automated workflow execution",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"main": "ccw/src/index.js",
|
|
7
|
-
"bin": {
|
|
8
|
-
"ccw": "./ccw/bin/ccw.js",
|
|
9
|
-
"ccw-mcp": "./ccw/bin/ccw-mcp.js"
|
|
10
|
-
},
|
|
11
|
-
"scripts": {
|
|
12
|
-
"build": "tsc -p ccw/tsconfig.json",
|
|
13
|
-
"start": "node ccw/bin/ccw.js",
|
|
14
|
-
"test": "node --test ccw/tests/*.test.js",
|
|
15
|
-
"prepublishOnly": "npm run build && echo 'Ready to publish @dyw/claude-code-workflow'"
|
|
16
|
-
},
|
|
17
|
-
"keywords": [
|
|
18
|
-
"claude",
|
|
19
|
-
"workflow",
|
|
20
|
-
"ai",
|
|
21
|
-
"cli",
|
|
22
|
-
"dashboard",
|
|
23
|
-
"code-review",
|
|
24
|
-
"automation",
|
|
25
|
-
"development"
|
|
26
|
-
],
|
|
27
|
-
"author": "dyw",
|
|
28
|
-
"license": "MIT",
|
|
29
|
-
"engines": {
|
|
30
|
-
"node": ">=16.0.0"
|
|
31
|
-
},
|
|
32
|
-
"dependencies": {
|
|
33
|
-
"@modelcontextprotocol/sdk": "^1.0.4",
|
|
34
|
-
"better-sqlite3": "^11.7.0",
|
|
35
|
-
"boxen": "^7.1.0",
|
|
36
|
-
"chalk": "^5.3.0",
|
|
37
|
-
"commander": "^11.0.0",
|
|
38
|
-
"figlet": "^1.7.0",
|
|
39
|
-
"glob": "^10.3.0",
|
|
40
|
-
"gradient-string": "^2.0.2",
|
|
41
|
-
"inquirer": "^9.2.0",
|
|
42
|
-
"open": "^9.1.0",
|
|
43
|
-
"ora": "^7.0.0",
|
|
44
|
-
"zod": "^4.1.13"
|
|
45
|
-
},
|
|
46
|
-
"files": [
|
|
47
|
-
"ccw/bin/",
|
|
48
|
-
"ccw/dist/",
|
|
49
|
-
"ccw/src/",
|
|
50
|
-
".claude/agents/",
|
|
51
|
-
".claude/commands/",
|
|
52
|
-
".claude/output-styles/",
|
|
53
|
-
".claude/workflows/",
|
|
54
|
-
".claude/scripts/",
|
|
55
|
-
".claude/prompt-templates/",
|
|
56
|
-
".claude/python_script/",
|
|
57
|
-
".claude/skills/",
|
|
58
|
-
".codex/",
|
|
59
|
-
".gemini/",
|
|
60
|
-
".qwen/",
|
|
61
|
-
"codex-lens/src/codexlens/",
|
|
62
|
-
"codex-lens/pyproject.toml",
|
|
63
|
-
"ccw-litellm/src/ccw_litellm/",
|
|
64
|
-
"ccw-litellm/pyproject.toml",
|
|
65
|
-
"CLAUDE.md",
|
|
66
|
-
"README.md"
|
|
67
|
-
],
|
|
68
|
-
"repository": {
|
|
69
|
-
"type": "git",
|
|
70
|
-
"url": "git+https://github.com/catlog22/Claude-Code-Workflow.git"
|
|
71
|
-
},
|
|
72
|
-
"bugs": {
|
|
73
|
-
"url": "https://github.com/catlog22/Claude-Code-Workflow/issues"
|
|
74
|
-
},
|
|
75
|
-
"homepage": "https://github.com/catlog22/Claude-Code-Workflow#readme",
|
|
76
|
-
"devDependencies": {
|
|
77
|
-
"@types/better-sqlite3": "^7.6.12",
|
|
78
|
-
"@types/gradient-string": "^1.1.6",
|
|
79
|
-
"@types/inquirer": "^9.0.9",
|
|
80
|
-
"@types/node": "^25.0.1",
|
|
81
|
-
"typescript": "^5.9.3"
|
|
82
|
-
}
|
|
83
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "claude-code-workflow",
|
|
3
|
+
"version": "6.3.13",
|
|
4
|
+
"description": "JSON-driven multi-agent development framework with intelligent CLI orchestration (Gemini/Qwen/Codex), context-first architecture, and automated workflow execution",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "ccw/src/index.js",
|
|
7
|
+
"bin": {
|
|
8
|
+
"ccw": "./ccw/bin/ccw.js",
|
|
9
|
+
"ccw-mcp": "./ccw/bin/ccw-mcp.js"
|
|
10
|
+
},
|
|
11
|
+
"scripts": {
|
|
12
|
+
"build": "tsc -p ccw/tsconfig.json",
|
|
13
|
+
"start": "node ccw/bin/ccw.js",
|
|
14
|
+
"test": "node --experimental-strip-types --test ccw/tests/*.test.js",
|
|
15
|
+
"prepublishOnly": "npm run build && echo 'Ready to publish @dyw/claude-code-workflow'"
|
|
16
|
+
},
|
|
17
|
+
"keywords": [
|
|
18
|
+
"claude",
|
|
19
|
+
"workflow",
|
|
20
|
+
"ai",
|
|
21
|
+
"cli",
|
|
22
|
+
"dashboard",
|
|
23
|
+
"code-review",
|
|
24
|
+
"automation",
|
|
25
|
+
"development"
|
|
26
|
+
],
|
|
27
|
+
"author": "dyw",
|
|
28
|
+
"license": "MIT",
|
|
29
|
+
"engines": {
|
|
30
|
+
"node": ">=16.0.0"
|
|
31
|
+
},
|
|
32
|
+
"dependencies": {
|
|
33
|
+
"@modelcontextprotocol/sdk": "^1.0.4",
|
|
34
|
+
"better-sqlite3": "^11.7.0",
|
|
35
|
+
"boxen": "^7.1.0",
|
|
36
|
+
"chalk": "^5.3.0",
|
|
37
|
+
"commander": "^11.0.0",
|
|
38
|
+
"figlet": "^1.7.0",
|
|
39
|
+
"glob": "^10.3.0",
|
|
40
|
+
"gradient-string": "^2.0.2",
|
|
41
|
+
"inquirer": "^9.2.0",
|
|
42
|
+
"open": "^9.1.0",
|
|
43
|
+
"ora": "^7.0.0",
|
|
44
|
+
"zod": "^4.1.13"
|
|
45
|
+
},
|
|
46
|
+
"files": [
|
|
47
|
+
"ccw/bin/",
|
|
48
|
+
"ccw/dist/",
|
|
49
|
+
"ccw/src/",
|
|
50
|
+
".claude/agents/",
|
|
51
|
+
".claude/commands/",
|
|
52
|
+
".claude/output-styles/",
|
|
53
|
+
".claude/workflows/",
|
|
54
|
+
".claude/scripts/",
|
|
55
|
+
".claude/prompt-templates/",
|
|
56
|
+
".claude/python_script/",
|
|
57
|
+
".claude/skills/",
|
|
58
|
+
".codex/",
|
|
59
|
+
".gemini/",
|
|
60
|
+
".qwen/",
|
|
61
|
+
"codex-lens/src/codexlens/",
|
|
62
|
+
"codex-lens/pyproject.toml",
|
|
63
|
+
"ccw-litellm/src/ccw_litellm/",
|
|
64
|
+
"ccw-litellm/pyproject.toml",
|
|
65
|
+
"CLAUDE.md",
|
|
66
|
+
"README.md"
|
|
67
|
+
],
|
|
68
|
+
"repository": {
|
|
69
|
+
"type": "git",
|
|
70
|
+
"url": "git+https://github.com/catlog22/Claude-Code-Workflow.git"
|
|
71
|
+
},
|
|
72
|
+
"bugs": {
|
|
73
|
+
"url": "https://github.com/catlog22/Claude-Code-Workflow/issues"
|
|
74
|
+
},
|
|
75
|
+
"homepage": "https://github.com/catlog22/Claude-Code-Workflow#readme",
|
|
76
|
+
"devDependencies": {
|
|
77
|
+
"@types/better-sqlite3": "^7.6.12",
|
|
78
|
+
"@types/gradient-string": "^1.1.6",
|
|
79
|
+
"@types/inquirer": "^9.0.9",
|
|
80
|
+
"@types/node": "^25.0.1",
|
|
81
|
+
"typescript": "^5.9.3"
|
|
82
|
+
}
|
|
83
|
+
}
|