ralph-prd 3.0.0 → 3.0.2

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/bin/cli.mjs CHANGED
@@ -56,8 +56,8 @@ if (subcommand === 'run') {
56
56
 
57
57
  } else if (subcommand === 'init' || !subcommand) {
58
58
  // npx ralph-prd init OR npx ralph-prd (legacy: bare invocation = init)
59
- const { install } = await import('./install.mjs');
60
- await install();
59
+ // install.mjs is a top-level script — importing it runs the installer
60
+ await import('./install.mjs');
61
61
 
62
62
  } else if (subcommand === '--update-skills') {
63
63
  // npx ralph-prd --update-skills
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ralph-prd",
3
- "version": "3.0.0",
3
+ "version": "3.0.2",
4
4
  "type": "module",
5
5
  "description": "AI-powered phased implementation runner for Claude Code — from PRD to shipped code",
6
6
  "bin": {
@@ -881,9 +881,7 @@ async function main() {
881
881
  } else {
882
882
  console.log('failed');
883
883
  console.error(`\nUnexpected error during ship-check: ${err.message}`);
884
- console.error(`Logs: ${logsDir}`);
885
- notify('Ralph — failed', `Ship-check failed for "${phase.title}"`);
886
- process.exit(1);
884
+ // Don't exit — let the retry loop and skipOnShipCheckFail handle it
887
885
  }
888
886
 
889
887
  if (attempt < maxAttempts) {