{"id":44835462,"url":"https://github.com/langerrr/zforge","last_synced_at":"2026-03-11T06:03:00.238Z","repository":{"id":338890670,"uuid":"1159587704","full_name":"Langerrr/zforge","owner":"Langerrr","description":"Template-aware development workflow plugin for Claude Code.","archived":false,"fork":false,"pushed_at":"2026-02-28T04:25:42.000Z","size":40,"stargazers_count":3,"open_issues_count":1,"forks_count":1,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-02-28T11:49:03.151Z","etag":null,"topics":["claude-code","claude-code-plugin","code-review","developer-workflow","feature-planning","llm-tooling"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Langerrr.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-02-16T22:53:28.000Z","updated_at":"2026-02-28T10:13:41.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/Langerrr/zforge","commit_stats":null,"previous_names":["langerrr/zforge"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/Langerrr/zforge","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Langerrr%2Fzforge","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Langerrr%2Fzforge/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Langerrr%2Fzforge/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Langerrr%2Fzforge/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Langerrr","download_url":"https://codeload.github.com/Langerrr/zforge/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Langerrr%2Fzforge/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30372550,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-10T21:41:54.280Z","status":"online","status_checked_at":"2026-03-11T02:00:07.027Z","response_time":84,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["claude-code","claude-code-plugin","code-review","developer-workflow","feature-planning","llm-tooling"],"created_at":"2026-02-17T01:12:52.926Z","updated_at":"2026-03-11T06:03:00.232Z","avatar_url":"https://github.com/Langerrr.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# zforge\n\nTemplate-aware development workflow plugin for Claude Code.\n\n## Commands\n\n| Command | Description |\n|---------|-------------|\n| `/plan \u003cname\u003e [--spec file]` | Interactive planning — discovery, codebase exploration, architecture design, writes template files |\n| `/compare \u003cname\u003e` | Parallel architecture comparison — spawns agents with different trade-off focuses |\n| `/plan-status` | Show feature status for all plans under the current workspace |\n| `/review [--staged \\| --feature \\| --only] [scope]` | Multi-reviewer code review with spawn/monitor pattern and confidence scoring |\n| `/track \u003cname\u003e` | Show/update progress for a feature |\n| `/feature-resume \u003cname\u003e` | Resume implementation on an existing feature |\n| `/feature-orchestrate \u003cname\u003e` | Autonomous multi-phase execution with signal monitoring |\n\n## Agents\n\n| Agent | Used By | Purpose |\n|-------|---------|---------|\n| `code-architect` | `/compare` | Parallel architecture proposals with different trade-offs |\n| `code-reviewer` | `/review`, `/feature-resume` | Confidence-scored code review (\u003e=80 threshold) |\n| `phase-agent` | `/feature-orchestrate` | Isolated phase implementation agent |\n\n## Template Structure\n\n`/plan` writes persistent artifacts to `docs/{feature_name}/` in the project:\n\n```\ndocs/{feature_name}/\n├── 00_design_spec.md              # Requirements (generated interactively or from --spec)\n├── 01_context.md                  # Feature context, key decisions, architecture\n├── 02_plan.md                     # Technical implementation plan with phases\n├── 03_integration_summary.md      # Integration points and dependency map\n├── 04_integration_plan.md         # Detailed integration steps\n├── 05_progress_overview.md        # Phase status summary (planner-owned)\n├── 05_progress/\n│   ├── 05_00_agent_prompts_index.md  # Agent prompt registry\n│   ├── 05_XX_phase_name.md       # Per-phase progress files\n│   └── review.md                  # Compiled reviews (planner append-only)\n├── 06_post_deployment.md          # Post-deployment checklist\n├── 07_testing_overview.md         # Testing strategy overview\n├── 07_testing/\n│   ├── 07_01_test_plan.md         # Detailed test plan\n│   ├── 07_02_test_scripts.md      # Test script specifications\n│   └── 07_03_test_results.md      # Test execution results\n├── 08_configuration.md            # Configuration and environment setup\n├── 09_troubleshooting.md          # Issues and solutions\n├── 10_refactor_spec.md            # [Refactoring] Goals, scope, what's changing\n├── 11_refactor_context.md         # [Refactoring] Current-state audit\n└── 12_refactor_plan.md            # [Refactoring] Migration/refactoring steps\n```\n\n## Scaling Model\n\n| Task Size | Commands | Template Overhead |\n|-----------|----------|-------------------|\n| Bug fix | Planning mode + `/review` | Zero files |\n| Small feature | `/plan` (light) + implement + `/review` | 3 files (00, 01, 02) |\n| Medium feature | `/plan` + `/track` + `/review` | 5 files + progress dir |\n| Large feature | `/plan` → `/feature-orchestrate` | Full template |\n\n## Installation\n\n```bash\ngit clone https://github.com/Langerrr/zforge.git\nclaude --plugin-dir ./zforge\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flangerrr%2Fzforge","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flangerrr%2Fzforge","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flangerrr%2Fzforge/lists"}