@ralph-orchestrator/ralph-cli 2.2.5 → 2.3.1
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 +93 -0
- package/README.md +49 -1294
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to ralph-orchestrator are documented here.
|
|
4
|
+
|
|
5
|
+
## [2.3.0] - 2025-01-28
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
|
|
9
|
+
- **Web Dashboard (Alpha)**: Full-featured web UI for monitoring and managing Ralph orchestration loops
|
|
10
|
+
- React + Vite + TailwindCSS frontend with Fastify + tRPC + SQLite backend
|
|
11
|
+
- `ralph web` command to launch both servers (backend:3000, frontend:5173)
|
|
12
|
+
- Preflight checks and auto-install for fresh installs
|
|
13
|
+
- Port conflict detection, labeled output, and automatic browser open
|
|
14
|
+
- Node 22 pinned for backend dev with tsc+node compilation
|
|
15
|
+
- **Hats CLI**: Topology visualization and AI-powered diagrams (`ralph hats`)
|
|
16
|
+
- **Event Publishing Guide**: Skip topology display when a hat is already active
|
|
17
|
+
- **Parallel config gate**: `features.parallel` config option to control worktree spawning
|
|
18
|
+
- **Per-hat backend args**: `args` support in hat-level backend configurations
|
|
19
|
+
- **New presets**: Additional presets and improved workflow patterns
|
|
20
|
+
- **Documentation**: Reorganized docs with governance files and enhanced README
|
|
21
|
+
|
|
22
|
+
### Fixed
|
|
23
|
+
|
|
24
|
+
- Honor hat-level backend configuration and args overrides
|
|
25
|
+
- Backend dev workflow uses tsc+node instead of ts-node
|
|
26
|
+
|
|
27
|
+
## [2.2.5] - 2025-01-17
|
|
28
|
+
|
|
29
|
+
### Added
|
|
30
|
+
|
|
31
|
+
- Loop merge command (`ralph loop merge`) and custom backend args
|
|
32
|
+
- Config override support for core fields via CLI
|
|
33
|
+
- Mock adapter for cost-free E2E testing
|
|
34
|
+
- CI: Run mock E2E tests on every PR/push
|
|
35
|
+
|
|
36
|
+
### Fixed
|
|
37
|
+
|
|
38
|
+
- CI workaround for claude-code-action fork PR bug
|
|
39
|
+
- CI write permissions for handling fork PRs
|
|
40
|
+
|
|
41
|
+
## [2.2.4] - 2025-01-14
|
|
42
|
+
|
|
43
|
+
### Fixed
|
|
44
|
+
|
|
45
|
+
- TUI hang under npx process group
|
|
46
|
+
- Clarify cost display as estimate for subscription users
|
|
47
|
+
|
|
48
|
+
## [2.2.3] - 2025-01-12
|
|
49
|
+
|
|
50
|
+
### Added
|
|
51
|
+
|
|
52
|
+
- Multi-loop concurrency via git worktrees
|
|
53
|
+
- OBJECTIVE section in prompts to prevent goal drift
|
|
54
|
+
- Claude Code GitHub workflow
|
|
55
|
+
|
|
56
|
+
### Fixed
|
|
57
|
+
|
|
58
|
+
- UTF-8 truncation panics in event output
|
|
59
|
+
|
|
60
|
+
### Changed
|
|
61
|
+
|
|
62
|
+
- Updated preset configurations
|
|
63
|
+
|
|
64
|
+
## [2.2.2] - 2025-01-10
|
|
65
|
+
|
|
66
|
+
### Fixed
|
|
67
|
+
|
|
68
|
+
- Signal handler registration moved after TUI initialization
|
|
69
|
+
- Docs: markdown attribute on divs for badge rendering
|
|
70
|
+
|
|
71
|
+
## [2.2.1] - 2025-01-08
|
|
72
|
+
|
|
73
|
+
### Added
|
|
74
|
+
|
|
75
|
+
- CLI ergonomics: backend flag, builtin presets, URL configs
|
|
76
|
+
- Comprehensive MkDocs documentation site for v2
|
|
77
|
+
|
|
78
|
+
### Fixed
|
|
79
|
+
|
|
80
|
+
- TUI: require stdin to be terminal for TUI enablement
|
|
81
|
+
- MkDocs strict build failures
|
|
82
|
+
- Confession-loop preset updated to use `ralph emit` command
|
|
83
|
+
|
|
84
|
+
### Changed
|
|
85
|
+
|
|
86
|
+
- Modularized codebase and fixed TUI mode
|
|
87
|
+
|
|
88
|
+
[2.3.0]: https://github.com/mikeyobrien/ralph-orchestrator/compare/v2.2.5...v2.3.0
|
|
89
|
+
[2.2.5]: https://github.com/mikeyobrien/ralph-orchestrator/compare/v2.2.4...v2.2.5
|
|
90
|
+
[2.2.4]: https://github.com/mikeyobrien/ralph-orchestrator/compare/v2.2.3...v2.2.4
|
|
91
|
+
[2.2.3]: https://github.com/mikeyobrien/ralph-orchestrator/compare/v2.2.2...v2.2.3
|
|
92
|
+
[2.2.2]: https://github.com/mikeyobrien/ralph-orchestrator/compare/v2.2.1...v2.2.2
|
|
93
|
+
[2.2.1]: https://github.com/mikeyobrien/ralph-orchestrator/compare/v2.2.0...v2.2.1
|