Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion docs/tasks/GUIDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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.
11 changes: 11 additions & 0 deletions templates/GUIDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down