@chalksurf/cli 0.3.1 → 0.3.4
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 +10 -0
- package/dist/bin/chalksurf.js +7119 -1681
- package/docs/agents.md +119 -72
- package/docs/exit-codes.md +6 -1
- package/docs/manual.md +29 -0
- package/docs/mcp.md +125 -43
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -54,6 +54,16 @@ npx @chalksurf/cli --profile prod-codex exercise update EXERCISE_ID \
|
|
|
54
54
|
--json
|
|
55
55
|
```
|
|
56
56
|
|
|
57
|
+
Admin sheet-series labeling:
|
|
58
|
+
|
|
59
|
+
```bash
|
|
60
|
+
npx @chalksurf/cli --profile prod-codex sheet list --limit 100 --json
|
|
61
|
+
npx @chalksurf/cli --profile prod-codex sheet series list --subject math --json
|
|
62
|
+
npx @chalksurf/cli --profile prod-codex sheet bulk-update --input batch-001.json --json
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
Use the returned confirmation digest in an unchanged apply batch. `--input -` reads JSON from stdin; `--input-json` remains available for short inline payloads.
|
|
66
|
+
|
|
57
67
|
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).
|
|
58
68
|
|
|
59
69
|
## Docs
|