transitions-refine 0.3.0 → 0.3.1
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 +3 -1
- package/demo.html +333 -599
- package/package.json +1 -1
- package/server/relay.mjs +29 -4
package/README.md
CHANGED
|
@@ -53,9 +53,11 @@ After `--llm`, make sure the CLI is authenticated once: run `cursor-agent` to lo
|
|
|
53
53
|
You can also point the relay at any one-shot agent CLI via `REFINE_AGENT_CMD` (the relay feeds it the prompt on stdin and reads a JSON result from stdout):
|
|
54
54
|
|
|
55
55
|
```bash
|
|
56
|
-
REFINE_AGENT_CMD='cursor-agent -p' npm run relay # or: codex exec - | claude -p
|
|
56
|
+
REFINE_AGENT_CMD='cursor-agent -p --trust --force' npm run relay # or: codex exec - | claude -p
|
|
57
57
|
```
|
|
58
58
|
|
|
59
|
+
For `cursor-agent` the relay auto-appends any missing `-p`/`--trust`/`--force`, so headless jobs never stall on the workspace-trust prompt (a bare `cursor-agent` goes interactive and exits 1). `-p` = headless/print mode (prompt on stdin), `--trust` = trust the workspace without prompting (only valid with `--print`), `--force` = auto-allow tool calls so apply/scan jobs don't hang on approval.
|
|
60
|
+
|
|
59
61
|
The CLI must have the `transitions-dev` skill available (the prompt tells it to read the skill).
|
|
60
62
|
|
|
61
63
|
## Grouped scan — Open / Close phases
|