thrivekit 2.0.5 → 2.0.7

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 +15 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "thrivekit",
3
- "version": "2.0.5",
3
+ "version": "2.0.7",
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
@@ -345,6 +345,21 @@ 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
+ /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.
356
+
357
+ 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
362
+
348
363
  Usage:
349
364
  npx thrivekit <command> [options]
350
365