ralph-ui 0.1.8 → 0.2.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/README.md +5 -1
- package/package.json +5 -3
package/README.md
CHANGED
|
@@ -146,7 +146,11 @@ See [QUICK_START.md](./QUICK_START.md) for detailed setup instructions.
|
|
|
146
146
|
|
|
147
147
|
## What is the Ralph Wiggum Loop?
|
|
148
148
|
|
|
149
|
-
|
|
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:
|
|
150
154
|
|
|
151
155
|
1. **Infinite Iteration:** AI agents run in loops until all tasks are complete
|
|
152
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
|
|
3
|
+
"version": "0.2.1",
|
|
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",
|