@chalksurf/cli 0.3.6 → 0.3.7
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/dist/bin/chalksurf.js +3853 -2758
- package/docs/agents.md +9 -4
- package/docs/exit-codes.md +2 -0
- package/docs/manual.md +7 -5
- package/docs/mcp.md +4 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -63,7 +63,9 @@ npx @chalksurf/cli --profile prod-codex sheet bulk-update \
|
|
|
63
63
|
--input batch-001.json --result-file batch-001.result.json --json
|
|
64
64
|
```
|
|
65
65
|
|
|
66
|
-
Use the returned confirmation digest in an unchanged apply batch. `--input -` reads JSON from stdin; `--input-json` remains available for short inline payloads. If an apply response is uncertain, verify the original manifest with `sheet bulk-update verify` before considering another apply.
|
|
66
|
+
Use the returned confirmation digest in an unchanged apply batch. `--input -` reads JSON from stdin; `--input-json` remains available for short inline payloads. If an apply response is uncertain, verify the original manifest with `sheet bulk-update verify` before considering another apply.
|
|
67
|
+
|
|
68
|
+
Every operational command accepts `--result-file PATH`. The CLI preflights a new destination before command execution, writes the complete success or failure JSON envelope to a private file, and refuses to overwrite existing evidence. Stdout stays compact and includes the absolute result path. If publication fails after the command finishes, stdout contains the complete envelope plus a warning and the command keeps its original exit code.
|
|
67
69
|
|
|
68
70
|
Sheet import manifests use top-level `sheets[]`, where each sheet has one `targetFolderPath` and one or more ordered `sources[]`. See [the canonical example](./packages/cli/docs/examples/sheet-import-manifest.json).
|
|
69
71
|
|