resume-bootstrap

Resume an interrupted Copilot bootstrap pipeline from the last completed phase.

1|Updated Mar 19, 2026
One-click install
npx skills add https://github.com/vndkubi/code-graph --skill resume-bootstrap
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: resume-bootstrap
Source: https://github.com/vndkubi/code-graph/tree/main/.github/skills/resume-bootstrap
Command: npx skills add https://github.com/vndkubi/code-graph --skill resume-bootstrap

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Resume an interrupted Copilot bootstrap pipeline from the last completed phase. Reads .github/.bootstrap-state.json to determine which phases completed and which need to run. Use when the bootstrap pipeline was interrupted mid-run (context exhaustion, session timeout), Keywords: resume bootstrap, continue pipeline, restart from phase.

Core Features & Use Cases

  • Read .github/.bootstrap-state.json to determine progress across phases (completed, in_progress, skipped, pending).
  • Resume execution from the next pending phase, regenerating only missing outputs and avoiding overwriting completed work.
  • Handle errors and edge cases (missing state file, changed toolkit version, corrupted checkpoint) with clear prompts and safe defaults.

Quick Start

Run the resume-bootstrap skill to continue the bootstrap pipeline from the last completed phase.

Frequently Asked Questions about resume-bootstrap

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

FAQPage Schema
How do I resume an interrupted Copilot bootstrap pipeline?

To resume an interrupted Copilot bootstrap pipeline, the skill reads the .github/.bootstrap-state.json state file to determine completed phases and resumes execution from the next pending phase. It regenerates missing outputs without overwriting completed work.

What happens if my GitHub bootstrap state file is corrupted or missing?

If the bootstrap state file is corrupted or missing, the skill handles these edge cases with clear prompts and safe defaults to prevent overwriting completed work or corrupting state. It avoids re-running completed phases by validating checkpoint integrity.

Can I continue a GitHub pipeline from a specific phase after a session timeout?

Yes, you can continue a GitHub pipeline after a session timeout by reading the .github/.bootstrap-state.json checkpoint. The skill identifies in-progress, skipped, and pending phases to safely resume execution from the last completed state.

Does the pipeline resume tool work if the toolkit version changed mid-run?

The resume tool detects a changed toolkit version through state file validation and handles the edge case with clear prompts and safe defaults. It ensures pipeline state integrity before resuming pending phases to avoid corrupting checkpoints.

What is the best way to avoid re-running completed phases when restarting a bootstrap workflow?

The best way to avoid re-running completed phases when restarting a bootstrap workflow is to use state management via .github/.bootstrap-state.json. This skill tracks completed, in-progress, skipped, and pending phases to regenerate only missing outputs.