@chalksurf/cli 0.3.3 → 0.3.6

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 CHANGED
@@ -57,16 +57,19 @@ npx @chalksurf/cli --profile prod-codex exercise update EXERCISE_ID \
57
57
  Admin sheet-series labeling:
58
58
 
59
59
  ```bash
60
- npx @chalksurf/cli --profile prod-codex sheet series list --json
60
+ npx @chalksurf/cli --profile prod-codex sheet list --all --result-file inventory.json --json
61
+ npx @chalksurf/cli --profile prod-codex sheet series list --subject math --json
61
62
  npx @chalksurf/cli --profile prod-codex sheet bulk-update \
62
- --input-json '{"mode":"dry_run","updates":[...]}' \
63
- --json
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. Result files preserve complete private evidence and refuse to overwrite an existing destination.
67
+
66
68
  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).
67
69
 
68
70
  ## Docs
69
71
 
72
+ - [Public CLI and MCP documentation](https://chalksurf.com/docs)
70
73
  - [Manual operator guide](./packages/cli/docs/manual.md)
71
74
  - [Agent and Codex guide](./packages/cli/docs/agents.md)
72
75
  - [MCP guide](./packages/cli/docs/mcp.md)