@arvorco/relentless 0.1.20 → 0.1.22

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.
@@ -1,15 +1,42 @@
1
1
  ---
2
- description: Execute implementation workflow phase by phase.
2
+ description: Execute implementation workflow for a feature manually, story by story.
3
3
  ---
4
4
 
5
5
  Load the implement skill and begin systematic implementation.
6
6
 
7
+ **Usage:** `/relentless.implement [story-id]`
8
+
7
9
  **Context:** $ARGUMENTS
8
10
 
9
- The implement skill will:
10
- 1. Guide you through implementing tasks in dependency order
11
- 2. Track progress per user story
12
- 3. Ensure quality gates are met
13
- 4. Update progress.txt with learnings
11
+ The implement skill will guide you through:
12
+
13
+ 1. **TDD Workflow** - Tests first, then implementation
14
+ 2. **Quality Gates** - typecheck, lint, test must all pass
15
+ 3. **File Updates** - tasks.md, checklist.md, prd.json, progress.txt
16
+ 4. **Dependency Order** - Stories implemented in correct sequence
17
+
18
+ ## Quick Start
19
+
20
+ 1. Ensure you have all artifacts: spec.md, plan.md, tasks.md, checklist.md, prd.json
21
+ 2. Run `/relentless.analyze` first (must pass with no CRITICAL issues)
22
+ 3. Run `/relentless.implement` to start with the next available story
23
+ 4. Or run `/relentless.implement US-003` to implement a specific story
24
+
25
+ ## What Gets Updated
26
+
27
+ After each story:
28
+ - `tasks.md` - Acceptance criteria checked off
29
+ - `checklist.md` - Verified items checked off
30
+ - `prd.json` - Story marked as `passes: true`
31
+ - `progress.txt` - Progress entry with learnings
32
+
33
+ ## Prerequisites
34
+
35
+ - `/relentless.analyze` must pass
36
+ - All feature artifacts must exist
37
+ - Constitution and prompt.md reviewed
38
+
39
+ ## See Also
14
40
 
15
- Prerequisites: /relentless.analyze must pass (no CRITICAL issues)
41
+ - `relentless run` - Automated orchestration (runs agents automatically)
42
+ - `/relentless.analyze` - Check artifact consistency before implementing
@@ -5,137 +5,238 @@ description: "Execute implementation workflow phase by phase. Use after analysis
5
5
 
6
6
  # Implementation Workflow Executor
7
7
 
8
- Guide systematic implementation of features using the task breakdown.
8
+ Guide systematic implementation of features using TDD and quality-first approach.
9
9
 
10
10
  ---
11
11
 
12
12
  ## The Job
13
13
 
14
- Guide user through implementing tasks in correct order following dependencies.
14
+ Implement user stories one at a time, following strict TDD and updating all tracking files.
15
15
 
16
16
  ---
17
17
 
18
- ## Prerequisites
18
+ ## Before You Start
19
19
 
20
- Before starting:
21
- - `/relentless.analyze` must pass (no CRITICAL issues)
22
- - All artifacts exist (spec, plan, tasks, checklist)
23
- - Constitution reviewed
20
+ 1. **Read the Constitution** - Review `relentless/constitution.md` for project principles
21
+ 2. **Read prompt.md** - Review `relentless/prompt.md` for workflow guidelines
22
+ 3. **Read progress.txt** - Check learnings from previous iterations
23
+ 4. **Review artifacts** - Ensure spec.md, plan.md, tasks.md, checklist.md exist
24
+ 5. **Run `/relentless.analyze`** - Must pass with no CRITICAL issues
24
25
 
25
26
  ---
26
27
 
27
- ## Implementation Flow
28
+ ## CRITICAL: Quality Gates (Non-Negotiable)
28
29
 
29
- ### Phase 0: Setup
30
- 1. Review `tasks.md` for setup tasks
31
- 2. Install dependencies
32
- 3. Create directory structure
33
- 4. Initialize configuration
30
+ Before marking ANY story as complete, ALL checks must pass:
34
31
 
35
- ### Phase 1: Foundation
36
- 1. Implement data models
37
- 2. Create base utilities
38
- 3. Set up infrastructure
39
- 4. Tests for foundation
32
+ ```bash
33
+ # TypeScript strict mode check
34
+ bun run typecheck
40
35
 
41
- ### Phase 2: User Stories
42
- For each story in dependency order:
43
- 1. Read story acceptance criteria
44
- 2. Implement functionality
45
- 3. Write tests
46
- 4. Run quality checks (typecheck, lint)
47
- 5. Verify against checklist
48
- 6. Commit changes
49
- 7. Mark story complete in prd.json
36
+ # ESLint with zero warnings policy
37
+ bun run lint
50
38
 
51
- ### Phase 3: Polish
52
- 1. Performance optimization
53
- 2. Error handling improvements
54
- 3. Documentation
55
- 4. Final quality checks
39
+ # All tests must pass
40
+ bun test
41
+ ```
42
+
43
+ **If ANY check fails, DO NOT mark the story as complete. Fix the issues first.**
56
44
 
57
45
  ---
58
46
 
59
- ## Per-Story Workflow
47
+ ## TDD Workflow (MANDATORY)
60
48
 
61
- ```markdown
62
- **Current:** US-001: Create User Registration Endpoint
49
+ For EVERY story, follow strict Test-Driven Development:
63
50
 
64
- **Acceptance Criteria:**
65
- - [ ] POST /api/auth/register endpoint exists
66
- - [ ] Email validation works
67
- - [ ] Password requirements enforced
68
- - [ ] Password hashed before storage
69
- - [ ] Confirmation email sent
70
- - [ ] Returns 201 with user ID
71
- - [ ] Returns 400 for invalid input
72
- - [ ] Typecheck passes
73
- - [ ] Tests pass
74
-
75
- **Checklist Items:**
76
- - CHK-001: User table created
77
- - CHK-006: Password hashing uses bcrypt
78
- - CHK-011: Returns correct status codes
79
-
80
- **Steps:**
81
- 1. Create endpoint handler
82
- 2. Implement validation
83
- 3. Add password hashing
84
- 4. Integrate email service
85
- 5. Write unit tests
86
- 6. Write integration tests
87
- 7. Run typecheck
88
- 8. Run tests
89
- 9. Verify checklist items
90
- 10. Commit with message: "feat: US-001 - Create User Registration Endpoint"
51
+ ### Step 1: Write Failing Tests First (RED)
52
+ ```bash
53
+ # Create test file if needed
54
+ # Write tests that define expected behavior
55
+ bun test # Tests MUST fail initially
91
56
  ```
92
57
 
93
- ---
58
+ ### Step 2: Implement Minimum Code (GREEN)
59
+ ```bash
60
+ # Write only enough code to pass tests
61
+ bun test # Tests MUST pass
62
+ ```
94
63
 
95
- ## Quality Gates
64
+ ### Step 3: Refactor
65
+ ```bash
66
+ # Clean up while keeping tests green
67
+ bun test # Tests MUST still pass
68
+ ```
96
69
 
97
- Before marking story complete:
98
- - [ ] All acceptance criteria checked
99
- - [ ] Typecheck passes
100
- - [ ] Linter passes
101
- - [ ] Tests pass
102
- - [ ] Relevant checklist items verified
103
- - [ ] Code committed
70
+ **Do NOT skip TDD. Tests are contracts that validate your implementation.**
104
71
 
105
72
  ---
106
73
 
107
- ## Progress Tracking
74
+ ## Per-Story Implementation Flow
75
+
76
+ For each story (in dependency order):
77
+
78
+ ### 1. Identify the Story
79
+ - Read `prd.json` to find the next story where `passes: false`
80
+ - Check dependencies are met (dependent stories have `passes: true`)
81
+ - Read the story's acceptance criteria
82
+
83
+ ### 2. Find Relevant Checklist Items
84
+ - Open `checklist.md`
85
+ - Find items tagged with `[US-XXX]` for this story
86
+ - Note constitution compliance items `[Constitution]`
108
87
 
109
- Update `progress.txt` after each story:
88
+ ### 3. Implement with TDD
89
+ Follow the TDD workflow above for each acceptance criterion.
110
90
 
91
+ ### 4. Update tasks.md
92
+ As you complete each criterion:
111
93
  ```markdown
112
- ## 2026-01-11 - US-001
113
- - Implemented user registration endpoint
114
- - Added email validation and password hashing
115
- - Email service integration working
116
- - All tests passing
94
+ # Change from:
95
+ - [ ] Criterion text
117
96
 
118
- **Learnings:**
119
- - Bcrypt cost factor 12 provides good balance
120
- - Email validation regex from validator.js works well
121
- - Nodemailer setup straightforward
97
+ # To:
98
+ - [x] Criterion text
99
+ ```
100
+
101
+ ### 5. Update checklist.md
102
+ For each verified checklist item:
103
+ ```markdown
104
+ # Change from:
105
+ - [ ] CHK-XXX [US-001] Description
106
+
107
+ # To:
108
+ - [x] CHK-XXX [US-001] Description
109
+ ```
110
+
111
+ ### 6. Run Quality Checks
112
+ ```bash
113
+ bun run typecheck # 0 errors required
114
+ bun run lint # 0 warnings required
115
+ bun test # All tests must pass
116
+ ```
117
+
118
+ ### 7. Commit Changes
119
+ ```bash
120
+ git add -A
121
+ git commit -m "feat: US-XXX - Story Title"
122
+ ```
123
+
124
+ ### 8. Update prd.json
125
+ Set the story's `passes` field to `true`:
126
+ ```json
127
+ {
128
+ "id": "US-001",
129
+ "title": "...",
130
+ "passes": true, // <- Change from false to true
131
+ ...
132
+ }
133
+ ```
134
+
135
+ ### 9. Update progress.txt
136
+ Append progress entry:
137
+ ```markdown
138
+ ## [Date] - US-XXX: Story Title
139
+
140
+ **Implemented:**
141
+ - What was built
142
+ - Key decisions made
122
143
 
123
144
  **Files Changed:**
124
- - src/api/auth/register.ts (new)
125
- - src/services/user.service.ts (new)
126
- - src/utils/password.ts (new)
127
- - tests/auth/register.test.ts (new)
145
+ - path/to/file.ts (new/modified)
146
+
147
+ **Tests Added:**
148
+ - path/to/file.test.ts
149
+
150
+ **Learnings:**
151
+ - Patterns discovered
152
+ - Gotchas encountered
153
+
154
+ **Constitution Compliance:**
155
+ - Principle N: How it was followed
156
+
157
+ ---
158
+ ```
128
159
 
129
160
  ---
161
+
162
+ ## Example Per-Story Workflow
163
+
164
+ ```markdown
165
+ **Current:** US-001: Test Infrastructure Setup
166
+
167
+ **Acceptance Criteria:**
168
+ - [ ] `bun test` command runs successfully
169
+ - [ ] Test files with pattern `*.test.ts` are auto-discovered
170
+ - [ ] `bun test --coverage` shows coverage report
171
+ - [ ] Typecheck passes
172
+ - [ ] Lint passes
173
+
174
+ **Relevant Checklist Items:**
175
+ - [ ] CHK-001 [US-001] `bun test` command executes successfully
176
+ - [ ] CHK-002 [US-001] Test files with `*.test.ts` pattern are auto-discovered
177
+ - [ ] CHK-007 [Constitution] Tests written BEFORE implementation
178
+
179
+ **Implementation Steps:**
180
+ 1. Write a simple failing test first
181
+ 2. Configure bun test runner
182
+ 3. Verify test discovery works
183
+ 4. Run `bun run typecheck` - must pass
184
+ 5. Run `bun run lint` - must pass with 0 warnings
185
+ 6. Update tasks.md - check off completed criteria
186
+ 7. Update checklist.md - mark verified items
187
+ 8. Commit: "feat: US-001 - Test Infrastructure Setup"
188
+ 9. Update prd.json: set passes: true
189
+ 10. Update progress.txt with learnings
130
190
  ```
131
191
 
132
192
  ---
133
193
 
194
+ ## File Update Summary
195
+
196
+ After completing each story, these files MUST be updated:
197
+
198
+ | File | Update |
199
+ |------|--------|
200
+ | `tasks.md` | Check off `- [x]` completed acceptance criteria |
201
+ | `checklist.md` | Check off `- [x]` verified checklist items |
202
+ | `prd.json` | Set `"passes": true` for the story |
203
+ | `progress.txt` | Append progress entry with learnings |
204
+
205
+ ---
206
+
207
+ ## Implementation Phases
208
+
209
+ ### Phase 0: Setup
210
+ - Infrastructure, tooling, configuration
211
+ - Usually US-001 type stories
212
+
213
+ ### Phase 1: Foundation
214
+ - Data models, types, schemas
215
+ - Base utilities and helpers
216
+ - Core infrastructure
217
+
218
+ ### Phase 2: User Stories
219
+ - Feature implementation
220
+ - Follow dependency order strictly
221
+
222
+ ### Phase 3: Polish
223
+ - E2E tests
224
+ - Documentation
225
+ - Performance optimization
226
+
227
+ ---
228
+
134
229
  ## Notes
135
230
 
136
231
  - Work on ONE story at a time
137
- - Follow dependency order
138
- - Don't skip quality checks
139
- - Commit frequently
140
- - Update progress after each story
141
- - This is a guided workflow, not automated
232
+ - Follow dependency order strictly
233
+ - Never skip TDD - tests come FIRST
234
+ - Never skip quality checks
235
+ - Commit after each story
236
+ - Update ALL tracking files
237
+ - This is a guided workflow for manual implementation
238
+
239
+ ---
240
+
241
+ *Reference: See `relentless/prompt.md` for additional guidelines*
242
+ *Reference: See `relentless/constitution.md` for project principles*
package/CHANGELOG.md ADDED
@@ -0,0 +1,269 @@
1
+ # Changelog
2
+
3
+ All notable changes to Relentless will be documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
+
8
+ ## [Unreleased]
9
+
10
+ ## [0.1.20] - 2026-01-13
11
+
12
+ ### Added
13
+ - Constitution skill now creates **both** `constitution.md` AND `prompt.md` in one command
14
+ - Personalized `prompt.md` generation based on project structure analysis
15
+ - Automatic detection of quality commands from `package.json`
16
+ - Project-specific patterns extraction from README, AGENTS.md, and other docs
17
+ - TDD workflow guidance when tests are detected
18
+
19
+ ### Changed
20
+ - **BREAKING WORKFLOW**: `/relentless.constitution` now generates both constitution and prompt files
21
+ - Simplified generic `prompt.md` template from ~3.5KB to ~1KB
22
+ - Updated README with new simplified workflow (init → constitution → specify)
23
+ - Removed separate `/relentless.prompt` skill (now integrated into constitution)
24
+
25
+ ### Fixed
26
+ - Generic prompt template now properly encourages personalization
27
+ - Documentation now correctly reflects the simplified workflow
28
+
29
+ ## [0.1.19] - 2026-01-12
30
+
31
+ ### Added
32
+ - Dynamic story grid sizing based on terminal height
33
+ - Automatic calculation of available space for story display
34
+ - All stories now visible on large terminals (63+ rows)
35
+
36
+ ### Changed
37
+ - Story grid adapts to terminal size automatically
38
+ - Removed static 8-row limitation
39
+ - Improved space utilization (shows 40+ story rows on large terminals)
40
+
41
+ ### Fixed
42
+ - Hidden stories issue (only 16 of 23 stories were visible)
43
+ - Story grid now scales properly with terminal size
44
+
45
+ ## [0.1.18] - 2026-01-12
46
+
47
+ ### Added
48
+ - Rich story information display in TUI
49
+ - Priority badges with color coding (P1-P2 red, P3-P5 yellow, P6+ gray)
50
+ - Acceptance criteria count indicator `(Nc)` per story
51
+ - Research indicator emoji (🔍) for stories requiring investigation
52
+ - Phase badges showing story phase (Setup, Foundation, Stories, Polish)
53
+
54
+ ### Changed
55
+ - Story titles now show 40 characters (increased from 25, 60% more context)
56
+ - Enhanced Story type with priority, criteriaCount, research, and phase fields
57
+ - Improved visual hierarchy with better use of available terminal width
58
+
59
+ ### Fixed
60
+ - **CRITICAL**: TUI rendering artifacts completely resolved
61
+ - Removed all bordered components causing Ink reconciliation issues
62
+ - Simplified layout with text separators instead of borders (`── Title ──`)
63
+ - No more repeated empty borders or overlapping text
64
+
65
+ ## [0.1.17] - 2026-01-12
66
+
67
+ ### Fixed
68
+ - TUI scroll artifacts by constraining UI height to terminal dimensions
69
+ - Added terminal height awareness via `stdout.rows`
70
+ - Prevented UI from exceeding available terminal space
71
+
72
+ ## [0.1.16] - 2026-01-12
73
+
74
+ ### Fixed
75
+ - Terminal clearing before TUI start to prevent rendering artifacts
76
+ - Added ANSI escape codes to clear screen before Ink rendering
77
+
78
+ ## [0.1.15] - 2026-01-12
79
+
80
+ ### Fixed
81
+ - Newline rendering issues in TUI output
82
+ - Enhanced `addOutput()` to split and clean embedded newlines
83
+ - Removed `\n` prefixes from iteration messages
84
+
85
+ ## [0.1.14] - 2026-01-12
86
+
87
+ ### Fixed
88
+ - Empty line padding in TUI AgentOutput component
89
+ - Removed blank line padding that created visual artifacts
90
+
91
+ ## [0.1.13] - 2026-01-12
92
+
93
+ ### Added
94
+ - Checklist support in orchestration loop
95
+ - `checklist.md` now loaded and included in agent prompts
96
+ - Quality gates automatically presented to agents during execution
97
+
98
+ ### Changed
99
+ - Agent prompts now include quality checklist after plan.md
100
+ - Improved guidance for agents with project-specific quality requirements
101
+
102
+ ## [0.1.12] - 2026-01-12
103
+
104
+ ### Fixed
105
+ - **CRITICAL**: Bash scripts now included in npm package
106
+ - Changed `.npmignore` from `scripts/` to `/scripts/` to only exclude root directory
107
+ - `/relentless.specify` command now works correctly (was failing with "script not found")
108
+ - Package now includes 5 essential bash scripts (47KB total)
109
+
110
+ ## [0.1.11] - 2026-01-12
111
+
112
+ ### Changed
113
+ - Repository cleanup: Removed ~170KB of obsolete files
114
+ - Removed obsolete `.specify/` directory (92KB)
115
+ - Removed duplicate `skills/` directory at root (64KB)
116
+ - Removed obsolete scripts: `ralph.sh`, `prompt.md`, `prd.json.example`
117
+ - Cleaned up `.npmignore` references to removed files
118
+
119
+ ### Fixed
120
+ - Professional, lean codebase with clear structure
121
+
122
+ ## [0.1.10] - 2026-01-11
123
+
124
+ ### Fixed
125
+ - Version display now reads from `package.json` dynamically
126
+ - `relentless --version` now syncs automatically with releases
127
+ - Removed hardcoded version string
128
+
129
+ ## [0.1.9] - 2026-01-11
130
+
131
+ ### Fixed
132
+ - **CRITICAL**: `.claude/skills/` directory now included in npm package
133
+ - Added negation patterns to `.npmignore`: `!.claude/`, `!.claude/skills/`, `!.claude/commands/`
134
+ - `/relentless.constitution` and other skills now work after npm install
135
+ - Package grew from 54KB to 76KB with skills included
136
+
137
+ ## [0.1.8] - 2026-01-11
138
+
139
+ ### Added
140
+ - `--force` flag to `init` command for reinstalling/updating files
141
+ - Ability to overwrite existing relentless files with latest versions
142
+
143
+ ### Fixed
144
+ - Improved path resolution for global installations
145
+ - Better error handling and diagnostics in init command
146
+
147
+ ## [0.1.7] - 2026-01-11
148
+
149
+ ### Changed
150
+ - Renamed "Legacy" to "Ralph Wiggum Method" in documentation
151
+
152
+ ### Fixed
153
+ - Updated constitution command to use `.claude/skills/` paths
154
+ - Updated specify command to use new paths
155
+ - Removed obsolete `plan.old.md` command file
156
+
157
+ ## [0.1.6] - 2026-01-11
158
+
159
+ ### Fixed
160
+ - GitHub Actions: Added contents write permission for GitHub releases
161
+ - Updated to modern GitHub release action syntax
162
+
163
+ ## [0.1.5] - 2026-01-11
164
+
165
+ ### Changed
166
+ - Stopped tracking `package-lock.json` (npm package best practice)
167
+
168
+ ## [0.1.4] - 2026-01-11
169
+
170
+ ### Fixed
171
+ - Package-lock.json updates for consistency
172
+
173
+ ## [0.1.2] - 2026-01-11
174
+
175
+ ### Fixed
176
+ - Corrected bin path in `package.json`
177
+ - Fixed GitHub Actions workflow syntax
178
+
179
+ ## [0.1.1] - 2026-01-11
180
+
181
+ ### Fixed
182
+ - Initial bug fixes for npm publishing
183
+
184
+ ## [0.1.0] - 2026-01-10
185
+
186
+ ### Added - Initial Release
187
+
188
+ **Core Features:**
189
+ - Universal AI agent orchestrator supporting Claude Code, Amp, OpenCode, Codex, Droid, and Gemini
190
+ - Single binary installation with PATH setup
191
+ - Beautiful TUI interface with real-time progress tracking
192
+ - Intelligent agent fallback and rate limit detection
193
+ - Auto-recovery when rate limits reset
194
+
195
+ **Specification & Planning (Relentless Commands):**
196
+ - `/relentless.constitution` - Create project principles and governance
197
+ - `/relentless.specify` - Interactive feature specification from natural language
198
+ - `/relentless.plan` - Generate technical implementation plans
199
+ - `/relentless.tasks` - Create hierarchical task breakdown (4-phase structure)
200
+ - `/relentless.checklist` - Generate quality validation checklists
201
+ - `/relentless.clarify` - Interactive ambiguity resolution
202
+
203
+ **Task Management:**
204
+ - Dependency-ordered execution with circular dependency detection
205
+ - Parallel task markers for concurrent execution
206
+ - Phase-based planning (Setup → Foundation → Stories → Polish)
207
+ - Research phase support for investigation tasks
208
+
209
+ **CLI Commands:**
210
+ - `relentless init` - Initialize project structure
211
+ - `relentless run` - Execute orchestration loop
212
+ - `relentless convert` - Convert markdown PRDs to JSON
213
+ - `relentless features` - Manage feature directories
214
+ - `relentless analyze` - Cross-artifact consistency checking
215
+ - `relentless issues create` - Generate GitHub issues from stories
216
+
217
+ **Skills System:**
218
+ - Multi-tier agent support (Full/Extensions/Manual)
219
+ - Skills auto-installation for Claude Code, Amp, OpenCode
220
+ - Manual workflow support for Droid, Codex, Gemini
221
+
222
+ **Documentation:**
223
+ - Comprehensive README with quick start guides
224
+ - Agent-specific workflow documentation
225
+ - Architecture documentation
226
+ - MIT License
227
+
228
+ ---
229
+
230
+ ## Evolution from Ralph Wiggum
231
+
232
+ Relentless evolved from the [Ralph Wiggum Pattern](https://ghuntley.com/ralph/) created by Geoffrey Huntley. Key innovations:
233
+
234
+ - **Multi-agent support** - Works with any AI coding agent, not just Claude
235
+ - **Skills system** - Native commands instead of manual prompt engineering
236
+ - **Beautiful TUI** - Real-time visualization vs text-only output
237
+ - **Intelligent fallback** - Automatic agent switching on rate limits
238
+ - **Structured workflow** - Constitution → Specify → Plan → Tasks → Run
239
+
240
+ ---
241
+
242
+ ## Links
243
+
244
+ - **GitHub**: https://github.com/ArvorCo/Relentless
245
+ - **npm Package**: https://www.npmjs.com/package/@arvorco/relentless
246
+ - **License**: MIT
247
+ - **Inspiration**: [Ralph Wiggum Pattern](https://ghuntley.com/ralph/) by Geoffrey Huntley
248
+
249
+ [Unreleased]: https://github.com/ArvorCo/Relentless/compare/v0.1.20...HEAD
250
+ [0.1.20]: https://github.com/ArvorCo/Relentless/compare/v0.1.19...v0.1.20
251
+ [0.1.19]: https://github.com/ArvorCo/Relentless/compare/v0.1.18...v0.1.19
252
+ [0.1.18]: https://github.com/ArvorCo/Relentless/compare/v0.1.17...v0.1.18
253
+ [0.1.17]: https://github.com/ArvorCo/Relentless/compare/v0.1.16...v0.1.17
254
+ [0.1.16]: https://github.com/ArvorCo/Relentless/compare/v0.1.15...v0.1.16
255
+ [0.1.15]: https://github.com/ArvorCo/Relentless/compare/v0.1.14...v0.1.15
256
+ [0.1.14]: https://github.com/ArvorCo/Relentless/compare/v0.1.13...v0.1.14
257
+ [0.1.13]: https://github.com/ArvorCo/Relentless/compare/v0.1.12...v0.1.13
258
+ [0.1.12]: https://github.com/ArvorCo/Relentless/compare/v0.1.11...v0.1.12
259
+ [0.1.11]: https://github.com/ArvorCo/Relentless/compare/v0.1.10...v0.1.11
260
+ [0.1.10]: https://github.com/ArvorCo/Relentless/compare/v0.1.9...v0.1.10
261
+ [0.1.9]: https://github.com/ArvorCo/Relentless/compare/v0.1.8...v0.1.9
262
+ [0.1.8]: https://github.com/ArvorCo/Relentless/compare/v0.1.7...v0.1.8
263
+ [0.1.7]: https://github.com/ArvorCo/Relentless/compare/v0.1.6...v0.1.7
264
+ [0.1.6]: https://github.com/ArvorCo/Relentless/compare/v0.1.5...v0.1.6
265
+ [0.1.5]: https://github.com/ArvorCo/Relentless/compare/v0.1.4...v0.1.5
266
+ [0.1.4]: https://github.com/ArvorCo/Relentless/compare/v0.1.2...v0.1.4
267
+ [0.1.2]: https://github.com/ArvorCo/Relentless/compare/v0.1.1...v0.1.2
268
+ [0.1.1]: https://github.com/ArvorCo/Relentless/compare/v0.1.0...v0.1.1
269
+ [0.1.0]: https://github.com/ArvorCo/Relentless/releases/tag/v0.1.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arvorco/relentless",
3
- "version": "0.1.20",
3
+ "version": "0.1.22",
4
4
  "description": "Universal AI agent orchestrator - works with Claude Code, Amp, OpenCode, Codex, Droid, and Gemini",
5
5
  "type": "module",
6
6
  "publishConfig": {