sprint-planner
Use this skill to plan a new sprint. It uses the Gemini CLI to intelligently decompose approved specs into atomic GitHub issues for the development team. Triggers include "plan sprint", "create sprint", or "start new sprint".
What this skill does
# Sprint Planner Skill ## Purpose To plan and initialize a new sprint by intelligently decomposing approved specifications into a comprehensive set of atomic GitHub issues. This skill bridges the gap between high-level specs and executable work items by using the **Gemini CLI** to analyze the spec's content and generate a thoughtful task breakdown. It then automates the creation of these tasks as GitHub issues within a new sprint milestone. ## When to Use Use this skill in the following situations: - Starting a new sprint or development cycle. - Converting an approved spec into actionable GitHub issues. - When you want an AI-assisted breakdown of an epic into atomic implementation tasks. ## Prerequisites - Project board configured with an "Approved Backlog" status column. - Approved spec files exist in the `docs/specs/` directory. - An Epic issue exists on GitHub that links to the spec file in its body. - `gh` CLI tool installed and authenticated. - `jq` tool installed for JSON parsing. - `gemini` CLI tool installed and authenticated. ## Workflow ### Step 1: Review Project Board Check the project board for approved specs (represented as Epics) ready to be planned. ### Step 2: Discuss Sprint Scope with User Engage the user to determine which epic(s) from the "Approved Backlog" to include in the sprint. ### Step 3: Define Sprint Metadata Work with the user to establish the sprint name (e.g., "Sprint 4"). ### Step 4: Run the Helper Script Execute the sprint planning script to automate GitHub issue creation: ```bash bash scripts/create-sprint-issues.sh ``` ### Step 5: Understand What the Script Does The helper script automates these steps: 1. **Queries Project Board**: Fetches all items from the "Approved Backlog" and prompts you to select an Epic to plan. 2. **Extracts Spec File**: Parses the selected Epic's body to find the associated spec file path. 3. **Creates Milestone**: Prompts you for a sprint name and creates the corresponding GitHub milestone. 4. **Decomposes Spec with AI**: Instead of relying on a rigid format, the script sends the full content of the spec file and the parent Epic to the **Gemini CLI**. It asks the AI to generate a list of atomic, actionable tasks based on its understanding of the document. 5. **Creates GitHub Issues**: The script parses the structured task list from Gemini's response and creates a GitHub issue for each task. Each issue is automatically titled, assigned to the new milestone, and includes a description and references to the parent Epic and spec file. ### Step 6: Verify Issue Creation After the script completes, review the newly created issues in your milestone. ```bash gh issue list --milestone "Your Sprint Name" ``` ### Step 7: Review Created Issues with User Walk through the AI-generated issues with your team. The generated tasks provide a strong baseline, but you should review them to confirm completeness, adjust priorities, and make any necessary refinements. ## Error Handling ### jq or Gemini Not Installed **Symptom**: Script reports that `jq` or `gemini` command is not found. **Solution**: Install the required tool and ensure it's in your system's PATH. ### No Approved Epics Found **Symptom**: Script reports no epics in the approved backlog. **Solution**: Ensure your Epics are in the correct status column on your project board. ### Epic Body Missing Spec Reference **Symptom**: Script cannot find a spec file path in the Epic's body. **Solution**: Edit the Epic's issue body on GitHub to include a valid path to a spec file (e.g., `docs/specs/my-feature.md`). ### Gemini CLI Issues **Symptom**: The script fails during the task decomposition step with an error from the `gemini` command. **Solution**: - Ensure the `gemini` CLI is installed and authenticated (`gemini auth`). - Check for API outages or network issues. - The quality of the task breakdown depends on a functional Gemini CLI. ## Notes - **Intelligent Decomposition**: The skill no longer relies on a rigid task format in spec files. Gemini reads and understands the document to create tasks. - **LLM guides strategy, script executes**: You decide which spec to plan; the script uses AI to handle the tedious decomposition and issue creation. - **One epic per run**: Run the script once for each Epic you want to plan for the sprint. - **Traceability is built-in**: Each created task issue automatically references the parent Epic and the source spec file. - **Manual refinement is expected**: The AI-generated task list is a starting point. Review and adjust it with your team.
Related in AI Agents
skill-development
IncludedComprehensive meta-skill for creating, managing, validating, auditing, and distributing Claude Code skills and slash commands (unified in v2.1.3+). Provides skill templates, creation workflows, validation patterns, audit checklists, naming conventions, YAML frontmatter guidance, progressive disclosure examples, and best practices lookup. Use when creating new skills, validating existing skills, auditing skill quality, understanding skill architecture, needing skill templates, learning about YAML frontmatter requirements, progressive disclosure patterns, tool restrictions (allowed-tools), skill composition, skill naming conventions, troubleshooting skill activation issues, creating custom slash commands, configuring command frontmatter, using command arguments ($ARGUMENTS, $1, $2), bash execution in commands, file references in commands, command namespacing, plugin commands, MCP slash commands, Skill tool configuration, or deciding between skills vs slash commands. Delegates to docs-management skill for official documentation.
reprompter
IncludedTransform messy prompts into well-structured, effective prompts — single or multi-agent. Use when: "reprompt", "reprompt this", "clean up this prompt", "structure my prompt", rough text needing XML tags and best practices, "reprompter teams", "repromptception", "run with quality", "smart run", "smart agents", multi-agent tasks, audits, parallel work, anything going to agent teams. Don't use when: simple Q&A, pure chat, immediate execution-only tasks. See "Don't Use When" section for details. Outputs: Structured XML/Markdown prompt, quality score (before/after), optional team brief + per-agent sub-prompts, agent team output files. Success criteria: Single mode quality score ≥ 7/10; Repromptception per-agent prompt quality score 8+/10; all required sections present, actionable and specific.
adaptive-compaction
IncludedAdaptive add-on policy and recovery layer that decides WHEN to compact, prune, snapshot, or fork -- replacing fixed-percent auto-compaction across Claude Code, Codex, and MCP-capable hosts. Trigger on auto-compact timing or damage: "when should I compact", "is it safe to compact now or start a fresh session", "auto-compact fires too early/mid-task", "switching to an unrelated task but the window still has space", "context rot", "answers get worse the longer the session runs", "the agent forgot the plan or my decisions after it summarized", "add a layer on top that manages context without changing the agent", raising autoCompactWindow to give the policy room, or installing/tuning a cross-tool compaction policy or PreCompact hook -- even when "compaction" is never said but the problem is context-window pressure or post-summarization memory loss. Do NOT use to summarize a conversation, build RAG, write a summarization prompt (decides WHEN not HOW), or answer max-context-length trivia.
agent-skill-creator
IncludedCreate cross-platform agent skills from workflow descriptions. Activates when users ask to create an agent, automate a repetitive workflow, create a custom skill, or need advanced agent creation. Triggers on phrases like create agent for, automate workflow, create skill for, every day I have to, daily I need to, turn process into agent, need to automate, create a cross-platform skill, validate this skill, export this skill, migrate this skill. Supports single skills, multi-agent suites, transcript processing, template-based creation, interactive configuration, cross-platform export, and spec validation.
llm-wiki
IncludedUse when building or maintaining a persistent personal knowledge base (second brain) in Obsidian where an LLM incrementally ingests sources, updates entity/concept pages, maintains cross-references, and keeps a synthesis current. Triggers include "second brain", "Obsidian wiki", "personal knowledge management", "ingest this paper/article/book", "build a research wiki", "compound knowledge", "Memex", or whenever the user wants knowledge to accumulate across sessions instead of being re-derived by RAG on every query.
skill-master
IncludedAgent Skills authoring, evaluation, and optimization. Create, edit, validate, benchmark, and improve skills following the agentskills.io specification. Use when designing SKILL.md files, structuring skill folders (references, scripts, assets), ingesting external documentation into skills, running trigger evals, benchmarking skill quality, optimizing descriptions, or performing blind A/B comparisons. Keywords: agentskills.io, SKILL.md, skill authoring, eval, benchmark, trigger optimization.