thrivekit 2.0.5 → 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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/ralph/init.sh +14 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "thrivekit",
3
- "version": "2.0.5",
3
+ "version": "2.0.6",
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,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