thrivekit 2.0.7 → 2.0.9
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/package.json +1 -1
- package/ralph/init.sh +23 -10
package/package.json
CHANGED
package/ralph/init.sh
CHANGED
|
@@ -346,19 +346,32 @@ ralph_help() {
|
|
|
346
346
|
thrivekit - Tools to thrive with agentic coding
|
|
347
347
|
|
|
348
348
|
What is this?
|
|
349
|
-
|
|
350
|
-
You describe what you want, Ralph writes the code, tests it, and iterates
|
|
351
|
-
until it works.
|
|
349
|
+
thrivekit helps you build features using two terminals working together.
|
|
352
350
|
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
351
|
+
Terminal 1 - Claude Code (your AI pair programmer):
|
|
352
|
+
claude --dangerously-skip-permissions
|
|
353
|
+
|
|
354
|
+
The --dangerously-skip-permissions flag lets Claude edit files and run
|
|
355
|
+
commands without asking permission each time. This enables fluid,
|
|
356
|
+
uninterrupted collaboration while you brainstorm and refine ideas.
|
|
357
|
+
|
|
358
|
+
Use /idea to brainstorm big features. Claude saves your ideas to
|
|
359
|
+
docs/ideas/, then breaks them into small, executable PRDs.
|
|
360
|
+
|
|
361
|
+
Terminal 2 - Ralph (autonomous execution):
|
|
362
|
+
npx thrivekit run
|
|
363
|
+
|
|
364
|
+
Ralph picks up the PRDs you created and builds them autonomously.
|
|
365
|
+
It writes code, runs tests, and iterates until each feature works.
|
|
366
|
+
Ralph runs separately so you can keep brainstorming in Claude.
|
|
356
367
|
|
|
357
368
|
Quick Start:
|
|
358
|
-
1. npx thrivekit setup
|
|
359
|
-
2. claude --dangerously-skip-permissions
|
|
360
|
-
3. /idea "your feature description"
|
|
361
|
-
4. npx thrivekit run
|
|
369
|
+
1. npx thrivekit setup
|
|
370
|
+
2. Terminal 1: claude --dangerously-skip-permissions
|
|
371
|
+
3. In Claude: /idea "your feature description"
|
|
372
|
+
4. Terminal 2: npx thrivekit run
|
|
373
|
+
5. Monitor Terminal 2 - it should be autonomous. If issues come up,
|
|
374
|
+
stop the loop (Ctrl+C) and paste the errors into Terminal 1.
|
|
362
375
|
|
|
363
376
|
Usage:
|
|
364
377
|
npx thrivekit <command> [options]
|