@arvorco/relentless 0.2.0 → 0.3.0
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/CHANGELOG.md +95 -1
- package/README.md +205 -983
- package/Relentless.png +0 -0
- package/Relentless.svg +1 -0
- package/bin/relentless.ts +121 -0
- package/package.json +1 -1
- package/src/cli/queue.ts +406 -0
- package/src/execution/commands.ts +541 -0
- package/src/execution/runner.ts +236 -4
- package/src/prd/parser.ts +140 -0
- package/src/prd/types.ts +8 -6
- package/src/queue/index.ts +45 -0
- package/src/queue/loader.ts +97 -0
- package/src/queue/lock.ts +137 -0
- package/src/queue/parser.ts +142 -0
- package/src/queue/processor.ts +141 -0
- package/src/queue/types.ts +81 -0
- package/src/queue/writer.ts +210 -0
- package/src/tui/App.tsx +23 -0
- package/src/tui/TUIRunner.tsx +183 -2
- package/src/tui/components/QueueInput.tsx +160 -0
- package/src/tui/components/QueuePanel.tsx +169 -0
- package/src/tui/components/QueueRemoval.tsx +306 -0
- package/src/tui/hooks/useTUI.ts +6 -0
- package/src/tui/types.ts +13 -0
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,91 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.3.0] - 2026-01-14
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
- **Queue System for Mid-Run User Guidance**: Inject prompts and commands while orchestration is running
|
|
14
|
+
- Queue file format (`.queue.txt`) with ISO timestamps
|
|
15
|
+
- Structured commands: `[PAUSE]`, `[SKIP US-XXX]`, `[PRIORITY US-XXX]`, `[ABORT]`
|
|
16
|
+
- Text prompts injected into agent context at iteration start
|
|
17
|
+
- CLI commands: `relentless queue add`, `queue list`, `queue remove`, `queue clear`
|
|
18
|
+
- TUI integration: `q` to add, `d+1-9` to delete, `D+y` to clear all
|
|
19
|
+
- Real-time queue panel with file watching
|
|
20
|
+
- Crash recovery and persistence (`.queue.processed.txt` audit trail)
|
|
21
|
+
- Concurrent-safe atomic writes with file locking
|
|
22
|
+
- 374 tests across 19 test files (unit, integration, E2E)
|
|
23
|
+
- Test helpers in `tests/helpers/` with fixtures and utilities
|
|
24
|
+
|
|
25
|
+
### Changed
|
|
26
|
+
- Runner now processes queue at start of each iteration
|
|
27
|
+
- TUI App includes QueuePanel, QueueInput, and QueueRemoval components
|
|
28
|
+
|
|
29
|
+
## [0.2.0] - 2026-01-13
|
|
30
|
+
|
|
31
|
+
### Added
|
|
32
|
+
- **Multi-agent skills installation**: All 6 agents now get skills installed automatically via `relentless init`
|
|
33
|
+
- Amp support: `.amp/skills/` with full skill support
|
|
34
|
+
- OpenCode support: `.opencode/skill/` and `.opencode/command/` (singular folder names!)
|
|
35
|
+
- Codex support: `.codex/skills/` and `~/.codex/prompts/` for user-level prompts
|
|
36
|
+
- Factory/Droid support: `.factory/skills/` and `.factory/commands/`
|
|
37
|
+
- Gemini support: `.gemini/GEMINI.md` context file with instructions
|
|
38
|
+
- Self-destruction prevention when running `relentless init -f` in Relentless project itself
|
|
39
|
+
- Landing page with Ralph Wiggum and "What's in a Name?" section
|
|
40
|
+
|
|
41
|
+
### Changed
|
|
42
|
+
- **BREAKING**: Skills now installed to agent-specific folders (previously Claude-only)
|
|
43
|
+
- README completely rewritten with cleaner design and better structure
|
|
44
|
+
- Added "What's in a Name?" section with RALPH/RELENTLESS acronyms
|
|
45
|
+
- Simplified Quick Start (4 steps)
|
|
46
|
+
- Updated Supported Agents table with correct folder paths
|
|
47
|
+
|
|
48
|
+
### Fixed
|
|
49
|
+
- Running `init -f` in the Relentless project no longer deletes source skills
|
|
50
|
+
- Added `.amp/`, `.codex/`, `.factory/`, `.gemini/`, `.opencode/` to `.gitignore`
|
|
51
|
+
|
|
52
|
+
## [0.1.27] - 2026-01-13
|
|
53
|
+
|
|
54
|
+
### Changed
|
|
55
|
+
- `prompt.md` no longer created by `relentless init` - generated only by `/relentless.constitution`
|
|
56
|
+
- Consolidated prompt generation into constitution skill for better customization
|
|
57
|
+
|
|
58
|
+
## [0.1.26] - 2026-01-13
|
|
59
|
+
|
|
60
|
+
### Fixed
|
|
61
|
+
- Protected `prompt.md` from being overwritten by `init -f` flag
|
|
62
|
+
- Added prompt template for constitution skill to generate personalized prompts
|
|
63
|
+
|
|
64
|
+
## [0.1.25] - 2026-01-13
|
|
65
|
+
|
|
66
|
+
### Changed
|
|
67
|
+
- Templates now consolidated inside skills directory
|
|
68
|
+
- Removed root `templates/` directory (moved to `.claude/skills/*/templates/`)
|
|
69
|
+
|
|
70
|
+
## [0.1.24] - 2026-01-13
|
|
71
|
+
|
|
72
|
+
### Fixed
|
|
73
|
+
- Minor stability improvements
|
|
74
|
+
|
|
75
|
+
## [0.1.23] - 2026-01-13
|
|
76
|
+
|
|
77
|
+
### Changed
|
|
78
|
+
- Skills made generic and project-agnostic
|
|
79
|
+
- Removed Relentless-specific references from skill templates
|
|
80
|
+
- Skills can now be used in any project without modification
|
|
81
|
+
|
|
82
|
+
## [0.1.22] - 2026-01-13
|
|
83
|
+
|
|
84
|
+
### Fixed
|
|
85
|
+
- Constitution parser now handles bullet-point format correctly
|
|
86
|
+
- MUST/SHOULD rules properly extracted from bulleted lists
|
|
87
|
+
|
|
88
|
+
## [0.1.21] - 2026-01-13
|
|
89
|
+
|
|
90
|
+
### Fixed
|
|
91
|
+
- `loadConstitution` now auto-finds constitution.md in relentless/ folder
|
|
92
|
+
- Progress file null checks prevent crashes on missing files
|
|
93
|
+
- Runner enhanced to load spec.md and tasks.md content for agent context
|
|
94
|
+
|
|
10
95
|
## [0.1.20] - 2026-01-13
|
|
11
96
|
|
|
12
97
|
### Added
|
|
@@ -246,7 +331,16 @@ Relentless evolved from the [Ralph Wiggum Pattern](https://ghuntley.com/ralph/)
|
|
|
246
331
|
- **License**: MIT
|
|
247
332
|
- **Inspiration**: [Ralph Wiggum Pattern](https://ghuntley.com/ralph/) by Geoffrey Huntley
|
|
248
333
|
|
|
249
|
-
[Unreleased]: https://github.com/ArvorCo/Relentless/compare/v0.
|
|
334
|
+
[Unreleased]: https://github.com/ArvorCo/Relentless/compare/v0.3.0...HEAD
|
|
335
|
+
[0.3.0]: https://github.com/ArvorCo/Relentless/compare/v0.2.0...v0.3.0
|
|
336
|
+
[0.2.0]: https://github.com/ArvorCo/Relentless/compare/v0.1.27...v0.2.0
|
|
337
|
+
[0.1.27]: https://github.com/ArvorCo/Relentless/compare/v0.1.26...v0.1.27
|
|
338
|
+
[0.1.26]: https://github.com/ArvorCo/Relentless/compare/v0.1.25...v0.1.26
|
|
339
|
+
[0.1.25]: https://github.com/ArvorCo/Relentless/compare/v0.1.24...v0.1.25
|
|
340
|
+
[0.1.24]: https://github.com/ArvorCo/Relentless/compare/v0.1.23...v0.1.24
|
|
341
|
+
[0.1.23]: https://github.com/ArvorCo/Relentless/compare/v0.1.22...v0.1.23
|
|
342
|
+
[0.1.22]: https://github.com/ArvorCo/Relentless/compare/v0.1.21...v0.1.22
|
|
343
|
+
[0.1.21]: https://github.com/ArvorCo/Relentless/compare/v0.1.20...v0.1.21
|
|
250
344
|
[0.1.20]: https://github.com/ArvorCo/Relentless/compare/v0.1.19...v0.1.20
|
|
251
345
|
[0.1.19]: https://github.com/ArvorCo/Relentless/compare/v0.1.18...v0.1.19
|
|
252
346
|
[0.1.18]: https://github.com/ArvorCo/Relentless/compare/v0.1.17...v0.1.18
|