Team collaboration workspace for tracking daily work, sharing updates, and coordinating tasks.
- Name (@username) - Role
- Name (@username) - Role
- Clone this repository to your
shared/directory - Create your
.mefile with your username - Start logging your work:
./bin/wip team-log [project-name] "Task description"
Morning:
- Sync to see team updates:
./bin/wip sync-project [project-name] - Check team status:
./bin/wip team-status [project-name] - Pull any requests:
./bin/wip sync-requests [project-name]
During Day:
- Log work entries with:
./bin/wip team-log [project-name] "TTC-123: Task name" - Add requests for teammates:
./bin/wip add-request [project-name] username "Task"
End of Day:
- Your logs are auto-committed and pushed
.
├── README.md # This file
├── team.md # Team member directory
├── daily/ # Daily logs by team member
│ ├── username1/
│ │ └── YYYY-MM-DD.md
│ └── username2/
│ └── YYYY-MM-DD.md
├── requests/ # Cross-team todo requests
│ ├── username1.md
│ └── username2.md
├── notes.md # Shared project notes
├── decisions.md # Architecture decision records
└── milestones.md # Project milestones and goals
Each team member maintains daily logs in their own directory with this structure:
# YYYY-MM-DD - Display Name
## [Project] - Task Summary
- **Remaining Estimate:** X days/hours
- **Focus/Notes:** What you're working on
- **Challenges/Learnings:** Blockers, new tech, etc.Team members can create tasks for each other using the request system:
# Create a request for a teammate
./bin/wip add-request [project-name] username "Review PR #123"
# Pull your requests into your personal daily
./bin/wip sync-requests [project-name]Requests are stored in requests/username.md and include:
- Date created
- Who requested it
- Task description
- Checkbox for completion tracking
- Daily updates by [time]
- Blockers raised immediately
- Request format: [guidelines]
- Project Board:
- Documentation:
- Slack/Discord: