forge-resume
npx skills add https://github.com/fwehrling/forge --skill forge-resume
Agent 安装分布
Skill 文档
/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
.forge/config.ymlâ if absent, suggest/forge-init - Read
CLAUDE.mdfor project context
- Read
-
Analyze the project state:
-
Read
.forge/sprint-status.yamlfor sprint state -
Read
docs/for existing artifacts:docs/prd.mdexists? â Planning donedocs/architecture.mdexists? â Architecture donedocs/ux-design.mdexists? â UX donedocs/stories/*.mdexist? â Stories decomposed
-
Identify stories by status:
completed: finishedin_progress: in progress (priority)pending: to doblocked: blocked (identify blockers)
-
Vector search for recent context:
forge-memory search "<project name> recent activity" --limit 3â Load relevant history to better contextualize the resume
-
-
Determine the next action:
Case A â No artifacts: â Suggest
/forge-planto start planningCase B â PRD exists, no architecture: â Suggest
/forge-architectCase C â Architecture exists, no stories: â Suggest
/forge-storiesCase D â Stories exist, some pending: â Suggest
/forge-build STORY-XXXfor the next unblocked storyCase E â Story in_progress: â Resume the current story with
/forge-build STORY-XXXâ Read the already written code and existing testsCase F â All stories completed: â Suggest
/forge-verifyfor a global QA audit â Or/forge-storiesto decompose new 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