thrivekit 2.0.3 → 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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/ralph/setup.sh +7 -9
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "thrivekit",
3
- "version": "2.0.3",
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,17 +24,15 @@ ralph_setup() {
24
24
  echo ""
25
25
  print_success "Setup complete!"
26
26
  echo ""
27
- echo "Next steps:"
27
+ echo "You'll need two terminals:"
28
28
  echo ""
29
- echo " 1. Start Claude Code:"
30
- echo " claude --dangerously-skip-permissions"
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"
31
33
  echo ""
32
- echo " 2. Inside Claude, try:"
33
- echo " /tour # Guided walkthrough"
34
- echo " /idea 'your feature' # Generate a PRD"
35
- echo ""
36
- echo " 3. Or run autonomously:"
37
- echo " npx thrivekit run"
34
+ echo " Terminal 2 - Run autonomously:"
35
+ echo " npx thrivekit run # Executes the PRD"
38
36
  echo ""
39
37
  }
40
38