resume-plan

Bootstrap a new session to continue working on an existing plan. Reads plan artifacts, builds context, validates prerequisites, and prepares the agent for implementation. Use this skill at the start of a session when continuing a multi-session plan.

23 stars

Best use case

resume-plan is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

Bootstrap a new session to continue working on an existing plan. Reads plan artifacts, builds context, validates prerequisites, and prepares the agent for implementation. Use this skill at the start of a session when continuing a multi-session plan.

Teams using resume-plan should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/resume-plan/SKILL.md --create-dirs "https://raw.githubusercontent.com/christophacham/agent-skills-library/main/skills/ai-ml/resume-plan/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/resume-plan/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How resume-plan Compares

Feature / Agentresume-planStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

Bootstrap a new session to continue working on an existing plan. Reads plan artifacts, builds context, validates prerequisites, and prepares the agent for implementation. Use this skill at the start of a session when continuing a multi-session plan.

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

SKILL.md Source

# Skill: Resume Plan

## What This Skill Does

Bridges the gap between planning artifacts and implementation. When a new session starts and the agent needs to continue work on an existing plan, this skill:

1. **Finds** the active plan and identifies the current phase
2. **Reads** all relevant artifacts in the correct order (context bootstrap)
3. **Validates** that prerequisites for the current phase are met
4. **Presents** a concise briefing to the agent/user: what to do, where to look, what was decided
5. **Prepares** the todo list as the working entry point

## Why This Skill Exists

Planning skills (`create-plan`, `update-plan`) produce artifacts. Implementation happens across sessions. Without a defined bootstrap procedure, every new session starts with ad-hoc exploration -- the agent must independently discover which plan exists, which phase is active, what was decided, and what files to read. This wastes context budget and risks missing critical decisions from prior sessions.

This skill codifies the read-path that complements the write-path of the other planning skills.

## When to Use

- At the start of a new session when continuing a multi-session plan
- When the user says "continue with the plan", "resume phase N", or "what's next"
- After a session handover was created in a previous session
- When onboarding a different agent to an existing plan

Do NOT use this skill to create or modify plans -- use `create-plan` or `update-plan` instead.

## Execution Model

- **Always**: the primary agent runs this skill directly.
- **Rationale**: session bootstrap is fundamentally a context-building activity. The primary needs the context to guide the implementation session. Delegating to a subagent would build context in the wrong place.
- **Use `doc-explorer`**: optionally, to validate prerequisites that require codebase inspection (e.g., "Phase 1 tests must pass"). Results are written to `docs/`, not returned as text.
- **Do NOT delegate to `doc-explorer`**: this skill reads artifacts, it does not write them.

## Workflow

### Step 1: Discover the Plan

Find active plans:

- Check `plans/` directory for existing plan directories
- For each plan, read the frontmatter of `plan.md` to check status (`active` or `draft`)
- If multiple active plans exist, use the `question` tool to ask the user which plan to resume
- If no plans exist, inform the user and suggest using `create-plan`

### Step 2: Read the Plan Hub (Ordered)

Read artifacts in this specific order -- each builds on the previous:

1. **`plans/<name>/plan.md`** -- Understand objective, requirements, DoD, phase overview
2. **`plans/<name>/todo.md`** -- Identify the active phase, current task state, and Phase Context links
3. **Latest handover** in `plans/<name>/handovers/` (most recent by filename) -- Session context, decisions, blockers, next steps from the last session
4. **Active phase document** `plans/<name>/phases/phase-N.md` -- What/Why for the current phase, acceptance criteria
5. **Active implementation plan** `plans/<name>/implementation/phase-N-impl.md` -- How to implement, Required Context files, implementation steps

This order is intentional:
- Plan gives the big picture (why we're here)
- Todo gives the current state (where we are)
- Handover gives the session narrative (what happened last time)
- Phase gives the scope (what we need to do)
- Implementation plan gives the approach (how to do it)

### Step 3: Read Required Context

From the implementation plan's `Required Context` section, read each listed file:

- Module documentation (`docs/modules/<name>.md`) -- understand the code being modified
- Feature documentation (`docs/features/<name>.md`) -- understand the feature being built
- Any other files listed as required context

If `Required Context` is empty or the section doesn't exist, check the `Affected Modules` table for module doc links and read those instead.

If no project documentation exists under `docs/`, note this as a gap and suggest running `generate-docs`.

### Step 4: Validate Prerequisites

Check the phase document's `Prerequisites` section:

- For checklist items that can be verified from artifacts (e.g., "Phase 1 completed"): verify by reading the referenced phase's frontmatter status
- For checklist items that require codebase inspection (e.g., "Phase 1 tests pass"): optionally delegate to `doc-explorer` via Task tool
- For items that cannot be verified automatically: use the `question` tool to confirm with the user

If prerequisites are not met, inform the user and stop. Do not proceed with implementation on unmet prerequisites.

### Step 5: Present the Briefing

Summarize what was gathered into a concise briefing for the session. This is NOT written to a file -- it is presented in the conversation to establish shared context:

**Briefing structure:**

1. **Plan**: Name, objective (one line)
2. **Active Phase**: Number, title, objective (one line)
3. **Last Session**: Key decisions, blockers resolved/remaining (from handover)
4. **Current State**: What's completed, what's in progress, what's pending (from todo)
5. **This Session's Focus**: The next 3-5 concrete tasks from the todo list
6. **Key Files**: The specific files the agent will need to modify (from implementation plan steps)

### Step 6: Confirm and Begin

Use the `question` tool to confirm with the user:

- Does this briefing match their intent?
- Should the focus be adjusted?
- Are there any new constraints or changes since the last session?

After confirmation, the session is bootstrapped. The agent can begin implementation, using `update-plan` to track progress as work proceeds.

## Integration with Other Skills

| Skill              | Relationship                                                                            |
|--------------------|-----------------------------------------------------------------------------------------|
| `create-plan`      | Creates the artifacts that `resume-plan` reads. Must run before `resume-plan` is useful. |
| `update-plan`      | Used DURING implementation (after `resume-plan` bootstraps context) to track progress.  |
| `generate-handover`| Creates the handover that `resume-plan` reads at session start.                         |
| `generate-docs`    | Creates module/feature docs referenced by implementation plans' Required Context.       |
| `update-docs`      | Should run after implementation to keep docs in sync with code changes.                 |

## Rules

1. **Read-only**: This skill does NOT create or modify any files. It builds context from existing artifacts.
2. **Order matters**: Read artifacts in the specified order (Step 2). Each document builds understanding that informs the next.
3. **Don't skip handovers**: If a handover exists, it MUST be read. It contains decisions and context that no other artifact captures.
4. **Briefing is conversation, not a file**: The briefing (Step 5) is presented in chat, not written to `plans/`. It is ephemeral session context.
5. **Prerequisites are gates**: Do not proceed past Step 4 if prerequisites are unmet. Inform the user.
6. **Suggest missing artifacts**: If `docs/` doesn't exist, suggest `generate-docs`. If no handover exists, note it (first session on this plan -- that's fine).
7. **No built-in explore agent**: Do NOT use the built-in `explore` subagent type.
8. **Use `question` tool**: For plan selection, prerequisite confirmation, and briefing sign-off.

Related Skills

structured-autonomy-plan

23
from christophacham/agent-skills-library

Structured Autonomy Planning Prompt

plantuml-ascii

23
from christophacham/agent-skills-library

Generate ASCII art diagrams using PlantUML text mode. Use when user asks to create ASCII diagrams, text-based diagrams, terminal-friendly diagrams, or mentions plantuml ascii, text diagram, ascii art diagram. Supports: Converting PlantUML diagrams to ASCII art, Creating sequence diagrams, class diagrams, flowcharts in ASCII format, Generating Unicode-enhanced ASCII art with -utxt flag

create-plan

23
from christophacham/agent-skills-library

Create a structured implementation plan for a feature or change. This documentation shall serve Agents and Humans. Produces a plan with requirements, phases, implementation steps, todo list, and Definition of Done. Use this skill when the user wants to plan a non-trivial feature before implementing it.

breakdown-plan

23
from christophacham/agent-skills-library

Issue Planning and Automation prompt that generates comprehensive project plans with Epic > Feature > Story/Enabler > Test hierarchy, dependencies, priorities, and automated tracking.

genderapi-io-automation

23
from christophacham/agent-skills-library

Automate Genderapi IO tasks via Rube MCP (Composio). Always search tools first for current schemas.

gender-api-automation

23
from christophacham/agent-skills-library

Automate Gender API tasks via Rube MCP (Composio). Always search tools first for current schemas.

fred-economic-data

23
from christophacham/agent-skills-library

Query FRED (Federal Reserve Economic Data) API for 800,000+ economic time series from 100+ sources. Access GDP, unemployment, inflation, interest rates, exchange rates, housing, and regional data. Use for macroeconomic analysis, financial research, policy studies, economic forecasting, and academic research requiring U.S. and international economic indicators.

fidel-api-automation

23
from christophacham/agent-skills-library

Automate Fidel API tasks via Rube MCP (Composio). Always search tools first for current schemas.

fastapi-templates

23
from christophacham/agent-skills-library

Create production-ready FastAPI projects with async patterns, dependency injection, and comprehensive error handling. Use when building new FastAPI applications or setting up backend API projects.

fastapi-router-py

23
from christophacham/agent-skills-library

Create FastAPI routers with CRUD operations, authentication dependencies, and proper response models. Use when building REST API endpoints, creating new routes, implementing CRUD operations, or add...

fastapi-pro

23
from christophacham/agent-skills-library

Build high-performance async APIs with FastAPI, SQLAlchemy 2.0, and Pydantic V2. Master microservices, WebSockets, and modern Python async patterns.

expo-api-routes

23
from christophacham/agent-skills-library

Guidelines for creating API routes in Expo Router with EAS Hosting