issue-sequence

Implements an ordered list of GitHub issues sequentially on one shared branch and PR.

Updated Jun 25, 2026
One-click install
npx skills add https://github.com/richard-jh-mccrae/PokemonAI --skill issue-sequence-richard-jh-mccrae
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: issue-sequence
Source: https://github.com/richard-jh-mccrae/PokemonAI/tree/main/.agents/skills/issue-sequence
Command: npx skills add https://github.com/richard-jh-mccrae/PokemonAI --skill issue-sequence-richard-jh-mccrae

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Coordinating the implementation of multiple already-specced GitHub issues manually is error-prone: issues get done out of order, scope creep derails the branch, and discovered blockers stall the whole batch. This Skill runs a given ordered list of issue numbers one at a time in fresh subagents, all landing on a single shared branch and PR. ## Core Features & Use Cases - Ordered batch implementation: Executes a user-supplied sequence of issue numbers (e.g. 281, 280, 282) strictly in the given order, one issue at a time. - Fresh subagent per issue: Each issue is implemented in an isolated subagent context, keeping work scoped and reviewable. - Autonomous scope-creep triage: Small growth is auto-expanded into the current work, while large growth or discovered blockers are spun off and re-queued as new issues. - Use Case: A maintainer wants issues 281, 280, and 282 shipped as one PR. They invoke the sequence, and each issue is implemented in order on the shared branch, with any oversized discoveries automatically filed as follow-up issues. ## Quick Start Ask the agent to implement issues 281, 280, and 282 in that order as a single PR using the issue-sequence workflow.

Frequently Asked Questions about issue-sequence

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

FAQPage Schema
How do I implement multiple GitHub issues in one PR?▼

Provide an ordered list of issue numbers, such as 281, 280, 282, and the workflow implements them one at a time on a single shared branch. Each issue runs in a fresh subagent, and all changes land in one pull request.

How to batch GitHub issues in a specific order?▼

Invoke the sequence with the exact issue numbers in your desired order, for example "/issue-sequence 281,280,282". The workflow processes them strictly in that order rather than by priority or number.

What happens when scope creep is found during issue implementation?▼

Small growth is auto-expanded into the current issue's work. Large growth or a discovered blocker is spun off and re-queued as a new issue instead of derailing the current batch.

Does this workflow work with unspecced GitHub issues?▼

No, the workflow expects already-specced issues as input. Issues must have defined specifications before being queued, since each one is implemented directly in a fresh subagent without a planning phase.

Why does each issue run in a fresh subagent?▼

A fresh subagent per issue keeps context isolated so one issue's work does not leak into another's. This preserves scoping, stop conditions, and reviewability across the shared branch.