claude-code-workflow 6.0.1 → 6.0.2
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/ccw/package.json +47 -0
- package/package.json +2 -1
package/ccw/package.json
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "ccw",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Claude Code Workflow CLI - Dashboard viewer for workflow sessions and reviews",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "src/index.js",
|
|
7
|
+
"bin": {
|
|
8
|
+
"ccw": "./bin/ccw.js"
|
|
9
|
+
},
|
|
10
|
+
"scripts": {
|
|
11
|
+
"test": "node --test",
|
|
12
|
+
"lint": "eslint src/"
|
|
13
|
+
},
|
|
14
|
+
"keywords": [
|
|
15
|
+
"claude",
|
|
16
|
+
"workflow",
|
|
17
|
+
"cli",
|
|
18
|
+
"dashboard",
|
|
19
|
+
"code-review"
|
|
20
|
+
],
|
|
21
|
+
"author": "Claude Code Workflow",
|
|
22
|
+
"license": "MIT",
|
|
23
|
+
"engines": {
|
|
24
|
+
"node": ">=16.0.0"
|
|
25
|
+
},
|
|
26
|
+
"dependencies": {
|
|
27
|
+
"commander": "^11.0.0",
|
|
28
|
+
"open": "^9.1.0",
|
|
29
|
+
"chalk": "^5.3.0",
|
|
30
|
+
"glob": "^10.3.0",
|
|
31
|
+
"inquirer": "^9.2.0",
|
|
32
|
+
"ora": "^7.0.0",
|
|
33
|
+
"figlet": "^1.7.0",
|
|
34
|
+
"boxen": "^7.1.0",
|
|
35
|
+
"gradient-string": "^2.0.2"
|
|
36
|
+
},
|
|
37
|
+
"files": [
|
|
38
|
+
"bin/",
|
|
39
|
+
"src/",
|
|
40
|
+
"README.md",
|
|
41
|
+
"LICENSE"
|
|
42
|
+
],
|
|
43
|
+
"repository": {
|
|
44
|
+
"type": "git",
|
|
45
|
+
"url": "https://github.com/claude-code-workflow/ccw"
|
|
46
|
+
}
|
|
47
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-code-workflow",
|
|
3
|
-
"version": "6.0.
|
|
3
|
+
"version": "6.0.2",
|
|
4
4
|
"description": "JSON-driven multi-agent development framework with intelligent CLI orchestration (Gemini/Qwen/Codex), context-first architecture, and automated workflow execution",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "ccw/src/index.js",
|
|
@@ -41,6 +41,7 @@
|
|
|
41
41
|
"files": [
|
|
42
42
|
"ccw/bin/",
|
|
43
43
|
"ccw/src/",
|
|
44
|
+
"ccw/package.json",
|
|
44
45
|
".claude/agents/",
|
|
45
46
|
".claude/commands/",
|
|
46
47
|
".claude/output-styles/",
|