Agent Plugins Marketplace
← All plugins

stacked-planning

Plans and lands work that spans several pull requests as ordered stacks, with a PR size gate and a stack overlap check

Claude CodeAgent Plugins4 Skills

By wmxscottLicense: MIT0 GitHub starsUpdated 2 hours ago

Directory evidence

Runtimes
Claude Code and Agent Plugins
Parsed components
4 skill or MCP entries
Source updated
Sep 25, 2026
Manifest status
Canonical path parsed

The directory validates manifest shape and source location. It does not execute the plugin or provide a security endorsement. Review the indexing methodology →

Install stacked-planning for Claude Code

Installs for the current user
claude plugin marketplace add IchenDEV/agent-plugin-mkt
claude plugin marketplace update agent-plugin-marketplace
claude plugin install stacked-planning@agent-plugin-marketplace

Paste and run these commands in a terminal with Claude Code. They add and refresh the PluginsMP catalog, then install this plugin.

The installer fetches third-party code from the source repository shown on this page. This directory validates manifest structure and source location, but does not perform a security audit; review the manifest, components, and source before installing.

Get the source manually
git clone https://github.com/wmxscott/ai-toolkit

Clone the source repository, then follow its setup instructions to add the plugin to a compatible client. The plugin root is plugins/stacked-planning/.

Plugin files

plugins/stacked-planning/
├── .claude-plugin/plugin.json
├── plugin.json
├── skills/authoring-stacked-plans/SKILL.md
├── skills/implementing-stacked-plans/SKILL.md
├── skills/landing-changes/SKILL.md
└── skills/stacked-planning/SKILL.md

Included Skills4

authoring-stacked-plansskills/authoring-stacked-plans/SKILL.md

Use when work is already known to span more than one pull request and has to be decomposed into an ordered stack of them, when a change has passed the PR size cap and is still growing, or when a stack is nearing a fourth PR with no written plan. Covers the decomposition and the plan artifact recording it — not deciding what to build, and not task-level planning inside a single PR.

implementing-stacked-plansskills/implementing-stacked-plans/SKILL.md

Use when a plan in docs/plans/ already defines its work as stacks of PRs and the user asks to implement, execute, or continue it, or names one of its stacks or phases — orchestrates one subagent per PR in its own worktree, reviewing and landing each before dispatching the next. Orchestration above the PR boundary only — everything inside a single PR — its tests, its debugging, its review — belongs to the subagent doing it. Not for writing a new plan; see authoring-stacked-plans.

landing-changesskills/landing-changes/SKILL.md

Use when starting work on a branch or worktree, when about to commit, when opening a pull request, or while a pull request's checks are still running — the branch, worktree and PR discipline every change goes through. Mechanics only — it does not judge whether the work is done, review the change, or decide whether a branch should be merged, kept, or discarded.

stacked-planningskills/stacked-planning/SKILL.md

Use only when work will land as more than one pull request and it is genuinely unclear whether to write the stacked plan or execute one that already exists — a router between authoring-stacked-plans and implementing-stacked-plans. Not a general entry point for planning or design, and not for a change that fits in one PR.

Plugin manifests2

plugins/stacked-planning/.claude-plugin/plugin.json
{
  "$schema": "https://json.schemastore.org/claude-code-plugin-manifest.json",
  "name": "stacked-planning",
  "description": "Plans and lands work that spans several pull requests as ordered stacks, with a PR size gate and a stack overlap check",
  "author": {
    "name": "wmxscott"
  },
  "homepage": "https://github.com/wmxscott/ai-toolkit/tree/main/plugins/stacked-planning",
  "repository": "https://github.com/wmxscott/ai-toolkit",
  "license": "MIT",
  "keywords": [
    "planning",
    "stacked-prs",
    "pull-requests",
    "code-review",
    "worktrees"
  ]
}
plugins/stacked-planning/plugin.json
{
  "$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
  "name": "stacked-planning",
  "description": "Plans and lands work that spans several pull requests as ordered stacks, with a PR size gate and a stack overlap check",
  "author": {
    "name": "wmxscott"
  },
  "homepage": "https://github.com/wmxscott/ai-toolkit/tree/main/plugins/stacked-planning",
  "repository": "https://github.com/wmxscott/ai-toolkit",
  "license": "MIT",
  "keywords": [
    "planning",
    "stacked-prs",
    "pull-requests",
    "code-review",
    "worktrees"
  ],
  "extensions": {
    "com.openai": {
      "interface": {
        "displayName": "Stacked Planning",
        "shortDescription": "Plan and land multi-PR work as ordered stacks",
        "developerName": "wmxscott",
        "category": "Developer Tools",
        "capabilities": [
          "Read",
          "Write"
        ],
        "websiteURL": "https://github.com/wmxscott/ai-toolkit/tree/main/plugins/stacked-planning"
      }
    }
  }
}

If you maintain this plugin, link to this source-backed listing from your README so users can review its manifest and indexed components.

[stacked-planning on Agent Plugins Marketplace](https://pluginsmp.com/plugins/stacked-planning)