sprint-manager

Orchestrates autonomous sprint execution by coordinating subagents to implement GitHub issues serially.

Updated Jul 13, 2024
One-click install
npx skills add https://github.com/Reading-Advantage-Thailand/codecamp-advantage --skill sprint-manager-reading-advantage-thailand
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: sprint-manager
Source: https://github.com/Reading-Advantage-Thailand/codecamp-advantage/tree/main/.claude/skills/sprint-manager
Command: npx skills add https://github.com/Reading-Advantage-Thailand/codecamp-advantage --skill sprint-manager-reading-advantage-thailand

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve? Executing a sprint of GitHub issues manually requires constant context switching between planning, implementation, code review, merging, and cleanup. This Skill automates that entire lifecycle by coordinating subagents, keeping the main context clean while issues are implemented, reviewed, and merged serially. ## Core Features & Use Cases - Autonomous Issue Execution: Fetches issues from a GitHub milestone, prioritizes them by labels, and processes each one through plan generation, implementation, review, and merge. - Subagent Delegation: Launches specialized subagents (backend-architect, frontend-developer, general-purpose) with detailed prompt templates for implementation and post-merge integration. - Automated PR Review: Uses Codex MCP to review pull requests with severity-tagged feedback, then dispatches fix subagents before merging. - Use Case: You have a milestone with eight open issues. Ask the assistant to run the sprint, and it will generate plans via Gemini CLI, delegate each issue to a subagent, review and merge PRs, update retrospectives, and report a sprint summary. ## Quick Start Run the sprint for all open issues in the current GitHub milestone, implementing and merging each one autonomously.

Frequently Asked Questions about sprint-manager

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I run a sprint of GitHub issues autonomously?▼

Invoke the sprint-manager skill with a request like "run the sprint" after ensuring issues are assigned to a GitHub milestone. It fetches open issues via gh CLI, prioritizes them by labels, and processes each through planning, implementation, review, and merge.

How does automated PR review work with Codex MCP?▼

After a subagent creates a PR, the skill calls Codex MCP with a review prompt describing the PR and focus areas. Codex responds with APPROVED or a severity-tagged issue list, and critical or major issues trigger a fix subagent before merging.

What tools are required to use the sprint-manager skill?▼

You need the gh CLI installed and authenticated, a clean git working directory, and Codex MCP available for reviews. The Gemini CLI is optional for plan generation, with a manual fallback if it fails.

Can sprint issues be implemented in parallel instead of serially?▼

The skill defaults to serial execution for safety and easier debugging. Parallel execution is only allowed for truly independent issues with explicit user approval, and never for issues sharing file dependencies.

What happens if the Gemini CLI or a subagent fails during a sprint?▼

If Gemini CLI fails, the skill falls back to manual plan creation from issue details and specs. If a subagent fails, it launches a new subagent with adjusted instructions or breaks the task into smaller pieces, flagging repeated failures for user intervention.