claude-code-workflow 6.3.24 → 6.3.25

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.
@@ -0,0 +1,350 @@
1
+ # BBCode Template
2
+
3
+ 论坛优化的 BBCode + Markdown 混合模板(像素级字号)。
4
+
5
+ ## 核心规则
6
+
7
+ ### 字号体系 (Pixels)
8
+
9
+ | 元素 | Size | 说明 |
10
+ |------|------|------|
11
+ | 主标题 | 150 | 文档标题 |
12
+ | 章节标题 | 120 | H2 级别 |
13
+ | 子标题 | 100 | H3 级别 |
14
+ | 正文 | (默认) | 不指定 |
15
+ | 备注 | 80 | 灰色小字 |
16
+
17
+ ### 禁止使用
18
+
19
+ - `[align]` - 不渲染
20
+ - `[hr]` - 不渲染,用 `---`
21
+ - `[table]` - 支持有限
22
+ - HTML 标签
23
+
24
+ ---
25
+
26
+ ## 文档模板
27
+
28
+ ### 基础文档结构
29
+
30
+ ```bbcode
31
+ [size=150][color=#2196F3][b]{{title}}[/b][/color][/size]
32
+
33
+ [size=80][color=gray]{{metadata}}[/color][/size]
34
+
35
+ ---
36
+
37
+ {{introduction}}
38
+
39
+ ---
40
+
41
+ [size=120][color=#2196F3][b]{{section1_title}}[/b][/color][/size]
42
+
43
+ {{section1_content}}
44
+
45
+ ---
46
+
47
+ [size=120][color=#2196F3][b]{{section2_title}}[/b][/color][/size]
48
+
49
+ {{section2_content}}
50
+
51
+ ---
52
+
53
+ [size=80][color=gray]— 全文完 —[/color][/size]
54
+ ```
55
+
56
+ ### 带目录的文档
57
+
58
+ ```bbcode
59
+ [size=150][color=#2196F3][b]{{title}}[/b][/color][/size]
60
+
61
+ [size=80][color=gray]{{author}} | {{date}}[/color][/size]
62
+
63
+ ---
64
+
65
+ [size=100][b]📋 目录[/b][/size]
66
+
67
+ • {{section1_title}}
68
+ • {{section2_title}}
69
+ • {{section3_title}}
70
+
71
+ ---
72
+
73
+ [size=120][color=#2196F3][b]{{section1_title}}[/b][/color][/size]
74
+
75
+ {{section1_content}}
76
+
77
+ ---
78
+
79
+ [size=120][color=#2196F3][b]{{section2_title}}[/b][/color][/size]
80
+
81
+ {{section2_content}}
82
+
83
+ ---
84
+
85
+ [size=120][color=#2196F3][b]{{section3_title}}[/b][/color][/size]
86
+
87
+ {{section3_content}}
88
+
89
+ ---
90
+
91
+ [size=80][color=gray]— 全文完 —[/color][/size]
92
+ ```
93
+
94
+ ---
95
+
96
+ ## Callout 模板
97
+
98
+ ### 提示 (Note/Info)
99
+
100
+ ```bbcode
101
+ [quote]
102
+ [size=100][color=#2196F3][b]📝 {{title}}[/b][/color][/size]
103
+
104
+ {{content}}
105
+ [/quote]
106
+ ```
107
+
108
+ ### 技巧 (Tip/Hint)
109
+
110
+ ```bbcode
111
+ [quote]
112
+ [size=100][color=#4CAF50][b]💡 {{title}}[/b][/color][/size]
113
+
114
+ {{content}}
115
+ [/quote]
116
+ ```
117
+
118
+ ### 成功 (Success)
119
+
120
+ ```bbcode
121
+ [quote]
122
+ [size=100][color=#4CAF50][b]✅ {{title}}[/b][/color][/size]
123
+
124
+ {{content}}
125
+ [/quote]
126
+ ```
127
+
128
+ ### 警告 (Warning/Caution)
129
+
130
+ ```bbcode
131
+ [quote]
132
+ [size=100][color=#FF9800][b]⚠️ {{title}}[/b][/color][/size]
133
+
134
+ {{content}}
135
+ [/quote]
136
+ ```
137
+
138
+ ### 危险/错误 (Danger/Error)
139
+
140
+ ```bbcode
141
+ [quote]
142
+ [size=100][color=#F44336][b]❌ {{title}}[/b][/color][/size]
143
+
144
+ {{content}}
145
+ [/quote]
146
+ ```
147
+
148
+ ### 示例 (Example)
149
+
150
+ ```bbcode
151
+ [quote]
152
+ [size=100][color=#9C27B0][b]📋 {{title}}[/b][/color][/size]
153
+
154
+ {{content}}
155
+ [/quote]
156
+ ```
157
+
158
+ ### 问题 (Question/FAQ)
159
+
160
+ ```bbcode
161
+ [quote]
162
+ [size=100][color=#FF9800][b]❓ {{title}}[/b][/color][/size]
163
+
164
+ {{content}}
165
+ [/quote]
166
+ ```
167
+
168
+ ### 重要 (Important)
169
+
170
+ ```bbcode
171
+ [quote]
172
+ [size=100][color=#F44336][b]⭐ {{title}}[/b][/color][/size]
173
+
174
+ {{content}}
175
+ [/quote]
176
+ ```
177
+
178
+ ---
179
+
180
+ ## 代码展示模板
181
+
182
+ ### 单代码块
183
+
184
+ ```bbcode
185
+ [size=100][color=#9C27B0][b]代码示例[/b][/color][/size]
186
+
187
+ [code]
188
+ {{code}}
189
+ [/code]
190
+
191
+ [size=80][color=gray]说明: {{description}}[/color][/size]
192
+ ```
193
+
194
+ ### 带标题的代码
195
+
196
+ ```bbcode
197
+ [size=100][b]{{code_title}}[/b][/size]
198
+
199
+ [code]
200
+ {{code}}
201
+ [/code]
202
+ ```
203
+
204
+ ---
205
+
206
+ ## 特性展示模板
207
+
208
+ ### 特性列表
209
+
210
+ ```bbcode
211
+ [size=120][color=#2196F3][b]功能特性[/b][/color][/size]
212
+
213
+ • [color=#4CAF50][b]✨ {{feature1}}[/b][/color] — {{desc1}}
214
+ • [color=#2196F3][b]🚀 {{feature2}}[/b][/color] — {{desc2}}
215
+ • [color=#FF9800][b]⚡ {{feature3}}[/b][/color] — {{desc3}}
216
+ ```
217
+
218
+ ### 详细特性卡片
219
+
220
+ ```bbcode
221
+ [size=120][color=#2196F3][b]功能特性[/b][/color][/size]
222
+
223
+ [quote]
224
+ [size=100][color=#4CAF50][b]✨ {{feature1_title}}[/b][/color][/size]
225
+
226
+ {{feature1_description}}
227
+
228
+ [size=80][color=gray]适用场景: {{feature1_use_case}}[/color][/size]
229
+ [/quote]
230
+
231
+ [quote]
232
+ [size=100][color=#2196F3][b]🚀 {{feature2_title}}[/b][/color][/size]
233
+
234
+ {{feature2_description}}
235
+
236
+ [size=80][color=gray]适用场景: {{feature2_use_case}}[/color][/size]
237
+ [/quote]
238
+ ```
239
+
240
+ ---
241
+
242
+ ## 步骤指南模板
243
+
244
+ ```bbcode
245
+ [size=120][color=#2196F3][b]操作步骤[/b][/color][/size]
246
+
247
+ [size=100][color=#2196F3][b]步骤 1: {{step1_title}}[/b][/color][/size]
248
+
249
+ {{step1_content}}
250
+
251
+ [quote]
252
+ [size=100][color=#FF9800][b]💡 提示[/b][/color][/size]
253
+
254
+ {{step1_tip}}
255
+ [/quote]
256
+
257
+ [size=100][color=#2196F3][b]步骤 2: {{step2_title}}[/b][/color][/size]
258
+
259
+ {{step2_content}}
260
+
261
+ [size=100][color=#2196F3][b]步骤 3: {{step3_title}}[/b][/color][/size]
262
+
263
+ {{step3_content}}
264
+
265
+ ---
266
+
267
+ [color=#4CAF50][b]✅ 完成![/b][/color] {{completion_message}}
268
+ ```
269
+
270
+ ---
271
+
272
+ ## 版本更新模板
273
+
274
+ ```bbcode
275
+ [size=150][color=#673AB7][b]🎉 版本 {{version}} 更新日志[/b][/color][/size]
276
+
277
+ ---
278
+
279
+ [size=120][color=#4CAF50][b]✨ 新功能[/b][/color][/size]
280
+
281
+ • [b]{{new_feature1}}[/b]: {{new_feature1_desc}}
282
+ • [b]{{new_feature2}}[/b]: {{new_feature2_desc}}
283
+
284
+ [size=120][color=#2196F3][b]🔧 改进[/b][/color][/size]
285
+
286
+ • {{improvement1}}
287
+ • {{improvement2}}
288
+
289
+ [size=120][color=#F44336][b]🐛 修复[/b][/color][/size]
290
+
291
+ • {{bugfix1}}
292
+ • {{bugfix2}}
293
+
294
+ ---
295
+
296
+ [url={{download_url}}][b]📥 立即下载[/b][/url]
297
+ ```
298
+
299
+ ---
300
+
301
+ ## FAQ 模板
302
+
303
+ ```bbcode
304
+ [size=120][color=#2196F3][b]❓ 常见问题[/b][/color][/size]
305
+
306
+ ---
307
+
308
+ [size=100][color=#333][b]Q: {{question1}}[/b][/color][/size]
309
+
310
+ [b]A:[/b] {{answer1}}
311
+
312
+ ---
313
+
314
+ [size=100][color=#333][b]Q: {{question2}}[/b][/color][/size]
315
+
316
+ [b]A:[/b] {{answer2}}
317
+
318
+ ---
319
+
320
+ [size=100][color=#333][b]Q: {{question3}}[/b][/color][/size]
321
+
322
+ [b]A:[/b] {{answer3}}
323
+ ```
324
+
325
+ ---
326
+
327
+ ## 转换检查清单
328
+
329
+ ### 必须检查
330
+
331
+ - [ ] 标题使用像素值 (150/120/100)
332
+ - [ ] 分隔线使用 `---`
333
+ - [ ] 未使用 `[align]`
334
+ - [ ] 未使用 `[hr]`
335
+ - [ ] 未使用 HTML 标签
336
+ - [ ] Callout 标题 size=100
337
+ - [ ] 灰色备注 size=80
338
+
339
+ ### 颜色规范
340
+
341
+ | 用途 | 颜色 |
342
+ |------|------|
343
+ | 主标题 | #2196F3 |
344
+ | 章节标题 | #2196F3 |
345
+ | 子标题 | #333 |
346
+ | 成功/提示 | #4CAF50 |
347
+ | 警告 | #FF9800 |
348
+ | 错误/危险 | #F44336 |
349
+ | 示例 | #9C27B0 |
350
+ | 备注 | gray |
package/package.json CHANGED
@@ -1,91 +1,91 @@
1
- {
2
- "name": "claude-code-workflow",
3
- "version": "6.3.24",
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
- "test:visual": "node --experimental-strip-types --test ccw/tests/visual/**/*.visual.test.ts",
16
- "test:e2e": "node --experimental-strip-types --test ccw/tests/e2e/*.e2e.test.ts",
17
- "prepublishOnly": "npm run build && echo 'Ready to publish @dyw/claude-code-workflow'"
18
- },
19
- "keywords": [
20
- "claude",
21
- "workflow",
22
- "ai",
23
- "cli",
24
- "dashboard",
25
- "code-review",
26
- "automation",
27
- "development"
28
- ],
29
- "author": "dyw",
30
- "license": "MIT",
31
- "engines": {
32
- "node": ">=16.0.0"
33
- },
34
- "dependencies": {
35
- "@modelcontextprotocol/sdk": "^1.0.4",
36
- "better-sqlite3": "^11.7.0",
37
- "boxen": "^7.1.0",
38
- "chalk": "^5.3.0",
39
- "commander": "^11.0.0",
40
- "figlet": "^1.7.0",
41
- "glob": "^10.3.0",
42
- "gradient-string": "^2.0.2",
43
- "inquirer": "^9.2.0",
44
- "jsonwebtoken": "^9.0.3",
45
- "open": "^9.1.0",
46
- "ora": "^7.0.0",
47
- "zod": "^4.1.13"
48
- },
49
- "files": [
50
- "ccw/bin/",
51
- "ccw/dist/",
52
- "ccw/src/",
53
- ".claude/agents/",
54
- ".claude/commands/",
55
- ".claude/output-styles/",
56
- ".claude/workflows/",
57
- ".claude/scripts/",
58
- ".claude/prompt-templates/",
59
- ".claude/python_script/",
60
- ".claude/skills/",
61
- ".codex/",
62
- ".gemini/",
63
- ".qwen/",
64
- "codex-lens/src/codexlens/",
65
- "codex-lens/pyproject.toml",
66
- "ccw-litellm/src/ccw_litellm/",
67
- "ccw-litellm/pyproject.toml",
68
- "CLAUDE.md",
69
- "README.md"
70
- ],
71
- "repository": {
72
- "type": "git",
73
- "url": "git+https://github.com/catlog22/Claude-Code-Workflow.git"
74
- },
75
- "bugs": {
76
- "url": "https://github.com/catlog22/Claude-Code-Workflow/issues"
77
- },
78
- "homepage": "https://github.com/catlog22/Claude-Code-Workflow#readme",
79
- "devDependencies": {
80
- "@playwright/test": "^1.57.0",
81
- "@types/better-sqlite3": "^7.6.12",
82
- "@types/gradient-string": "^1.1.6",
83
- "@types/inquirer": "^9.0.9",
84
- "@types/jsonwebtoken": "^9.0.10",
85
- "@types/node": "^25.0.1",
86
- "pixelmatch": "^7.1.0",
87
- "playwright": "^1.57.0",
88
- "pngjs": "^7.0.0",
89
- "typescript": "^5.9.3"
90
- }
91
- }
1
+ {
2
+ "name": "claude-code-workflow",
3
+ "version": "6.3.25",
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
+ "test:visual": "node --experimental-strip-types --test ccw/tests/visual/**/*.visual.test.ts",
16
+ "test:e2e": "node --experimental-strip-types --test ccw/tests/e2e/*.e2e.test.ts",
17
+ "prepublishOnly": "npm run build && echo 'Ready to publish @dyw/claude-code-workflow'"
18
+ },
19
+ "keywords": [
20
+ "claude",
21
+ "workflow",
22
+ "ai",
23
+ "cli",
24
+ "dashboard",
25
+ "code-review",
26
+ "automation",
27
+ "development"
28
+ ],
29
+ "author": "dyw",
30
+ "license": "MIT",
31
+ "engines": {
32
+ "node": ">=16.0.0"
33
+ },
34
+ "dependencies": {
35
+ "@modelcontextprotocol/sdk": "^1.0.4",
36
+ "better-sqlite3": "^11.7.0",
37
+ "boxen": "^7.1.0",
38
+ "chalk": "^5.3.0",
39
+ "commander": "^11.0.0",
40
+ "figlet": "^1.7.0",
41
+ "glob": "^10.3.0",
42
+ "gradient-string": "^2.0.2",
43
+ "inquirer": "^9.2.0",
44
+ "jsonwebtoken": "^9.0.3",
45
+ "open": "^9.1.0",
46
+ "ora": "^7.0.0",
47
+ "zod": "^4.1.13"
48
+ },
49
+ "files": [
50
+ "ccw/bin/",
51
+ "ccw/dist/",
52
+ "ccw/src/",
53
+ ".claude/agents/",
54
+ ".claude/commands/",
55
+ ".claude/output-styles/",
56
+ ".claude/workflows/",
57
+ ".claude/scripts/",
58
+ ".claude/prompt-templates/",
59
+ ".claude/python_script/",
60
+ ".claude/skills/",
61
+ ".codex/",
62
+ ".gemini/",
63
+ ".qwen/",
64
+ "codex-lens/src/codexlens/",
65
+ "codex-lens/pyproject.toml",
66
+ "ccw-litellm/src/ccw_litellm/",
67
+ "ccw-litellm/pyproject.toml",
68
+ "CLAUDE.md",
69
+ "README.md"
70
+ ],
71
+ "repository": {
72
+ "type": "git",
73
+ "url": "git+https://github.com/catlog22/Claude-Code-Workflow.git"
74
+ },
75
+ "bugs": {
76
+ "url": "https://github.com/catlog22/Claude-Code-Workflow/issues"
77
+ },
78
+ "homepage": "https://github.com/catlog22/Claude-Code-Workflow#readme",
79
+ "devDependencies": {
80
+ "@playwright/test": "^1.57.0",
81
+ "@types/better-sqlite3": "^7.6.12",
82
+ "@types/gradient-string": "^1.1.6",
83
+ "@types/inquirer": "^9.0.9",
84
+ "@types/jsonwebtoken": "^9.0.10",
85
+ "@types/node": "^25.0.1",
86
+ "pixelmatch": "^7.1.0",
87
+ "playwright": "^1.57.0",
88
+ "pngjs": "^7.0.0",
89
+ "typescript": "^5.9.3"
90
+ }
91
+ }