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:
catlog22
2026-03-04 11:07:48 +08:00
parent 5e96722c09
commit ffd5282932
132 changed files with 2938 additions and 18916 deletions

View File

@@ -9,7 +9,7 @@ CCW provides multiple team collaboration Skills that support multi-role coordina
| **team-planex** | 3 (planner + executor) | Wave pipeline (边规划边执行) | Planning and execution in parallel waves |
| **team-iterdev** | 5 (generator → critic → integrator → validator) | Generator-critic loop | Iterative development with feedback cycles |
| **team-lifecycle-v4** | 8 (spec → architect → impl → test) | 5-phase lifecycle | Full spec → impl → test workflow |
| **team-lifecycle-v5** | Variable (team-worker) | Built-in phases | Latest team-worker architecture |
| **team-lifecycle** | Variable (team-worker) | Built-in phases | Latest team-worker architecture |
| **team-issue** | 6 (explorer → planner → implementer → reviewer → integrator) | 5-phase issue resolution | Multi-role issue solving |
| **team-testing** | 5 (strategist → generator → executor → analyst) | 4-phase testing | Comprehensive test coverage |
| **team-quality-assurance** | 6 (scout → strategist → generator → executor → analyst) | 5-phase QA | Quality assurance closed loop |
@@ -21,9 +21,9 @@ CCW provides multiple team collaboration Skills that support multi-role coordina
| **team-tech-debt** | 6 (scanner → assessor → planner → executor → validator) | 5-phase cleanup | Technical debt identification and resolution |
| **team-ultra-analyze** | 5 (explorer → analyst → discussant → synthesizer) | 4-phase analysis | Deep collaborative codebase analysis |
| **team-coordinate** | Variable | Generic coordination | Generic team coordination (legacy) |
| **team-coordinate-v2** | Variable (team-worker) | team-worker architecture | Modern team-worker coordination |
| **team-coordinate** | Variable (team-worker) | team-worker architecture | Modern team-worker coordination |
| **team-executor** | Variable | Lightweight execution | Session-based execution |
| **team-executor-v2** | Variable (team-worker) | team-worker execution | Modern team-worker execution |
| **team-executor** | Variable (team-worker) | team-worker execution | Modern team-worker execution |
## Usage
@@ -45,7 +45,7 @@ CCW provides multiple team collaboration Skills that support multi-role coordina
```javascript
// Programmatic invocation
Skill(skill="team-lifecycle-v5", args="Build user authentication system")
Skill(skill="team-lifecycle", args="Build user authentication system")
Skill(skill="team-planex", args="Implement OAuth2 with concurrent planning")
Skill(skill="team-quality-assurance", args="Quality audit of payment system")
@@ -177,7 +177,7 @@ Linear progression through all lifecycle phases.
|----------|-------------------|
| Need parallel planning and execution | **team-planex** |
| Complex feature with multiple iterations | **team-iterdev** |
| Full spec → impl → test workflow | **team-lifecycle-v5** |
| Full spec → impl → test workflow | **team-lifecycle** |
| Issue resolution | **team-issue** |
| Comprehensive testing | **team-testing** |
| Quality audit | **team-quality-assurance** |