@neriros/ralphy 2.23.2 → 3.0.0

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 CHANGED
@@ -60,14 +60,14 @@ The per-project install builds the CLI and MCP server, copies them to `.ralph/bi
60
60
 
61
61
  ```bash
62
62
  # Create + run a new task
63
- ralph task --name fix-auth --prompt "Fix the JWT validation bug" --claude opus --max-iterations 10
63
+ ralphy loop task --name fix-auth --prompt "Fix the JWT validation bug" --claude opus --max-iterations 10
64
64
 
65
65
  # Resume the same task later (state is on disk)
66
- ralph task --name fix-auth
66
+ ralphy loop task --name fix-auth
67
67
 
68
68
  # Inspect
69
- ralph list # local tasks + Linear tickets per indicator bucket (with linked PR URLs)
70
- ralph status --name fix-auth # one task (details)
69
+ ralphy agent list # local tasks + Linear tickets per indicator bucket (with linked PR URLs)
70
+ ralphy loop status --name fix-auth # one task (details)
71
71
  ```
72
72
 
73
73
  Engine defaults to Claude Opus. Common safeguards: `--max-iterations`, `--max-cost`, `--max-runtime`, `--max-failures`. See the [CLI reference](#cli-reference) for the full set.
@@ -78,7 +78,7 @@ Engine defaults to Claude Opus. Common safeguards: `--max-iterations`, `--max-co
78
78
 
79
79
  ```bash
80
80
  export LINEAR_API_KEY=lin_api_xxx
81
- ralph agent --linear-team ENG --linear-assignee me --concurrency 3 --poll-interval 60
81
+ ralphy agent --linear-team ENG --linear-assignee me --concurrency 3 --poll-interval 60
82
82
  ```
83
83
 
84
84
  A default `ralphy.config.json` is written on first run. CLI flags override config per-invocation.
package/dist/mcp/index.js CHANGED
@@ -24264,7 +24264,7 @@ function registerTools(server, changesDir, changeStore, taskFilesDir = changesDi
24264
24264
  ]
24265
24265
  };
24266
24266
  }
24267
- const cliArgs = ["run", "apps/cli/src/index.ts", "task", "--name", name];
24267
+ const cliArgs = ["run", "apps/shell/src/index.ts", "loop", "task", "--name", name];
24268
24268
  if (maxIterations)
24269
24269
  cliArgs.push("--max-iterations", String(maxIterations));
24270
24270
  if (maxCostUsd)