Project Management for Collaborative + Agentic Development
The Challenge
Section titled “The Challenge”This project has a unique workflow:
- Multiple human developers collaborating on the same codebase
- AI agents (Claude Code) doing significant implementation work per the TDD workflow in AGENTS.md
- Specs as source of truth — the specs directory already defines all behavior
The project management approach needs to support both humans coordinating and agents executing.
Recommended Approach: GitHub Issues + Markdown Roadmap
Section titled “Recommended Approach: GitHub Issues + Markdown Roadmap”Why This Combo
Section titled “Why This Combo”| Layer | Tool | Purpose |
|---|---|---|
| Strategic | plans/roadmap.md (this repo) | Phase breakdown, dependency graph, big picture |
| Tactical | GitHub Issues | Individual tasks, assignment, status tracking |
| Operational | Branch-per-task + PRs | Actual work, code review, CI checks |
Why GitHub Issues (Not Linear, Jira, etc.)
Section titled “Why GitHub Issues (Not Linear, Jira, etc.)”- Already on GitHub — no context switching, no extra tool
- Agent-friendly — Claude Code can read/create/update issues via
ghCLI - Free for public repos — GitHub Projects boards are included
- Labels + Milestones — map directly to phases and task types
- Issue templates — standardize task creation for agents and humans
Labels
Section titled “Labels”# Phase labels (milestones work too, but labels are more visible)phase:0-foundationphase:1-core-crudphase:2-marketplacephase:3-socialphase:4-aiphase:5-chatbotphase:6-polish
# Scope labelsscope:apiscope:webscope:full-stack
# Type labelstype:featuretype:testtype:infratype:bug
# Agent labelsagent:ready # Task is specced and ready for an agent to pick upagent:in-progress # Agent is actively working on thisagent:review # Agent finished, needs human reviewMilestones
Section titled “Milestones”One GitHub Milestone per phase. This gives you a progress bar and burndown.
GitHub Projects Board
Section titled “GitHub Projects Board”A single board with columns:
- Backlog — created but not started
- Ready for Agent — specced, unblocked, agent can pick it up
- In Progress — human or agent is working on it
- In Review — PR open, awaiting review
- Done — merged to main
Workflow: Human + Agent Collaboration
Section titled “Workflow: Human + Agent Collaboration”How a task flows
Section titled “How a task flows”1. Human creates issue from roadmap ↓2. Human assigns it (to self or labels "agent:ready") ↓3. Agent (or human) reads the linked spec ↓4. Agent creates branch, writes tests, implements (TDD) ↓5. Agent opens PR, labels issue "agent:review" ↓6. Human reviews PR (code review is always human) ↓7. Human merges → issue auto-closesRules for Agent-Driven Tasks
Section titled “Rules for Agent-Driven Tasks”- One issue = one PR. Keep scope small.
- Agent reads the spec first. The issue should link to the relevant spec file.
- Agent does not merge. Only humans merge PRs.
- Agent does not modify specs. If behavior is unclear, the agent should ask (or a human updates the spec first).
- Human reviews every PR. Agents write code; humans own quality.
Rules for Human Coordination
Section titled “Rules for Human Coordination”- Assign before starting. Avoid two people (or agents) working on the same task.
- Phase dependencies are real. Don’t start Phase 2 tasks until Phase 1’s API is merged.
- Communicate blockers in issues. If a task is stuck, comment on the issue.
- Use draft PRs for work-in-progress to signal “I’m on this.”
File Layout
Section titled “File Layout”plans/├── roadmap.md ← Phase breakdown + dependency graph├── project-management.md ← This document (how we work)└── decisions/ ← Architecture Decision Records └── project-management-alternatives.md ← Why we chose this approachFor the rationale behind choosing GitHub Issues + Markdown over Linear, Jira, pure Markdown, or other approaches, see decisions/project-management-alternatives.md.
What stays in the repo vs. GitHub Issues
Section titled “What stays in the repo vs. GitHub Issues”In plans/ (repo) | In GitHub Issues |
|---|---|
| Phase breakdown | Individual tasks |
| Dependency graph | Assignment + status |
| Architecture decisions | Comments + discussion |
| Strategic roadmap | PR links |
| Sprint retrospective notes | Bug reports |