seb1n/project management
Manages software projects end-to-end — decomposing work into tasks, tracking progress across sprints, generating status reports, and integrating with tools like Jira, Linear, GitHub Issues, and Trello.
npx skills add https://github.com/seb1n/awesome-ai-agent-skills --skill Project Management
This skill enables an AI agent to serve as a project management co-pilot for software teams. It covers the full lifecycle: breaking high-level goals into actionable tasks with acceptance criteria, estimating effort in story points, organizing work into sprints or Kanban boards, tracking progress with burndown data, identifying blockers and risks, and generating stakeholder-ready status reports. The agent integrates with Jira, Linear, GitHub Issues, and Trello so that all changes are reflected in the team's actual project tracker.
Collect the project name, team roster (with roles and capacity), high-level goals, key deadlines, and the preferred methodology (Scrum, Kanban, or a hybrid). If a project tracker is already in use, connect to its API and import the current backlog, labels, and sprint configuration so the agent starts from the existing state rather than a blank slate.
Break each high-level goal into epics, then into user stories, and finally into sub-tasks small enough to complete in one to two days. Write each user story in the standard format: "As a [role], I want [capability] so that [benefit]." Attach acceptance criteria as a checklist on every story. Identify dependencies between tasks and flag any that form a critical path. Assign story-point estimates using the Fibonacci scale (1, 2, 3, 5, 8, 13) based on complexity, uncertainty, and effort.
For Scrum teams, create a sprint with a start date, end date, and sprint goal. Pull stories from the top of the prioritized backlog until the team's velocity (historical average story points per sprint) is reached. For Kanban teams, enforce work-in-progress (WIP) limits per column and ensure the board columns match the team's workflow (e.g., Backlog → In Progress → Review → Done). Push the plan to the connected project tracker via its API.
Poll the project tracker on a configurable interval (default: daily). Calculate burndown and cumulative-flow metrics. Detect when a task has been "In Progress" longer than its estimate and flag it as at risk. Identify dependency chains where a blocked upstream task is stalling downstream work. Post a daily digest to the team's Slack or Teams channel summarizing completed items, in-progress items, and blockers.
Maintain a risk register with each entry containing a description, likelihood (low/medium/high), impact (low/medium/high), an assigned owner, and a mitigation plan. When a new risk is identified — such as a team member going on leave or a third-party API deprecation — add it to the register and notify the project lead. Track cross-team dependencies by linking external issues and alerting when their status changes.
Produce sprint review or weekly status reports in Markdown (or export to PDF/Confluence). Each report includes: sprint goal and whether it was met, completed stories with their point total, stories carried over, burndown chart data, velocity trend over the last five sprints, top risks, and action items for the next period. Tailor the level of detail to the audience — executives get a one-page summary, the team gets the full breakdown.
Provide the agent with your project details and what you need. The agent adapts to your methodology and tooling.
"Create a sprint plan for the TaskMaster mobile app. We're a team of 4 with a velocity of 34 points. Sprint starts Monday and runs two weeks. Pull from the existing backlog in Linear."
"Generate a weekly status report for Project Atlas. Include burndown, completed items, and open risks."
"Break down this feature into user stories with acceptance criteria: 'Users should be able to export their data in CSV and JSON formats.'"
"Add a risk to the register: 'Payment provider is deprecating API v2 on March 1. We need to migrate to v3.'"
User input:
"Plan sprint 12 for the Lumen project. Sprint goal: launch the notifications feature. Team: Alice (frontend, 8 pts capacity), Bob (backend, 10 pts), Carol (fullstack, 8 pts). Two-week sprint starting Feb 17."
Agent output:
## Sprint 12 — Lumen
**Goal:** Launch the notifications feature
**Dates:** Feb 17 – Feb 28, 2025
**Team capacity:** 26 story points
### Selected Stories (26 pts)
| ID | Story | Points | Assignee | Depends On |
|--------|-----------------------------------------------------|--------|----------|------------|
| LUM-41 | As a user, I want to receive in-app notifications | 5 | Alice | — |
| LUM-42 | As a user, I want to receive push notifications | 8 | Bob | LUM-41 |
| LUM-43 | As a user, I want to configure notification prefs | 3 | Alice | LUM-41 |
| LUM-44 | Build notification service with WebSocket delivery | 8 | Bob | — |
| LUM-45 | As a user, I want to see a notification history page | 5 | Carol | LUM-44 |
| LUM-46 | Write integration tests for notification flow | 3 | Carol | LUM-42 |
### Acceptance Criteria (example — LUM-42)
- [ ] Push notification is delivered to iOS and Android within 5 seconds
- [ ] Notification payload includes title, body, and deep-link URL
- [ ] Notifications respect the user's quiet-hours setting
- [ ] Failed deliveries are retried up to 3 times with exponential backoff
### Dependencies
LUM-42 → LUM-41 (push requires in-app infrastructure)
LUM-45 → LUM-44 (history page reads from notification service)
LUM-46 → LUM-42 (integration tests cover push path)
Sprint pushed to Linear. Slack channel #lumen-dev notified.
User input:
"Generate the sprint 11 retrospective report for Project Atlas. We use GitHub Issues."
Agent output:
## Project Atlas — Sprint 11 Status Report
**Sprint dates:** Feb 3 – Feb 14, 2025
**Sprint goal:** Complete user profile redesign — ✅ Met
### Summary
- **Planned:** 30 story points across 9 stories
- **Completed:** 28 story points (8 stories)
- **Carried over:** 1 story (ATLAS-87, 2 pts — blocked by design review)
### Burndown Data
| Day | Ideal Remaining | Actual Remaining |
|-----------|-----------------|------------------|
| Feb 3 | 30 | 30 |
| Feb 4 | 27 | 28 |
| Feb 5 | 24 | 25 |
| Feb 6 | 21 | 22 |
| Feb 7 | 18 | 18 |
| Feb 10 | 15 | 14 |
| Feb 11 | 12 | 10 |
| Feb 12 | 9 | 6 |
| Feb 13 | 6 | 4 |
| Feb 14 | 0 | 2 |
### Velocity Trend (last 5 sprints)
Sprint 7: 24 pts | Sprint 8: 28 pts | Sprint 9: 26 pts | Sprint 10: 30 pts | Sprint 11: 28 pts
**Average velocity:** 27.2 pts
### Open Risks
| Risk | Likelihood | Impact | Owner | Mitigation |
|---------------------------------------|------------|--------|--------|-----------------------------------|
| Design system migration incomplete | Medium | High | Alice | Parallel-run old and new systems |
| Third-party image CDN latency spikes | Low | Medium | Bob | Add fallback CDN configuration |
### Action Items
1. Complete design review for ATLAS-87 by Feb 17 (owner: Carol)
2. Schedule performance testing for new profile page (owner: Bob)
3. Update onboarding docs to reflect profile redesign (owner: Alice)
Take seb1n/project management from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.