forge-resume
Original:🇺🇸 English
Translated
FORGE Resume — Resumes an existing FORGE project. Analyzes the current state, identifies the next action, and proposes to continue development. Usage: /forge-resume
1installs
Sourcefwehrling/forge
Added on
NPX Install
npx skill4agent add fwehrling/forge forge-resumeTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →/forge-resume — Resume a FORGE Project
Resumes work on an existing FORGE project by analyzing the current state
and identifying the next action to take.
French Language Rule
All content generated in French MUST use proper accents (é, è, ê, à, ù, ç, ô, î, etc.), follow French grammar rules (agreements, conjugations), and use correct spelling.
Workflow
-
Verify that FORGE is initialized:
- Read — if absent, suggest
.forge/config.yml/forge-init - Read for project context
CLAUDE.md
- Read
-
Analyze the project state:
-
Readfor sprint state
.forge/sprint-status.yaml -
Readfor existing artifacts:
docs/- exists? → Planning done
docs/prd.md - exists? → Architecture done
docs/architecture.md - exists? → UX done
docs/ux-design.md - exist? → Stories decomposed
docs/stories/*.md
-
Identify stories by status:
- : finished
completed - : in progress (priority)
in_progress - : to do
pending - : blocked (identify blockers)
blocked
-
Vector search for recent context:→ Load relevant history to better contextualize the resume
forge-memory search "<project name> recent activity" --limit 3
-
-
Determine the next action:Case A — No artifacts: → Suggestto start planning
/forge-planCase B — PRD exists, no architecture: → Suggest/forge-architectCase C — Architecture exists, no stories: → Suggest/forge-storiesCase D — Stories exist, some pending: → Suggestfor the next unblocked story/forge-build STORY-XXXCase E — Story in_progress: → Resume the current story with→ Read the already written code and existing tests/forge-build STORY-XXXCase F — All stories completed: → Suggestfor a global QA audit → Or/forge-verifyto decompose new stories/forge-stories -
Display the resume report:
FORGE — Resuming project <name> ───────────────────────────────── Stack : <type> / <language> Sprint : #<id> Stories : X completed / Y in_progress / Z pending / W blocked Last : STORY-XXX (<status>) — <title> Artifacts: [OK] docs/prd.md [OK] docs/architecture.md [--] docs/ux-design.md (missing) [OK] docs/stories/ (N stories) Recommended next action: → /forge-build STORY-XXX — <story title> -
Propose available actions:
- Continue development (recommended action)
- View full status ()
/forge-status - Go back (re-plan, re-architect)
- Add new stories
Notes
- This skill is the entry point when opening an existing FORGE project
- It does not modify any files, it only analyzes and recommends
- Compatible with projects initialized manually or via
/forge-init - If sprint-status.yaml is missing but artifacts exist, the skill reconstructs the state from the existing files