sisyphi 1.1.24 → 1.1.25
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/dist/cli.js +306 -56
- package/dist/cli.js.map +1 -1
- package/dist/daemon.js +4 -0
- package/dist/daemon.js.map +1 -1
- package/dist/templates/agent-plugin/skills/humanloop/SKILL.md +2 -1
- package/dist/templates/orchestrator-plugin/skills/humanloop/SKILL.md +2 -1
- package/dist/tui.js.map +1 -1
- package/package.json +1 -1
- package/templates/agent-plugin/skills/humanloop/SKILL.md +2 -1
- package/templates/orchestrator-plugin/skills/humanloop/SKILL.md +2 -1
package/package.json
CHANGED
|
@@ -142,6 +142,7 @@ EOF
|
|
|
142
142
|
## Submission notes
|
|
143
143
|
|
|
144
144
|
- The deck is validated at submit (precise errors — trust them).
|
|
145
|
-
- `
|
|
145
|
+
- `kind` is an enum: `notify` | `validation` | `decision` | `context` | `error`. No other values accepted (see the table above for which to pick).
|
|
146
|
+
- `bodyPath` points at a markdown file instead of inlining the body in JSON. The path is resolved **relative to the deck JSON's directory** and must stay inside it (no `..`, no symlinks out, no absolute paths pointing elsewhere). Practical pattern: write the deck JSON next to its body file — e.g. both inside `$SISYPHUS_SESSION_DIR/context/` — and use a basename like `"completion-summary.md"`. Mutually exclusive with `body`.
|
|
146
147
|
- On completion, stdout is one line of JSON: `{responses, completedAt}`. Parse `responses[]` and dispatch on each interaction's `id`.
|
|
147
148
|
- See `sisyphus ask -h` for the full CLI surface.
|
|
@@ -144,6 +144,7 @@ EOF
|
|
|
144
144
|
## Submission notes
|
|
145
145
|
|
|
146
146
|
- The deck is validated at submit (precise errors — trust them).
|
|
147
|
-
- `
|
|
147
|
+
- `kind` is an enum: `notify` | `validation` | `decision` | `context` | `error`. No other values accepted (see the table above for which to pick).
|
|
148
|
+
- `bodyPath` points at a markdown file instead of inlining the body in JSON. The path is resolved **relative to the deck JSON's directory** and must stay inside it (no `..`, no symlinks out, no absolute paths pointing elsewhere). Practical pattern: write the deck JSON next to its body file — e.g. both inside `$SISYPHUS_SESSION_DIR/context/` — and use a basename like `"completion-summary.md"`. Mutually exclusive with `body`.
|
|
148
149
|
- On completion, stdout is one line of JSON: `{responses, completedAt}`. Parse `responses[]` and dispatch on each interaction's `id`.
|
|
149
150
|
- See `sisyphus ask -h` for the full CLI surface.
|