From de6df5c8c71340b6e0d0c2fff3e7a6be65c28987 Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Mon, 9 Mar 2026 07:07:19 +0000 Subject: [PATCH] docs: complete Epic FEATURES-20260305-085909-JDI Integrate Superpowers Workflows Co-authored-by: julwrites <18639913+julwrites@users.noreply.github.com> --- AGENTS.md | 2 +- docs/tasks/GUIDE.md | 2 +- ...0305-085909-JDI-integrate-superpowers-workflows.md | 10 +++++----- templates/GUIDE.md | 11 +++++++++++ 4 files changed, 18 insertions(+), 7 deletions(-) diff --git a/AGENTS.md b/AGENTS.md index fb55b92..bff7e3c 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -12,7 +12,7 @@ To improve feature completeness, this repository integrates a sequence of rigoro - **Micro Planning:** `scripts/tasks.py breakdown [TASK_ID]` - **TDD Enforcement:** `python3 scripts/tdd.py state`, `python3 scripts/tdd.py run`, `python3 scripts/tdd.py reset` - **Orchestration:** `python3 scripts/orchestrator.py run`, `python3 scripts/orchestrator.py assign`, `python3 scripts/orchestrator.py monitor` -- **Local Review:** Pre-PR automated review via `scripts/review.py` (coming soon) +- **Local Review:** Pre-PR automated review via `scripts/review.py` ## Workflow 1. **Pick a Task**: Run `python3 scripts/tasks.py next` to find the best task, `context` to see active tasks, or `list` to see pending ones. diff --git a/docs/tasks/GUIDE.md b/docs/tasks/GUIDE.md index 744c298..867689f 100644 --- a/docs/tasks/GUIDE.md +++ b/docs/tasks/GUIDE.md @@ -104,7 +104,7 @@ The system has been enhanced with several integrated workflow commands to guide - **Micro Planning:** `scripts/tasks.py breakdown [TASK_ID]` - **TDD Enforcement:** `python3 scripts/tdd.py state`, `python3 scripts/tdd.py run`, `python3 scripts/tdd.py reset` - **Orchestration:** `python3 scripts/orchestrator.py run`, `python3 scripts/orchestrator.py assign`, `python3 scripts/orchestrator.py monitor` -- **Local Review:** Pre-PR automated review via `scripts/review.py` (coming soon) +- **Local Review:** Pre-PR automated review via `scripts/review.py` ## Agile Methodology diff --git a/docs/tasks/features/FEATURES-20260305-085909-JDI-integrate-superpowers-workflows.md b/docs/tasks/features/FEATURES-20260305-085909-JDI-integrate-superpowers-workflows.md index 2355611..4a4acee 100644 --- a/docs/tasks/features/FEATURES-20260305-085909-JDI-integrate-superpowers-workflows.md +++ b/docs/tasks/features/FEATURES-20260305-085909-JDI-integrate-superpowers-workflows.md @@ -1,6 +1,6 @@ --- id: FEATURES-20260305-085909-JDI -status: pending +status: completed title: Integrate Superpowers Workflows priority: medium created: 2026-03-05 08:59:09 @@ -17,7 +17,7 @@ See the detailed architectural document in `docs/architecture/SUPERPOWERS_INTEGR ## Subtasks -- [ ] Implement Phase 1: Planning & Isolation (`scripts/design.py`, `scripts/workspace.py`) -- [ ] Implement Phase 2: Granular Execution & TDD (`scripts/tasks.py breakdown`, `scripts/tdd.py`) -- [ ] Implement Phase 3: Subagent Orchestration & Review (`scripts/orchestrator.py`, `scripts/review.py`) -- [ ] Update `AGENTS.md` and `docs/tasks/GUIDE.md` to reflect new workflows. +- [x] Implement Phase 1: Planning & Isolation (`scripts/design.py`, `scripts/workspace.py`) +- [x] Implement Phase 2: Granular Execution & TDD (`scripts/tasks.py breakdown`, `scripts/tdd.py`) +- [x] Implement Phase 3: Subagent Orchestration & Review (`scripts/orchestrator.py`, `scripts/review.py`) +- [x] Update `AGENTS.md` and `docs/tasks/GUIDE.md` to reflect new workflows. diff --git a/templates/GUIDE.md b/templates/GUIDE.md index 3d0a944..867689f 100644 --- a/templates/GUIDE.md +++ b/templates/GUIDE.md @@ -95,6 +95,17 @@ Use the `scripts/tasks` wrapper to manage tasks. ./scripts/tasks migrate ``` +## Superpowers Workflows + +The system has been enhanced with several integrated workflow commands to guide feature development: + +- **Brainstorming:** `python3 scripts/design.py brainstorm --title "Feature" ...` +- **Workspace Setup:** `python3 scripts/workspace.py setup [TASK_ID]` +- **Micro Planning:** `scripts/tasks.py breakdown [TASK_ID]` +- **TDD Enforcement:** `python3 scripts/tdd.py state`, `python3 scripts/tdd.py run`, `python3 scripts/tdd.py reset` +- **Orchestration:** `python3 scripts/orchestrator.py run`, `python3 scripts/orchestrator.py assign`, `python3 scripts/orchestrator.py monitor` +- **Local Review:** Pre-PR automated review via `scripts/review.py` + ## Agile Methodology This system supports Agile/Scrum workflows for LLM-Human collaboration.