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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/ralph/init.sh +23 -10
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "thrivekit",
3
- "version": "2.0.7",
3
+ "version": "2.0.9",
4
4
  "description": "Tools to thrive with agentic coding - RALPH autonomous loop, Claude Code hooks, PRD-driven development",
5
5
  "author": "Allie Jones <allie@allthrive.ai>",
6
6
  "license": "MIT",
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
- Ralph is an autonomous development loop that builds features for you.
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
- /idea lets you brainstorm big features with Claude. It saves your ideas
354
- to docs/ideas/, then breaks them down into small, executable PRDs that
355
- Ralph can build one at a time.
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 # Set up your project
359
- 2. claude --dangerously-skip-permissions
360
- 3. /idea "your feature description" # Generate a PRD (in Claude)
361
- 4. npx thrivekit run # Ralph builds it autonomously
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]