ccg-workflow 2.1.16 → 3.0.1

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.
Files changed (45) hide show
  1. package/README.md +119 -250
  2. package/README.zh-CN.md +125 -258
  3. package/dist/cli.mjs +1 -1
  4. package/dist/index.mjs +1 -1
  5. package/dist/shared/{ccg-workflow.CewMlBCj.mjs → ccg-workflow.2vO_S-e7.mjs} +160 -34
  6. package/package.json +6 -30
  7. package/templates/commands/go.md +205 -0
  8. package/templates/commands-legacy/team.md +475 -0
  9. package/templates/engine/model-router.md +117 -0
  10. package/templates/engine/phase-guide.md +95 -0
  11. package/templates/engine/strategies/debug-investigate.md +162 -0
  12. package/templates/engine/strategies/deep-research.md +141 -0
  13. package/templates/engine/strategies/direct-fix.md +108 -0
  14. package/templates/engine/strategies/full-collaborate.md +305 -0
  15. package/templates/engine/strategies/git-action.md +43 -0
  16. package/templates/engine/strategies/guided-develop.md +214 -0
  17. package/templates/engine/strategies/optimize-measure.md +103 -0
  18. package/templates/engine/strategies/quick-implement.md +96 -0
  19. package/templates/engine/strategies/refactor-safely.md +163 -0
  20. package/templates/engine/strategies/review-audit.md +116 -0
  21. package/templates/hooks/session-start.js +100 -0
  22. package/templates/hooks/skill-router.js +144 -0
  23. package/templates/hooks/subagent-context.js +118 -0
  24. package/templates/hooks/task-utils.js +167 -0
  25. package/templates/hooks/workflow-state.js +39 -0
  26. package/templates/spec/backend/index.md +31 -0
  27. package/templates/spec/frontend/index.md +31 -0
  28. package/templates/spec/guides/index.md +30 -0
  29. /package/templates/{commands → commands-legacy}/analyze.md +0 -0
  30. /package/templates/{commands → commands-legacy}/backend.md +0 -0
  31. /package/templates/{commands → commands-legacy}/codex-exec.md +0 -0
  32. /package/templates/{commands → commands-legacy}/debug.md +0 -0
  33. /package/templates/{commands → commands-legacy}/enhance.md +0 -0
  34. /package/templates/{commands → commands-legacy}/execute.md +0 -0
  35. /package/templates/{commands → commands-legacy}/feat.md +0 -0
  36. /package/templates/{commands → commands-legacy}/frontend.md +0 -0
  37. /package/templates/{commands → commands-legacy}/optimize.md +0 -0
  38. /package/templates/{commands → commands-legacy}/plan.md +0 -0
  39. /package/templates/{commands → commands-legacy}/review.md +0 -0
  40. /package/templates/{commands → commands-legacy}/team-exec.md +0 -0
  41. /package/templates/{commands → commands-legacy}/team-plan.md +0 -0
  42. /package/templates/{commands → commands-legacy}/team-research.md +0 -0
  43. /package/templates/{commands → commands-legacy}/team-review.md +0 -0
  44. /package/templates/{commands → commands-legacy}/test.md +0 -0
  45. /package/templates/{commands → commands-legacy}/workflow.md +0 -0
package/README.md CHANGED
@@ -29,313 +29,188 @@
29
29
 
30
30
  ---
31
31
 
32
- A multi-model collaboration development system where Claude Code orchestrates Codex + Gemini. Frontend tasks route to Gemini, backend tasks route to Codex, and Claude handles orchestration and code review.
32
+ CCG is a workflow engine for Claude Code that orchestrates multiple AI models (Codex, Gemini, Claude) with hook-based state tracking, automatic strategy selection, and Agent Teams parallel execution.
33
33
 
34
- ## Why CCG?
34
+ ## What's new in v3.0
35
35
 
36
- - **Zero-config model routing** Frontend tasks automatically go to Gemini, backend tasks to Codex. No manual switching.
37
- - **Security by design** — External models have no write access. They return patches; Claude reviews before applying.
38
- - **29+ slash commands** — From planning to execution, git workflow to code review, all accessible via `/ccg:*`.
39
- - **Spec-driven development** — Integrates [OPSX](https://github.com/fission-ai/opsx) to turn vague requirements into verifiable constraints, eliminating AI improvisation.
36
+ v3.0 is a ground-up rewrite. One command replaces 29.
40
37
 
41
- ## Architecture
42
-
43
- ```
44
- Claude Code (Orchestrator)
45
-
46
- ┌───┴───┐
47
- ↓ ↓
48
- Codex Gemini
49
- (Backend) (Frontend)
50
- │ │
51
- └───┬───┘
52
-
53
- Unified Patch
54
- ```
55
-
56
- External models have no write access — they only return patches, which Claude reviews before applying.
57
-
58
- > **🎬 [See CCG in action →](https://x.com/CCG_Workflow/status/2038923720610463876)** — Real multi-model collaboration demo on X
38
+ - `/ccg:go` — Describe what you want in plain language. The engine analyzes your intent, picks the right strategy, and executes it.
39
+ - **Hook engine** — Per-turn state injection keeps Claude on track even after context compaction. Session-start hooks inject full project context on every new session.
40
+ - **Task persistence** — Medium+ complexity tasks create `.ccg/tasks/` with persistent state. Phase gates enforce HARD STOP checkpoints.
41
+ - **Agent Teams** — Large tasks spawn parallel Builder teammates via TeamCreate. Each Builder gets isolated file ownership.
42
+ - **Quality gates** — `verify-security`, `verify-quality`, `verify-change` run as Skill invocations inside strategy verification phases.
43
+ - **Domain knowledge hooks** — When your message mentions security, caching, RAG, etc., the relevant knowledge file is auto-injected into context.
59
44
 
60
45
  ## Quick Start
61
46
 
62
- ### Prerequisites
63
-
64
- | Dependency | Required | Notes |
65
- |------------|----------|-------|
66
- | **Node.js 20+** | Yes | `ora@9.x` requires Node >= 20. Node 18 causes `SyntaxError` |
67
- | **Claude Code CLI** | Yes | [Install guide](#install-claude-code) |
68
- | **jq** | Yes | Used for auto-authorization hook ([install](#install-jq)) |
69
- | **Codex CLI** | No | Enables backend routing |
70
- | **Gemini CLI** | No | Enables frontend routing |
71
-
72
- ### Installation
73
-
74
47
  ```bash
75
48
  npx ccg-workflow
76
49
  ```
77
50
 
78
- On first run, CCG prompts you to select a language (English / Chinese). This preference is saved for all future sessions.
51
+ Requires Node.js 20+ and Claude Code CLI. Codex CLI and Gemini CLI are optional (enable multi-model features).
79
52
 
80
- ### Install jq
53
+ The installer walks through 4 steps: API config, model routing, MCP tools, performance mode. New users get a streamlined 2-step flow with sensible defaults.
81
54
 
82
- ```bash
83
- # macOS
84
- brew install jq
85
-
86
- # Linux (Debian/Ubuntu)
87
- sudo apt install jq
55
+ ## How it works
88
56
 
89
- # Linux (RHEL/CentOS)
90
- sudo yum install jq
91
-
92
- # Windows
93
- choco install jq # or: scoop install jq
94
57
  ```
95
-
96
- ### Install Claude Code
97
-
98
- ```bash
99
- npx ccg-workflow menu # Select "Install Claude Code"
58
+ You: /ccg:go add JWT authentication to this API
59
+
60
+ CCG Engine:
61
+ 1. Reads project context (git status, tech stack, file structure)
62
+ 2. Classifies: feature / L complexity / backend / high risk
63
+ 3. Selects strategy: full-collaborate
64
+ 4. Creates .ccg/tasks/add-jwt-auth/task.json
65
+ 5. Launches dual-model analysis (Codex + Gemini in parallel)
66
+ 6. Produces plan → HARD STOP for your approval
67
+ 7. Spawns Agent Teams Builders for parallel implementation
68
+ 8. Runs quality gates + dual-model cross-review
69
+ 9. Reports results
70
+
71
+ Every turn, a hook injects:
72
+ <ccg-state>
73
+ Task: add-jwt-auth (in_progress)
74
+ Strategy: full-collaborate
75
+ Phase: 4-implementation
76
+ Next: Layer 1 Builders executing
77
+ </ccg-state>
100
78
  ```
101
79
 
102
- Supports: npm, homebrew, curl, powershell, cmd.
103
-
104
- ## Commands
80
+ ## Strategies
105
81
 
106
- ### Development Workflow
82
+ The engine picks a strategy based on task type and complexity:
107
83
 
108
- | Command | Description | Model |
109
- |---------|-------------|-------|
110
- | `/ccg:workflow` | Full 6-phase development workflow | Codex + Gemini |
111
- | `/ccg:plan` | Multi-model collaborative planning (Phase 1-2) | Codex + Gemini |
112
- | `/ccg:execute` | Multi-model collaborative execution (Phase 3-5) | Codex + Gemini + Claude |
113
- | `/ccg:codex-exec` | Codex full execution (plan code review) | Codex + multi-model review |
114
- | `/ccg:feat` | Smart feature development | Auto-routed |
115
- | `/ccg:frontend` | Frontend tasks (fast mode) | Gemini |
116
- | `/ccg:backend` | Backend tasks (fast mode) | Codex |
84
+ | Strategy | When | External models | Teams |
85
+ |----------|------|-----------------|-------|
86
+ | direct-fix | Simple bug, single file | No | No |
87
+ | quick-implement | Small feature, clear scope | No | No |
88
+ | guided-develop | Medium feature, needs planning | Single model | No |
89
+ | full-collaborate | Complex feature, multi-module | Dual model parallel | Yes |
90
+ | debug-investigate | Complex bug, unknown cause | Dual model diagnosis | No |
91
+ | refactor-safely | Code restructuring | Dual model review | No |
92
+ | deep-research | Technical research, comparison | Dual model exploration | No |
93
+ | optimize-measure | Performance optimization | Optional | No |
94
+ | review-audit | Code review | Dual model cross-review | No |
95
+ | git-action | commit, rollback, branches | No | No |
117
96
 
118
- ### Analysis & Quality
97
+ Simple tasks run fast with no overhead. Complex tasks get the full engine.
119
98
 
120
- | Command | Description | Model |
121
- |---------|-------------|-------|
122
- | `/ccg:analyze` | Technical analysis | Codex + Gemini |
123
- | `/ccg:debug` | Problem diagnosis + fix | Codex + Gemini |
124
- | `/ccg:optimize` | Performance optimization | Codex + Gemini |
125
- | `/ccg:test` | Test generation | Auto-routed |
126
- | `/ccg:review` | Code review (auto git diff) | Codex + Gemini |
127
- | `/ccg:enhance` | Prompt enhancement | Built-in |
128
-
129
- ### OPSX Spec-Driven
99
+ ## Commands
130
100
 
131
- | Command | Description |
132
- |---------|-------------|
133
- | `/ccg:spec-init` | Initialize OPSX environment |
134
- | `/ccg:spec-research` | Requirements → Constraints |
135
- | `/ccg:spec-plan` | Constraints → Zero-decision plan |
136
- | `/ccg:spec-impl` | Execute plan + archive |
137
- | `/ccg:spec-review` | Dual-model cross-review |
101
+ v3.0 default install: 13 commands. Legacy mode adds 18 more.
138
102
 
139
- ### Agent Teams (v1.7.60+)
103
+ ### Core
140
104
 
141
105
  | Command | Description |
142
106
  |---------|-------------|
143
- | `/ccg:team-research` | Requirements constraints (parallel exploration) |
144
- | `/ccg:team-plan` | Constraints → parallel implementation plan |
145
- | `/ccg:team-exec` | Spawn Builder teammates for parallel coding |
146
- | `/ccg:team-review` | Dual-model cross-review |
147
-
148
- > **Prerequisite**: Enable Agent Teams in `settings.json`: `CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS=1`
107
+ | `/ccg:go` | Smart entry describe what you want, engine handles the rest |
149
108
 
150
- ### Git Tools
109
+ ### Git
151
110
 
152
111
  | Command | Description |
153
112
  |---------|-------------|
154
- | `/ccg:commit` | Smart commit (conventional commit format) |
113
+ | `/ccg:commit` | Smart conventional commit |
155
114
  | `/ccg:rollback` | Interactive rollback |
156
115
  | `/ccg:clean-branches` | Clean merged branches |
157
116
  | `/ccg:worktree` | Worktree management |
158
117
 
159
- ### Project Setup
118
+ ### Project
160
119
 
161
120
  | Command | Description |
162
121
  |---------|-------------|
163
122
  | `/ccg:init` | Initialize project CLAUDE.md |
164
- | `/ccg:context` | Project context management (.context/ init, log, compress, history) |
123
+ | `/ccg:context` | Project context management |
165
124
 
166
- ## Workflow Guides
125
+ ### OpenSpec
167
126
 
168
- ### Planning & Execution Separation
127
+ | Command | Description |
128
+ |---------|-------------|
129
+ | `/ccg:spec-init` | Initialize OPSX environment |
130
+ | `/ccg:spec-research` | Requirements → constraints |
131
+ | `/ccg:spec-plan` | Constraints → zero-decision plan |
132
+ | `/ccg:spec-impl` | Execute plan + archive |
133
+ | `/ccg:spec-review` | Dual-model cross-review |
169
134
 
170
- ```bash
171
- # 1. Generate implementation plan
172
- /ccg:plan implement user authentication
135
+ ## Hook Engine
173
136
 
174
- # 2. Review the plan (editable)
175
- # Plan saved to .claude/plan/user-auth.md
137
+ CCG installs 4 hooks into `~/.claude/settings.json`:
176
138
 
177
- # 3a. Execute (Claude refactors) fine-grained control
178
- /ccg:execute .claude/plan/user-auth.md
139
+ | Hook | Event | Purpose |
140
+ |------|-------|---------|
141
+ | workflow-state.js | UserPromptSubmit | Injects task state breadcrumb every turn |
142
+ | session-start.js | SessionStart | Injects full project context on session start/clear/compact |
143
+ | subagent-context.js | PreToolUse (Bash/Agent) | Injects spec + task context into codeagent-wrapper calls and Team member spawns |
144
+ | skill-router.js | UserPromptSubmit | Auto-injects domain knowledge when keywords detected |
179
145
 
180
- # 3b. Execute (Codex does everything) — efficient, low Claude token usage
181
- /ccg:codex-exec .claude/plan/user-auth.md
182
- ```
146
+ Hooks are JavaScript, zero dependencies, silent on failure.
183
147
 
184
- ### OPSX Spec-Driven Workflow
148
+ ## Task System
185
149
 
186
- Integrates [OPSX architecture](https://github.com/fission-ai/opsx) to turn requirements into constraints, eliminating AI improvisation:
150
+ Medium+ complexity tasks create a persistent task directory:
187
151
 
188
- ```bash
189
- /ccg:spec-init # Initialize OPSX environment
190
- /ccg:spec-research implement user auth # Research constraints
191
- /ccg:spec-plan # Parallel analysis → zero-decision plan
192
- /ccg:spec-impl # Execute the plan
193
- /ccg:spec-review # Independent review (anytime)
152
+ ```
153
+ .ccg/tasks/add-jwt-auth/
154
+ ├── task.json # Status, strategy, current phase, gate
155
+ ├── requirements.md # Enhanced requirements (full-collaborate)
156
+ ├── plan.md # Approved implementation plan
157
+ ├── context.jsonl # Spec files for sub-agent injection
158
+ ├── review.md # Review results
159
+ └── research/ # Persisted research findings
194
160
  ```
195
161
 
196
- > **Tip**: `/ccg:spec-*` commands internally call `/opsx:*`. You can `/clear` between phases state is persisted in the `openspec/` directory.
162
+ The workflow-state hook reads `task.json` every turn and injects the current state. If context gets compacted, session-start re-injects the full task context. No state is lost.
197
163
 
198
- ### Agent Teams Parallel Workflow
164
+ ## Spec System
199
165
 
200
- Leverage Claude Code Agent Teams to spawn multiple Builder teammates for parallel coding:
166
+ Project-level coding standards in `.ccg/spec/`:
201
167
 
202
- ```bash
203
- /ccg:team-research implement kanban API # 1. Requirements → constraints
204
- # /clear
205
- /ccg:team-plan kanban-api # 2. Plan → parallel tasks
206
- # /clear
207
- /ccg:team-exec # 3. Builders code in parallel
208
- # /clear
209
- /ccg:team-review # 4. Dual-model cross-review
168
+ ```
169
+ .ccg/spec/
170
+ ├── backend/index.md # Backend conventions
171
+ ├── frontend/index.md # Frontend conventions
172
+ └── guides/index.md # Cross-module guidelines
210
173
  ```
211
174
 
212
- > **vs Traditional Workflow**: Team series uses `/clear` between steps to isolate context, passing state through files. Ideal for tasks decomposable into 3+ independent modules.
175
+ The subagent-context hook reads `context.jsonl` and injects relevant spec files into every codeagent-wrapper call and Agent Team spawn. Sub-agents follow your project's standards without being told.
213
176
 
214
177
  ## Configuration
215
178
 
216
- ### Directory Structure
217
-
218
179
  ```
219
180
  ~/.claude/
220
- ├── commands/ccg/ # 29+ slash commands
221
- ├── agents/ccg/ # Sub-agents
222
- ├── skills/ccg/ # Quality gates + multi-agent orchestration
223
- ├── bin/codeagent-wrapper
224
- └── .ccg/
225
- ├── config.toml # CCG configuration
226
- └── prompts/
227
- ├── codex/ # 6 Codex expert prompts
228
- └── gemini/ # 7 Gemini expert prompts
181
+ ├── commands/ccg/ # Slash commands
182
+ ├── hooks/ccg/ # Hook scripts (4 files)
183
+ ├── .ccg/
184
+ ├── config.toml # Model routing, MCP, performance
185
+ │ ├── engine/ # Strategy files + model router
186
+ │ └── prompts/ # Expert prompts (codex/gemini/claude)
187
+ ├── skills/ccg/ # Quality gates + domain knowledge
188
+ └── bin/codeagent-wrapper # Multi-model execution bridge
229
189
  ```
230
190
 
231
191
  ### Environment Variables
232
192
 
233
- Configure in `~/.claude/settings.json` under `"env"`:
234
-
235
- | Variable | Description | Default | When to change |
236
- |----------|-------------|---------|----------------|
237
- | `CODEAGENT_POST_MESSAGE_DELAY` | Wait after Codex completion (sec) | `5` | Set to `1` if Codex process hangs |
238
- | `CODEX_TIMEOUT` | Wrapper execution timeout (sec) | `7200` | Increase for very long tasks |
239
- | `BASH_DEFAULT_TIMEOUT_MS` | Claude Code Bash timeout (ms) | `120000` | Increase if commands time out |
240
- | `BASH_MAX_TIMEOUT_MS` | Claude Code Bash max timeout (ms) | `600000` | Increase for long builds |
241
-
242
- <details>
243
- <summary>Example settings.json</summary>
244
-
245
- ```json
246
- {
247
- "env": {
248
- "CODEAGENT_POST_MESSAGE_DELAY": "1",
249
- "CODEX_TIMEOUT": "7200",
250
- "BASH_DEFAULT_TIMEOUT_MS": "600000",
251
- "BASH_MAX_TIMEOUT_MS": "3600000"
252
- }
253
- }
254
- ```
255
-
256
- </details>
257
-
258
- ### MCP Configuration
193
+ Set in `~/.claude/settings.json` under `"env"`:
259
194
 
260
- ```bash
261
- npx ccg-workflow menu # Select "Configure MCP"
262
- ```
263
-
264
- **Code retrieval** (choose one):
265
- - **ace-tool** (recommended) — Code search via `search_context`. [Official](https://augmentcode.com/) | [Third-party proxy](https://acemcp.heroman.wtf/)
266
- - **fast-context** (recommended) — Windsurf Fast Context, AI-powered search without full-repo indexing. Requires Windsurf account
267
- - **ContextWeaver** (alternative) — Local hybrid search, requires SiliconFlow API Key (free)
268
-
269
- **Optional tools**:
270
- - **Context7** — Latest library documentation (auto-installed)
271
- - **Playwright** — Browser automation / testing
272
- - **DeepWiki** — Knowledge base queries
273
- - **Exa** — Search engine (requires API Key)
274
-
275
- ### Auto-Authorization Hook
276
-
277
- CCG automatically installs a Hook to auto-authorize `codeagent-wrapper` commands (requires [jq](#install-jq)).
278
-
279
- <details>
280
- <summary>Manual setup (for versions before v1.7.71)</summary>
281
-
282
- Add to `~/.claude/settings.json`:
283
-
284
- ```json
285
- {
286
- "hooks": {
287
- "PreToolUse": [
288
- {
289
- "matcher": "Bash",
290
- "hooks": [
291
- {
292
- "type": "command",
293
- "command": "jq -r '.tool_input.command' 2>/dev/null | grep -q 'codeagent-wrapper' && echo '{\"hookSpecificOutput\": {\"hookEventName\": \"PreToolUse\", \"permissionDecision\": \"allow\", \"permissionDecisionReason\": \"codeagent-wrapper auto-approved\"}}' || true",
294
- "timeout": 1
295
- }
296
- ]
297
- }
298
- ]
299
- }
300
- }
301
- ```
302
-
303
- </details>
304
-
305
- ## Utilities
306
-
307
- ```bash
308
- npx ccg-workflow menu # Select "Tools"
309
- ```
310
-
311
- - **ccusage** — Claude Code usage analytics
312
- - **CCometixLine** — Status bar tool (Git + usage tracking)
195
+ | Variable | Default | Description |
196
+ |----------|---------|-------------|
197
+ | `CODEX_TIMEOUT` | `7200` | Wrapper timeout (seconds) |
198
+ | `CODEAGENT_POST_MESSAGE_DELAY` | `5` | Post-completion delay (seconds) |
199
+ | `CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS` | unset | Set to `1` to enable Agent Teams parallel execution |
313
200
 
314
201
  ## Update / Uninstall
315
202
 
316
203
  ```bash
317
- # Update
318
- npx ccg-workflow@latest # npx users
319
- npm install -g ccg-workflow@latest # npm global users
320
-
321
- # Uninstall
322
- npx ccg-workflow # Select "Uninstall"
323
- npm uninstall -g ccg-workflow # npm global users need this extra step
204
+ npx ccg-workflow@latest # Update
205
+ npx ccg-workflow # Select "Uninstall" from menu
324
206
  ```
325
207
 
326
- ## FAQ
327
-
328
- ### Codex CLI 0.80.0 process does not exit
329
-
330
- In `--json` mode, Codex does not automatically exit after output completion.
331
-
332
- **Fix**: Set `CODEAGENT_POST_MESSAGE_DELAY=1` in your environment variables.
333
-
334
- ## Contributing
335
-
336
- We welcome contributions! See [CONTRIBUTING.md](./CONTRIBUTING.md) for guidelines.
208
+ ## Credits
337
209
 
338
- Looking for a place to start? Check out issues labeled [`good first issue`](https://github.com/fengshao1227/ccg-workflow/labels/good%20first%20issue).
210
+ - [cexll/myclaude](https://github.com/cexll/myclaude) — codeagent-wrapper inspiration
211
+ - [UfoMiao/zcf](https://github.com/UfoMiao/zcf) — Git tools reference
212
+ - [mindfold-ai/Trellis](https://github.com/mindfold-ai/Trellis) — Hook-based workflow state patterns
213
+ - [ace-tool](https://linux.do/t/topic/1344562) — MCP code retrieval
339
214
 
340
215
  ## Contributors
341
216
 
@@ -356,28 +231,22 @@ Looking for a place to start? Check out issues labeled [`good first issue`](http
356
231
  </table>
357
232
  <!-- readme: contributors -end -->
358
233
 
359
- ## Credits
234
+ ## Contact
235
+
236
+ - **X (Twitter)**: [@CCG_Workflow](https://x.com/CCG_Workflow)
237
+ - **Email**: [fengshao1227@gmail.com](mailto:fengshao1227@gmail.com)
238
+ - **Issues**: [GitHub Issues](https://github.com/fengshao1227/ccg-workflow/issues)
239
+ - **Community**: [Linux.do](https://linux.do)
360
240
 
361
- - [cexll/myclaude](https://github.com/cexll/myclaude) — codeagent-wrapper
362
- - [UfoMiao/zcf](https://github.com/UfoMiao/zcf) — Git tools
363
- - [GudaStudio/skills](https://github.com/GuDaStudio/skills) — Routing design
364
- - [ace-tool](https://linux.do/t/topic/1344562) — MCP tool
365
241
 
366
242
  ## Star History
367
243
 
368
244
  [![Star History Chart](https://api.star-history.com/svg?repos=fengshao1227/ccg-workflow&type=timeline&legend=top-left)](https://www.star-history.com/#fengshao1227/ccg-workflow&type=timeline&legend=top-left)
369
245
 
370
- ## Contact
371
-
372
- - **X (Twitter)**: [@CCG_Workflow](https://x.com/CCG_Workflow) — Updates, demos, and tips
373
- - **Email**: [fengshao1227@gmail.com](mailto:fengshao1227@gmail.com) — Sponsorship, collaboration, or development ideas
374
- - **Issues**: [GitHub Issues](https://github.com/fengshao1227/ccg-workflow/issues) — Bug reports and feature requests
375
- - **Discussions**: [GitHub Discussions](https://github.com/fengshao1227/ccg-workflow/discussions) — Questions and community chat
376
-
377
246
  ## License
378
247
 
379
248
  MIT
380
249
 
381
250
  ---
382
251
 
383
- v2.1.16 | [Issues](https://github.com/fengshao1227/ccg-workflow/issues) | [Contributing](./CONTRIBUTING.md)
252
+ v3.0.0 | [Issues](https://github.com/fengshao1227/ccg-workflow/issues) | [Contributing](./CONTRIBUTING.md)