mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-03-05 16:13:08 +08:00
Refactor team collaboration skills and update documentation
- Renamed `team-lifecycle-v5` to `team-lifecycle` across various documentation files for consistency. - Updated references in code examples and usage sections to reflect the new skill name. - Added a new command file for the `monitor` functionality in the `team-iterdev` skill, detailing the coordinator's monitoring events and task management. - Introduced new components for dynamic pipeline visualization and session coordinates display in the frontend. - Implemented utility functions for pipeline stage detection and status derivation based on message history. - Enhanced the team role panel to map members to their respective pipeline roles with status indicators. - Updated Chinese documentation to reflect the changes in skill names and descriptions.
This commit is contained in:
@@ -19,8 +19,8 @@
|
||||
|
||||
| Skill | Function | Use Case |
|
||||
| --- | --- | --- |
|
||||
| `team-coordinate-v2` | Universal team coordinator (dynamic role generation) | Any complex task |
|
||||
| `team-lifecycle-v5` | Full lifecycle team (spec→impl→test) | Complete feature development |
|
||||
| `team-coordinate` | Universal team coordinator (dynamic role generation) | Any complex task |
|
||||
| `team-lifecycle` | Full lifecycle team (spec→impl→test) | Complete feature development |
|
||||
| `team-planex` | Plan-execute pipeline | Issue batch processing |
|
||||
| `team-review` | Code review team | Code review, vulnerability scanning |
|
||||
| `team-testing` | Testing team | Test coverage, test case generation |
|
||||
@@ -35,7 +35,7 @@
|
||||
| `team-roadmap-dev` | Roadmap development team | Phased development, milestones |
|
||||
| `team-tech-debt` | Tech debt team | Debt cleanup, code governance |
|
||||
| `team-ultra-analyze` | Deep analysis team | Complex problem analysis, collaborative exploration |
|
||||
| `team-executor-v2` | Lightweight executor | Session resume, pure execution |
|
||||
| `team-executor` | Lightweight executor | Session resume, pure execution |
|
||||
|
||||
---
|
||||
|
||||
@@ -77,7 +77,7 @@ All Team Skills share a unified **team-worker agent architecture**:
|
||||
|
||||
## Skills Details
|
||||
|
||||
### team-coordinate-v2
|
||||
### team-coordinate
|
||||
|
||||
**One-Liner**: Universal team coordinator — Dynamically generates roles and orchestrates execution based on task analysis
|
||||
|
||||
@@ -106,7 +106,7 @@ team-coordinate --role=coordinator <task>
|
||||
|
||||
---
|
||||
|
||||
### team-lifecycle-v5
|
||||
### team-lifecycle
|
||||
|
||||
**One-Liner**: Full lifecycle team — Complete pipeline from specification to implementation to testing to review
|
||||
|
||||
@@ -456,7 +456,7 @@ team-analyze <topic>
|
||||
|
||||
---
|
||||
|
||||
### team-executor-v2
|
||||
### team-executor
|
||||
|
||||
**One-Liner**: Lightweight executor — Resume session, pure execution mode
|
||||
|
||||
@@ -487,8 +487,8 @@ All Team Skills support unified user commands (wake paused coordinator):
|
||||
## Best Practices
|
||||
|
||||
1. **Choose the right team type**:
|
||||
- General tasks → `team-coordinate-v2`
|
||||
- Complete feature development → `team-lifecycle-v5`
|
||||
- General tasks → `team-coordinate`
|
||||
- Complete feature development → `team-lifecycle`
|
||||
- Issue batch processing → `team-planex`
|
||||
- Code review → `team-review`
|
||||
- Test coverage → `team-testing`
|
||||
|
||||
@@ -55,7 +55,7 @@ name: my-skill-v2
|
||||
|
||||
3. **Use version suffixes for iterations**: Not "v2" but purpose
|
||||
```yaml
|
||||
name: team-lifecycle-v5 # Version iteration
|
||||
name: team-lifecycle # Version iteration
|
||||
name: workflow-lite # Lightweight variant
|
||||
```
|
||||
|
||||
|
||||
@@ -41,9 +41,9 @@ Quick reference guide for all **33 CCW built-in skills**.
|
||||
|-------|---------|-------|---------|
|
||||
| **team-lifecycle** | `team lifecycle` | variable | Full spec/impl/test lifecycle team (v5, team-worker architecture) |
|
||||
| **team-coordinate** | `team coordinate` | variable | Generic team coordination (legacy) |
|
||||
| **team-coordinate-v2** | - | variable | team-worker architecture coordination |
|
||||
| **team-coordinate** | - | variable | team-worker architecture coordination |
|
||||
| **team-executor** | `team executor` | variable | Lightweight session execution |
|
||||
| **team-executor-v2** | - | variable | team-worker architecture execution |
|
||||
| **team-executor** | - | variable | team-worker architecture execution |
|
||||
| **team-planex** | `team planex` | 3 | Plan-and-execute wave pipeline |
|
||||
| **team-iterdev** | `team iterdev` | 5 | Generator-critic loop iterative development |
|
||||
| **team-issue** | `team issue` | 6 | Issue resolution pipeline |
|
||||
|
||||
Reference in New Issue
Block a user