kylon-cli 0.3.1-next.492 → 0.3.1-next.494
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 +16 -1
- package/dist/kylon-bundle.mjs +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -281,10 +281,25 @@ instead of waiting out inactivity timeouts and heartbeat intervals.
|
|
|
281
281
|
- `codex` — OpenAI Codex CLI
|
|
282
282
|
- `claude-code` — Anthropic Claude Code CLI
|
|
283
283
|
- `hermes` — Hermes CLI using `hermes -z <prompt>`
|
|
284
|
-
- `openclaw` — OpenClaw CLI using `openclaw agent --message <prompt> --json
|
|
284
|
+
- `openclaw` — OpenClaw CLI using `openclaw agent --message <prompt> --json`.
|
|
285
|
+
A message too large for the command line is delivered as a file via
|
|
286
|
+
`--message-file <path>` instead (requires OpenClaw 2026.6.11 or newer; the
|
|
287
|
+
OpenClaw CLI has no stdin message channel).
|
|
285
288
|
- `generic` - provider-neutral wrapper. Runs a `kylon-provider`
|
|
286
289
|
executable on `PATH` and expects newline-delimited JSON events matching
|
|
287
290
|
`docs/journal_docs/05_25_external_agent_provider_adapter_contract.md`.
|
|
291
|
+
Delivery: `--prompt <text> --workdir <dir> [--system-prompt <text>]
|
|
292
|
+
[--resume <id>]`. When the payload is too large for the platform's
|
|
293
|
+
command-line budget (cmd.exe caps its input line at 8,191 chars; Linux caps
|
|
294
|
+
one argv string at 128 KiB), the gateway instead writes the payloads to
|
|
295
|
+
owner-only temp files and passes `--prompt-file <path>`
|
|
296
|
+
(`--system-prompt-file <path>` for the system prompt), with the same paths
|
|
297
|
+
exported as `KYLON_PROMPT_FILE`/`KYLON_SYSTEM_PROMPT_FILE`. File delivery is
|
|
298
|
+
used only when the wrapper opts in by advertising
|
|
299
|
+
`kylon-provider-caps: prompt-file, system-prompt-file` anywhere in its
|
|
300
|
+
`--version` output (the one probe every wrapper already supports); a wrapper
|
|
301
|
+
without the advertisement fails over-budget assignments with a named error
|
|
302
|
+
instead of receiving flags it would misparse.
|
|
288
303
|
|
|
289
304
|
## State Model
|
|
290
305
|
|