thrivekit 2.0.2 → 2.0.3
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 +1 -1
- package/package.json +1 -1
- package/ralph/setup.sh +9 -4
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
|
|
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
package/ralph/setup.sh
CHANGED
|
@@ -25,11 +25,16 @@ ralph_setup() {
|
|
|
25
25
|
print_success "Setup complete!"
|
|
26
26
|
echo ""
|
|
27
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"
|
|
31
28
|
echo ""
|
|
32
|
-
echo "
|
|
29
|
+
echo " 1. Start Claude Code:"
|
|
30
|
+
echo " claude --dangerously-skip-permissions"
|
|
31
|
+
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"
|
|
33
38
|
echo ""
|
|
34
39
|
}
|
|
35
40
|
|