https://github.com/langerrr/zforge
Template-aware development workflow plugin for Claude Code.
https://github.com/langerrr/zforge
claude-code claude-code-plugin code-review developer-workflow feature-planning llm-tooling
Last synced: 19 days ago
JSON representation
Template-aware development workflow plugin for Claude Code.
- Host: GitHub
- URL: https://github.com/langerrr/zforge
- Owner: Langerrr
- Created: 2026-02-16T22:53:28.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2026-02-28T04:25:42.000Z (about 1 month ago)
- Last Synced: 2026-02-28T11:49:03.151Z (about 1 month ago)
- Topics: claude-code, claude-code-plugin, code-review, developer-workflow, feature-planning, llm-tooling
- Language: Shell
- Homepage:
- Size: 39.1 KB
- Stars: 3
- Watchers: 0
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# zforge
Template-aware development workflow plugin for Claude Code.
## Commands
| Command | Description |
|---------|-------------|
| `/plan [--spec file]` | Interactive planning — discovery, codebase exploration, architecture design, writes template files |
| `/compare ` | Parallel architecture comparison — spawns agents with different trade-off focuses |
| `/plan-status` | Show feature status for all plans under the current workspace |
| `/review [--staged \| --feature \| --only] [scope]` | Multi-reviewer code review with spawn/monitor pattern and confidence scoring |
| `/track ` | Show/update progress for a feature |
| `/feature-resume ` | Resume implementation on an existing feature |
| `/feature-orchestrate ` | Autonomous multi-phase execution with signal monitoring |
## Agents
| Agent | Used By | Purpose |
|-------|---------|---------|
| `code-architect` | `/compare` | Parallel architecture proposals with different trade-offs |
| `code-reviewer` | `/review`, `/feature-resume` | Confidence-scored code review (>=80 threshold) |
| `phase-agent` | `/feature-orchestrate` | Isolated phase implementation agent |
## Template Structure
`/plan` writes persistent artifacts to `docs/{feature_name}/` in the project:
```
docs/{feature_name}/
├── 00_design_spec.md # Requirements (generated interactively or from --spec)
├── 01_context.md # Feature context, key decisions, architecture
├── 02_plan.md # Technical implementation plan with phases
├── 03_integration_summary.md # Integration points and dependency map
├── 04_integration_plan.md # Detailed integration steps
├── 05_progress_overview.md # Phase status summary (planner-owned)
├── 05_progress/
│ ├── 05_00_agent_prompts_index.md # Agent prompt registry
│ ├── 05_XX_phase_name.md # Per-phase progress files
│ └── review.md # Compiled reviews (planner append-only)
├── 06_post_deployment.md # Post-deployment checklist
├── 07_testing_overview.md # Testing strategy overview
├── 07_testing/
│ ├── 07_01_test_plan.md # Detailed test plan
│ ├── 07_02_test_scripts.md # Test script specifications
│ └── 07_03_test_results.md # Test execution results
├── 08_configuration.md # Configuration and environment setup
├── 09_troubleshooting.md # Issues and solutions
├── 10_refactor_spec.md # [Refactoring] Goals, scope, what's changing
├── 11_refactor_context.md # [Refactoring] Current-state audit
└── 12_refactor_plan.md # [Refactoring] Migration/refactoring steps
```
## Scaling Model
| Task Size | Commands | Template Overhead |
|-----------|----------|-------------------|
| Bug fix | Planning mode + `/review` | Zero files |
| Small feature | `/plan` (light) + implement + `/review` | 3 files (00, 01, 02) |
| Medium feature | `/plan` + `/track` + `/review` | 5 files + progress dir |
| Large feature | `/plan` → `/feature-orchestrate` | Full template |
## Installation
```bash
git clone https://github.com/Langerrr/zforge.git
claude --plugin-dir ./zforge
```