@neriros/ralphy 2.22.1 → 2.23.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 +9 -1
- package/dist/cli/index.js +1095 -833
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -66,7 +66,7 @@ ralph task --name fix-auth --prompt "Fix the JWT validation bug" --claude opus -
|
|
|
66
66
|
ralph task --name fix-auth
|
|
67
67
|
|
|
68
68
|
# Inspect
|
|
69
|
-
ralph list #
|
|
69
|
+
ralph list # local tasks + Linear tickets per indicator bucket (with linked PR URLs)
|
|
70
70
|
ralph status --name fix-auth # one task (details)
|
|
71
71
|
```
|
|
72
72
|
|
|
@@ -316,6 +316,14 @@ Failed workers are not marked processed, so they retry on the next poll. SIGINT
|
|
|
316
316
|
| `--code-review` | Watch open tracked PRs for unresolved review comments and prepend a code-review task |
|
|
317
317
|
| `--json-output` | Emit JSONL to stdout instead of rendering the Ink dashboard (CI / scripting) |
|
|
318
318
|
|
|
319
|
+
**List-mode flags**
|
|
320
|
+
|
|
321
|
+
| Option | Behavior |
|
|
322
|
+
| --------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
323
|
+
| `--debug --name <id>` | Diagnose why a Linear ticket (e.g. `ENG-42`) is not being picked up — checks team, assignee, include / exclude markers, and blocked-by relations against every configured `get*` indicator. |
|
|
324
|
+
|
|
325
|
+
`ralph list` reads `ralphy.config.json` and, when `LINEAR_API_KEY` is set, fetches every issue matching each configured `getTodo` / `getInProgress` / `getConflicted` / `getReview` / `getAutoMerge` indicator using the same include / exclude rules as `ralph agent`. For each ticket it also resolves the linked GitHub PR URL from Linear attachments.
|
|
326
|
+
|
|
319
327
|
**`--max-tickets`.** Caps how many issues ralph picks up in a single agent run. Once the limit is hit the coordinator stops enqueuing new work; in-flight workers continue to completion, and the dashboard header shows `│ tickets ≤N`. The limit resets each restart.
|
|
320
328
|
|
|
321
329
|
## Change layout (OpenSpec)
|