@arvorco/relentless 0.4.4 → 0.4.5
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.
|
@@ -14,10 +14,12 @@ Convert user stories from tasks.md into prd.json format WITH automatic routing c
|
|
|
14
14
|
|
|
15
15
|
## The Job
|
|
16
16
|
|
|
17
|
+
**⚠️ CRITICAL: This skill requires executing the `relentless convert` CLI command. Do NOT generate prd.json manually!**
|
|
18
|
+
|
|
17
19
|
1. Locate tasks.md in the current feature directory
|
|
18
20
|
2. Validate story structure, dependencies, and TDD compliance
|
|
19
21
|
3. Preview conversion (show story count, dependency chain)
|
|
20
|
-
4.
|
|
22
|
+
4. **EXECUTE the CLI command:** `relentless convert relentless/features/NNN-feature/tasks.md --feature <feature-name>`
|
|
21
23
|
5. Validate the generated prd.json HAS routing metadata
|
|
22
24
|
6. Display routing summary (cost estimates per story)
|
|
23
25
|
7. Report next step
|
|
@@ -90,12 +92,14 @@ Before conversion, validate the tasks.md file:
|
|
|
90
92
|
|
|
91
93
|
## Step 3: Run Conversion (with Routing)
|
|
92
94
|
|
|
93
|
-
Execute the
|
|
95
|
+
**⚠️ IMPORTANT: Execute this bash command using the Bash tool. Do NOT generate prd.json manually!**
|
|
94
96
|
|
|
95
97
|
```bash
|
|
96
|
-
relentless convert relentless/features
|
|
98
|
+
relentless convert relentless/features/NNN-feature/tasks.md --feature <feature-name>
|
|
97
99
|
```
|
|
98
100
|
|
|
101
|
+
Replace `NNN-feature` with the actual feature directory name (e.g., `001-user-auth`).
|
|
102
|
+
|
|
99
103
|
### Options
|
|
100
104
|
|
|
101
105
|
| Flag | Description |
|
|
@@ -195,23 +195,30 @@ Check that:
|
|
|
195
195
|
|
|
196
196
|
## Step 8: Auto-Convert to prd.json
|
|
197
197
|
|
|
198
|
-
|
|
198
|
+
**CRITICAL: You MUST execute the CLI command below. Do NOT generate prd.json manually.**
|
|
199
|
+
|
|
200
|
+
After tasks.md is saved, run this command to convert to prd.json with routing:
|
|
199
201
|
|
|
200
202
|
```bash
|
|
201
203
|
relentless convert relentless/features/NNN-feature/tasks.md --feature <feature-name>
|
|
202
204
|
```
|
|
203
205
|
|
|
204
|
-
|
|
206
|
+
**⚠️ IMPORTANT:** Execute this bash command using the Bash tool. Do NOT:
|
|
207
|
+
- Generate the prd.json file yourself
|
|
208
|
+
- Skip this step
|
|
209
|
+
- Use any other method
|
|
210
|
+
|
|
211
|
+
The CLI will:
|
|
205
212
|
1. Parse tasks.md and validate structure
|
|
206
213
|
2. Classify complexity for each story
|
|
207
214
|
3. Route to optimal harness/model per story
|
|
208
215
|
4. Generate prd.json with routing metadata
|
|
209
216
|
5. Copy to prd.md for reference
|
|
210
217
|
|
|
211
|
-
**
|
|
212
|
-
-
|
|
213
|
-
-
|
|
214
|
-
- Confirm prd.json
|
|
218
|
+
**After running the command, report:**
|
|
219
|
+
- The routing table from CLI output (story → complexity → harness/model → cost)
|
|
220
|
+
- Total estimated cost
|
|
221
|
+
- Confirm prd.json was created
|
|
215
222
|
|
|
216
223
|
**Optional but Recommended:** `/relentless.checklist`
|
|
217
224
|
- Generates validation checklist with quality gates
|
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.4.5] - 2026-01-21
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- **Registry**: Corrected Claude Sonnet 4.5 model ID from `claude-sonnet-4-5-20251020` to `claude-sonnet-4-5-20250929`
|
|
14
|
+
- This was causing 404 errors when using the default model
|
|
15
|
+
- **Skills**: Fixed `relentless.tasks` and `relentless.convert` to enforce CLI execution
|
|
16
|
+
- Skills now explicitly instruct to run `relentless convert` command via Bash
|
|
17
|
+
- Prevents LLM from generating prd.json manually instead of using the CLI
|
|
18
|
+
|
|
10
19
|
## [0.4.3] - 2026-01-20
|
|
11
20
|
|
|
12
21
|
### Fixed
|