thrivekit 2.0.2 → 2.0.4

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 CHANGED
@@ -6,7 +6,7 @@ A toolkit for implementing [RALPH](https://ghuntley.com/ralph/) with [Claude Cod
6
6
 
7
7
  > You focus on what matters: your ideas. Brainstorm with `/idea`, then let Ralph handle the rest - coding, testing, and committing in an iterative loop until everything passes.
8
8
 
9
- ### This repo includes:
9
+ ### This repo helps you customize your code output, run autonomous coding loops, and adds guardrails to ensure good code little and often:
10
10
  #### Customize
11
11
  - **`/my-dna`** - Add your own voice and values to your claude.md (This helps you personalize your experience and output)
12
12
  - **`/styleguide`** - Generate a UI component reference for consistent design (Stop AI from generating everything in purple add your unique style in an html and then reference it)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "thrivekit",
3
- "version": "2.0.2",
3
+ "version": "2.0.4",
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/setup.sh CHANGED
@@ -24,12 +24,15 @@ ralph_setup() {
24
24
  echo ""
25
25
  print_success "Setup complete!"
26
26
  echo ""
27
- echo "Next steps:"
28
- echo " claude # Start Claude Code"
29
- echo " /idea 'your feature' # Generate a PRD"
30
- echo " npx thrivekit run # Execute autonomously"
27
+ echo "You'll need two terminals:"
31
28
  echo ""
32
- echo "Or type /tour for a guided walkthrough."
29
+ echo " Terminal 1 - Claude Code:"
30
+ echo " claude --dangerously-skip-permissions"
31
+ echo " /tour # Take a guided walkthrough"
32
+ echo " /idea 'your feature' # Generate a PRD"
33
+ echo ""
34
+ echo " Terminal 2 - Run autonomously:"
35
+ echo " npx thrivekit run # Executes the PRD"
33
36
  echo ""
34
37
  }
35
38