@chalksurf/cli 0.3.0 → 0.3.3
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 +9 -0
- package/dist/bin/chalksurf.js +7255 -1640
- package/docs/agents.md +125 -68
- package/docs/exit-codes.md +6 -1
- package/docs/manual.md +19 -0
- package/docs/mcp.md +110 -38
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -54,6 +54,15 @@ 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 series list --json
|
|
61
|
+
npx @chalksurf/cli --profile prod-codex sheet bulk-update \
|
|
62
|
+
--input-json '{"mode":"dry_run","updates":[...]}' \
|
|
63
|
+
--json
|
|
64
|
+
```
|
|
65
|
+
|
|
57
66
|
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
67
|
|
|
59
68
|
## Docs
|