ralph-ui 0.1.6 β†’ 0.2.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.
Files changed (2) hide show
  1. package/README.md +22 -1
  2. package/package.json +5 -3
package/README.md CHANGED
@@ -2,6 +2,23 @@
2
2
 
3
3
  **A modern application for orchestrating autonomous AI coding agents using the Ralph Wiggum Loop technique. Access via browser from any device on your network.**
4
4
 
5
+ ---
6
+
7
+ ## 🚨 Phase 1 Status: Bug Fixes & Polish
8
+
9
+ **We are currently focusing on stability and polish.** While Ralph UI is production-ready and stable, we are prioritizing:
10
+
11
+ - βœ… Bug reports and fixes
12
+ - βœ… Polish improvements (UX, performance, error handling)
13
+ - βœ… Documentation enhancements
14
+ - βœ… Test coverage
15
+
16
+ **⏸️ Feature requests:** We're collecting ideas for Phase 2! Please use the `feature-request` issue template - we'll review after Phase 1 completion.
17
+
18
+ **🀝 Contribute:** See [CONTRIBUTING.md](./CONTRIBUTING.md) for guidelines on bug fixes and polish PRs.
19
+
20
+ ---
21
+
5
22
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
6
23
  [![Rust](https://img.shields.io/badge/Rust-1.75+-orange.svg)](https://www.rust-lang.org/)
7
24
  [![React](https://img.shields.io/badge/React-19+-61DAFB.svg)](https://reactjs.org/)
@@ -129,7 +146,11 @@ See [QUICK_START.md](./QUICK_START.md) for detailed setup instructions.
129
146
 
130
147
  ## What is the Ralph Wiggum Loop?
131
148
 
132
- The Ralph Wiggum Loop (named after the beloved Simpsons character) is an autonomous AI development technique where:
149
+ > **Trademark Notice:** "Ralph Wiggum" is a trademark of 20th Century Fox.
150
+ > This project uses the term nominally to describe the AI development technique
151
+ > coined by Geoffrey Huntley. We are not affiliated with or endorsed by Fox.
152
+
153
+ The Ralph Wiggum Loop is an autonomous AI development technique where:
133
154
 
134
155
  1. **Infinite Iteration:** AI agents run in loops until all tasks are complete
135
156
  2. **Filesystem Memory:** Progress persists in files and git history, not LLM context
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ralph-ui",
3
- "version": "0.1.6",
3
+ "version": "0.2.0",
4
4
  "type": "module",
5
5
  "description": "Orchestrate autonomous AI coding agents with the Ralph Wiggum Loop technique",
6
6
  "author": "Dario Valles",
@@ -35,8 +35,8 @@
35
35
  "preview": "vite preview",
36
36
  "server:build": "cd server && cargo build --release",
37
37
  "server": "cd server && cargo run --release -- --port 3421",
38
- "server:dev": "cd server && cargo run -- --port 3421",
39
- "server:dev:token": "cd server && RALPH_SERVER_TOKEN=secure-token cargo run -- --port 3421",
38
+ "server:dev": "cd server && RUST_LOG=info cargo run -- --port 3421",
39
+ "server:dev:token": "cd server && RALPH_SERVER_TOKEN=secure-token RUST_LOG=info cargo run -- --port 3421",
40
40
  "server:kill": "pkill -f 'ralph-ui' || true; lsof -ti:3421 | xargs kill -9 2>/dev/null || true",
41
41
  "typecheck": "tsc --noEmit",
42
42
  "lint": "eslint . --max-warnings 0",
@@ -70,11 +70,13 @@
70
70
  "@radix-ui/react-select": "^2.2.6",
71
71
  "@radix-ui/react-slider": "^1.3.6",
72
72
  "@radix-ui/react-tabs": "^1.1.13",
73
+ "@radix-ui/react-tooltip": "^1.2.8",
73
74
  "@tailwindcss/vite": "^4.1.18",
74
75
  "@xterm/addon-fit": "^0.11.0",
75
76
  "@xterm/addon-web-links": "^0.12.0",
76
77
  "@xterm/addon-webgl": "^0.19.0",
77
78
  "@xterm/xterm": "^6.0.0",
79
+ "@xyflow/react": "^12.10.0",
78
80
  "ansi-to-react": "^6.1.6",
79
81
  "class-variance-authority": "^0.7.1",
80
82
  "clsx": "^2.1.1",