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.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "project management" with this command: npx skills add seb1n/awesome-ai-agent-skills/seb1n-awesome-ai-agent-skills-project-management

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.

Workflow

Gather Project Context 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.

Decompose Work into Tasks 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.

Plan Sprints or Populate the Board 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.

Track Progress and Surface Blockers 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.

Manage Risks and Dependencies 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.

Generate Status Reports 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.

Usage

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.'"

Examples

Example 1 — Creating a Sprint Plan with User Stories

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)

IDStoryPointsAssigneeDepends On
LUM-41As a user, I want to receive in-app notifications5Alice
LUM-42As a user, I want to receive push notifications8BobLUM-41
LUM-43As a user, I want to configure notification prefs3AliceLUM-41
LUM-44Build notification service with WebSocket delivery8Bob
LUM-45As a user, I want to see a notification history page5CarolLUM-44
LUM-46Write integration tests for notification flow3CarolLUM-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.

Example 2 — Generating a Project Status Report with Burndown Data

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

DayIdeal RemainingActual Remaining
Feb 33030
Feb 42728
Feb 52425
Feb 62122
Feb 71818
Feb 101514
Feb 111210
Feb 1296
Feb 1364
Feb 1402

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

RiskLikelihoodImpactOwnerMitigation
Design system migration incompleteMediumHighAliceParallel-run old and new systems
Third-party image CDN latency spikesLowMediumBobAdd 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)

Best Practices

  • Keep stories small and testable. Any story estimated above 8 points should be split. Large stories hide complexity and make progress tracking unreliable.

  • Write acceptance criteria before development begins. Criteria remove ambiguity, serve as the basis for test cases, and give the team a shared definition of "done."

  • Respect velocity — do not overcommit. Use the team's trailing three-sprint average as the capacity ceiling. Overloaded sprints lead to carryover and demoralize the team.

  • Make blockers visible immediately. Surface blocked tasks in daily digests and tag the person who can unblock them. A blocker that sits unreported for days is a silent schedule risk.

  • Maintain a living risk register. Review risks at every sprint planning meeting. Close risks that are no longer relevant and add new ones as they emerge. A stale risk register provides false confidence.

  • Automate report generation. Manually assembling status reports is error-prone and time-consuming. Use the agent to pull data directly from the project tracker so reports are always accurate and consistent.

Edge Cases

  • Empty backlog. If no stories exist when a sprint plan is requested, prompt the user to create or import stories before planning. Do not create a sprint with zero items.

  • Team member at zero capacity. If a team member is on leave for the entire sprint, exclude them from assignment but keep them listed as a reviewer or stakeholder if applicable. Adjust total capacity accordingly.

  • Circular dependencies. If task A depends on B and B depends on A, flag the cycle and ask the user to resolve it before planning proceeds. Never silently schedule mutually blocking tasks.

  • Tracker API outage. If the project tracker API is unreachable, generate the plan in Markdown locally and queue the sync for when the API recovers. Inform the user that changes are saved locally but not yet pushed.

  • Mid-sprint scope changes. If a new high-priority item is added mid-sprint, warn the user about the impact on the sprint goal and suggest which existing item to deprioritize to make room. Log the scope change in the sprint report.

  • Cross-project dependencies. When a task depends on work owned by another team or project, create a linked external reference and set up a webhook or polling check to notify the team when the dependency is resolved.

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Automation

user flow mapping

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

project-management

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

docker-local-dev

No summary provided by upstream source.

Repository SourceNeeds Review
Automation

laravel-11-12-app-guidelines

No summary provided by upstream source.

Repository SourceNeeds Review