Quick Start
Quick Start
Basic Usage
Invoke the skill from any Claude Code session where the plugin is installed:
text
/forge <describe your task here>
/forge https://github.com/org/repo/issues/123
/forge https://myorg.atlassian.net/browse/PROJ-456When given a GitHub Issue or Jira URL, the pipeline fetches the issue details and posts the final summary back as a comment.
Examples
text
# Simple task with auto-approve
/forge --effort=S --auto Fix the null pointer crash in auth middleware
# Medium task, skip PR creation
/forge --nopr Add retry logic to the API client
# Large task with debug diagnostics
/forge --effort=L --debug Add a new validation layerFlags
| Flag | Description |
|---|---|
--effort=<S|M|L> | Force effort level. Determines flow template (light/standard/full). Default: M. |
--auto | Skip human checkpoints when AI verdict is APPROVE. REVISE still pauses. |
--nopr | Skip PR creation. Changes committed and pushed but no PR opened. |
--debug | Append Debug Report to summary.md with execution diagnostics. |
--discuss | Trigger a pre-pipeline clarification dialogue for plain-text input. |
| (auto-detected) | Resume by providing the spec directory name. No flag needed. |
Resume an Interrupted Pipeline
Pass the spec directory name. Resume is auto-detected from .specs/ directory existence:
text
/forge 20260320-fix-auth-timeoutAbandon a Pipeline
Use the MCP tool:
text
mcp__forge-state__abandon with workspace: .specs/20260320-fix-auth-timeoutOr delete the state file:
bash
rm .specs/20260320-fix-auth-timeout/state.jsonWhat Happens During a Run
- Input validation — deterministic + semantic checks
- Workspace setup — creates
request.mdandstate.jsonin.specs/ - Analysis phases — situation analysis and investigation (read-only)
- Design — architect creates
design.md, reviewer approves or revises - Human checkpoint — you review the design
- Task decomposition — tasks broken down, reviewed
- Implementation — each task implemented with TDD, then code-reviewed
- Verification — comprehensive review + final build/test verification
- PR creation — commits, pushes, opens PR
- Summary —
summary.mdwith improvement report
For detailed phase descriptions, see Pipeline Flow. For effort-based phase selection, see Flow Templates.