@arvorco/relentless 0.4.3 → 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. Run the conversion with routing: `relentless convert tasks.md --feature <name>`
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 convert command:
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/<feature>/tasks.md --feature <feature-name>
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
- After tasks.md is saved, automatically convert to prd.json with routing:
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
- This will:
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
- **Output Summary:**
212
- - Show routing table (story → complexity → harness/model → cost)
213
- - Show total estimated cost
214
- - Confirm prd.json saved
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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arvorco/relentless",
3
- "version": "0.4.3",
3
+ "version": "0.4.5",
4
4
  "description": "Universal AI agent orchestrator - works with Claude Code, Amp, OpenCode, Codex, Droid, and Gemini",
5
5
  "type": "module",
6
6
  "publishConfig": {
@@ -11,7 +11,7 @@
11
11
  *
12
12
  * **Supported models:**
13
13
  * - `opus-4.5` (claude-opus-4-5-20251101) - SOTA, best for code review and architecture
14
- * - `sonnet-4.5` (claude-sonnet-4-5-20251020) - Balanced, good for daily coding
14
+ * - `sonnet-4.5` (claude-sonnet-4-5-20250929) - Balanced, good for daily coding
15
15
  * - `haiku-4.5` (claude-haiku-4-5-20251001) - Fast and cheap, good for simple tasks
16
16
  *
17
17
  * These IDs map to the full Claude model identifiers in the CLI.
@@ -106,7 +106,7 @@ export const MODEL_REGISTRY: ModelProfile[] = [
106
106
  strengths: ["frontend", "refactoring", "daily_coding", "balanced"],
107
107
  limitations: [],
108
108
  cliFlag: "--model",
109
- cliValue: "claude-sonnet-4-5-20251020",
109
+ cliValue: "claude-sonnet-4-5-20250929",
110
110
  },
111
111
  {
112
112
  id: "haiku-4.5",