@hasna/loops 0.3.47 → 0.3.48
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 -3
- package/dist/cli/index.js +158 -341
- package/dist/daemon/index.js +123 -37
- package/dist/index.js +123 -55
- package/dist/lib/store.d.ts +6 -2
- package/dist/lib/store.js +106 -29
- package/dist/sdk/index.js +122 -36
- package/docs/USAGE.md +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@ OpenLoops is a local CLI and daemon for persistent loops and workflows: schedule
|
|
|
5
5
|
It supports deterministic command loops, JSON-defined workflows, and guarded CLI adapters for headless coding agents:
|
|
6
6
|
|
|
7
7
|
- `claude`
|
|
8
|
-
- `
|
|
8
|
+
- `agent` (Cursor Agent CLI)
|
|
9
9
|
- `codewith exec`
|
|
10
10
|
- `aicopilot run`
|
|
11
11
|
- `opencode run`
|
|
@@ -499,8 +499,8 @@ The adapters intentionally use provider command surfaces instead of pretending e
|
|
|
499
499
|
- Claude uses `claude -p --output-format json` and safe-mode/local setting sources by default.
|
|
500
500
|
- Codewith uses `codewith --ask-for-approval never exec --json --ephemeral --skip-git-repo-check`, with `--add-dir` for explicit extra writable directories.
|
|
501
501
|
- AI Copilot and OpenCode use `run --format json --pure`.
|
|
502
|
-
- Cursor is CLI-first for now via standalone `agent -p`
|
|
503
|
-
- Codex uses `codex exec --json --ephemeral --skip-git-repo-check`, with `--add-dir` for explicit extra writable directories where supported.
|
|
502
|
+
- Cursor is CLI-first for now via the standalone `agent -p` binary. OpenLoops no longer falls back to `cursor agent`; install the standalone Cursor Agent CLI so preflight and scheduled runs use the same executable.
|
|
503
|
+
- Codex uses `codex --ask-for-approval never exec --json --ephemeral --skip-git-repo-check`, with `--add-dir` for explicit extra writable directories where supported.
|
|
504
504
|
- Agent prompts are sent through child stdin instead of argv so prompt bodies do not appear in process listings.
|
|
505
505
|
- When `--account` or a step `account` is set, OpenLoops resolves `accounts env <profile> --tool <tool>` before spawning the target, strips inherited tool home/API-key variables, and applies the selected profile only to that process. Missing account profiles fail before the provider binary receives the prompt.
|
|
506
506
|
- `--auth-profile` and step `authProfile` are provider-native auth selectors. They currently apply to Codewith and are passed to Codewith as `--auth-profile <name>` before `exec`; they do not call OpenAccounts.
|