ai-phase-builder 1.3.1 → 1.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +23 -14
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -185,14 +185,19 @@ cursor-agent login
|
|
|
185
185
|
|
|
186
186
|
</details>
|
|
187
187
|
|
|
188
|
-
### Step 4:
|
|
188
|
+
### Step 4: Create Your First Project
|
|
189
189
|
|
|
190
190
|
```bash
|
|
191
|
-
|
|
191
|
+
# Create project folder
|
|
192
|
+
mkdir my-project && cd my-project
|
|
193
|
+
|
|
194
|
+
# Initialize (runs setup wizard on first use)
|
|
195
|
+
ai-phases init
|
|
192
196
|
```
|
|
193
197
|
|
|
194
|
-
|
|
198
|
+
On first run, `init` will automatically:
|
|
195
199
|
- Verify your Cursor CLI installation
|
|
200
|
+
- Check GitHub CLI authentication
|
|
196
201
|
- Configure your preferences (UI library, design system)
|
|
197
202
|
- Set up automation options (auto-run, auto-commit, auto-push)
|
|
198
203
|
|
|
@@ -200,23 +205,27 @@ This interactive wizard will:
|
|
|
200
205
|
|
|
201
206
|
## Quick Start
|
|
202
207
|
|
|
208
|
+
After prerequisites are installed, it's just 3 commands:
|
|
209
|
+
|
|
203
210
|
```bash
|
|
204
|
-
# Create project folder
|
|
211
|
+
# 1. Create project folder
|
|
205
212
|
mkdir my-project && cd my-project
|
|
213
|
+
|
|
214
|
+
# 2. Initialize (setup wizard runs automatically on first use)
|
|
206
215
|
ai-phases init
|
|
207
216
|
|
|
208
|
-
# ONE COMMAND does everything:
|
|
217
|
+
# 3. ONE COMMAND does everything:
|
|
209
218
|
ai-phases refine "build a crypto price dashboard with real-time updates"
|
|
210
|
-
|
|
211
|
-
# That's it! The tool will:
|
|
212
|
-
# 1. Generate enhanced specification (Claude Opus)
|
|
213
|
-
# 2. Create phase plan with tasks
|
|
214
|
-
# 3. Create private GitHub repo
|
|
215
|
-
# 4. Run ALL phases automatically
|
|
216
|
-
# 5. Commit & push after each phase
|
|
217
|
-
# 6. Generate handovers between phases
|
|
218
219
|
```
|
|
219
220
|
|
|
221
|
+
That's it! The tool will:
|
|
222
|
+
1. Generate enhanced specification (Claude Opus)
|
|
223
|
+
2. Create phase plan with tasks
|
|
224
|
+
3. Create private GitHub repo
|
|
225
|
+
4. Run ALL phases automatically
|
|
226
|
+
5. Commit & push after each phase
|
|
227
|
+
6. Generate handovers between phases
|
|
228
|
+
|
|
220
229
|
### Want Manual Control?
|
|
221
230
|
|
|
222
231
|
```bash
|
|
@@ -242,7 +251,7 @@ ai-phases run --phase 2
|
|
|
242
251
|
| `ai-phases handover` | Generate handover summary for current phase (automated) |
|
|
243
252
|
| `ai-phases rollback` | Rollback a failed phase to retry |
|
|
244
253
|
| `ai-phases sync` | Detect and reconcile manual changes |
|
|
245
|
-
| `ai-phases config` | Manage configuration |
|
|
254
|
+
| `ai-phases config` | Manage configuration (use `--setup` to reconfigure) |
|
|
246
255
|
|
|
247
256
|
---
|
|
248
257
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ai-phase-builder",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.2",
|
|
4
4
|
"description": "AI-powered project phase orchestration for Cursor IDE. Transform ideas into structured development phases with intelligent handovers, rollback support, and Context7 integration.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|