Team progress management with development planning, risk control, and progress tracking. Use when managing multi-person projects, tracking task ownership, or coordinating branch workflows.
Installation
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Team progress management with development planning, risk control, and progress tracking. Use when managing multi-person projects, tracking task ownership, or coordinating branch workflows.
Real-time task status and team collaboration records.
Template
# Progress Tracking## Current Sprint: [Sprint Name] (YYYY-MM-DD ~ YYYY-MM-DD)### Task Board#### 🔴 Blocked
| Task ID | Task | Owner | Blocker | Since |
|---------|------|-------|---------|-------|
#### 🟡 In Progress
| Task ID | Task | Owner | Branch | Started | ETA | Progress |
|---------|------|-------|--------|---------|-----|----------|
| T001 | [Task desc] | @alice | feat/xxx | 01-20 | 01-22 | 60% - core logic done |
| T002 | [Task desc] | @bob | fix/yyy | 01-21 | 01-21 | 80% - pending test |
#### 🟢 Ready for Review
| Task ID | Task | Owner | PR | Reviewer |
|---------|------|-------|----|---------|
| T003 | [Task desc] | @alice | #123 | @bob |
#### ✅ Done (This Sprint)
| Task ID | Task | Owner | Completed | PR |
|---------|------|-------|-----------|-----|
| T000 | [Task desc] | @bob | 01-19 | #120 |
### Daily Updates#### YYYY-MM-DD**@alice**- T001: Completed API design, started core implementation
- Found R003 risk, logged in RISKS.md
**@bob**- T002: Fixed edge case bug, preparing PR
- Starting T004 tomorrow
---
## Task Claiming Rules1.**Claim task**: Add row to In Progress table with Owner and Branch
2.**Update progress**: Update Progress column and Daily Updates daily
3.**Complete task**: Move to Ready for Review or Done
Independent Workspace Setup (Multi-Agent)
When multiple agents work on the same codebase simultaneously, each agent MUST create an isolated workspace to prevent conflicts.
Why Worktree?
Git worktree allows multiple working directories from a single repository. Each agent works in its own directory with its own branch, enabling true parallel development without stepping on each other's toes.
Naming Convention
Use poetic, evocative names that give each agent a distinct identity:
# After PR is merged, clean up your worktreecd ../main_repo
git worktree remove "../worktree_of_${AGENT_NAME}"
git branch -d "agent/${AGENT_NAME}/workspace"
Benefits
No file conflicts: Each agent edits files in a separate directory
Independent staging: Commits don't interfere with each other
Clean separation: Easy to track which agent did what
Parallel PRs: Multiple PRs can be prepared simultaneously
Distributed Progress Tracking
Since main branch is typically protected (requires PR), each branch maintains its own BRANCH_PROGRESS.md. Team progress is aggregated by querying all remote branches.
Branch Progress File Template
Each branch maintains BRANCH_PROGRESS.md in project root:
# Update progress in your branch (no need to touch main)# Edit BRANCH_PROGRESS.md - add new entry to Progress Log
git add BRANCH_PROGRESS.md
git commit -m "progress: T001 update - [brief status]"
git push
Creating PR
# Update BRANCH_PROGRESS.md: Status -> Ready for Review
git add BRANCH_PROGRESS.md
git commit -m "progress: T001 ready for review"
git push
gh pr create
Query Team Progress
Use the provided script to aggregate progress from all branches:
# Summary table view
./scripts/team-progress.sh
# Detailed view with full progress logs
./scripts/team-progress.sh --detail