thrivekit 2.0.4 → 2.0.6
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 +14 -0
- package/ralph/setup.sh +2 -2
package/package.json
CHANGED
package/ralph/init.sh
CHANGED
|
@@ -345,6 +345,20 @@ ralph_help() {
|
|
|
345
345
|
cat <<'EOF'
|
|
346
346
|
thrivekit - Tools to thrive with agentic coding
|
|
347
347
|
|
|
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.
|
|
352
|
+
|
|
353
|
+
PRD (Product Requirements Document) is how you tell Ralph what to build.
|
|
354
|
+
Use /idea in Claude Code to brainstorm and generate PRDs interactively.
|
|
355
|
+
|
|
356
|
+
Quick Start:
|
|
357
|
+
1. npx thrivekit setup # Set up your project
|
|
358
|
+
2. claude --dangerously-skip-permissions
|
|
359
|
+
3. /idea "your feature description" # Generate a PRD (in Claude)
|
|
360
|
+
4. npx thrivekit run # Ralph builds it autonomously
|
|
361
|
+
|
|
348
362
|
Usage:
|
|
349
363
|
npx thrivekit <command> [options]
|
|
350
364
|
|
package/ralph/setup.sh
CHANGED
|
@@ -31,8 +31,8 @@ ralph_setup() {
|
|
|
31
31
|
echo " /tour # Take a guided walkthrough"
|
|
32
32
|
echo " /idea 'your feature' # Generate a PRD"
|
|
33
33
|
echo ""
|
|
34
|
-
echo " Terminal 2 -
|
|
35
|
-
echo " npx thrivekit run #
|
|
34
|
+
echo " Terminal 2 - After creating PRDs with Claude:"
|
|
35
|
+
echo " npx thrivekit run # Execute the Ralph loop"
|
|
36
36
|
echo ""
|
|
37
37
|
}
|
|
38
38
|
|