@mu-cabin/coding-cli 0.1.0 → 0.1.1
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 +6 -0
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -76,3 +76,9 @@ coding update --dry-run # report what would change without writing
|
|
|
76
76
|
`coding update` fetches the latest spec, then **atomically** swaps in the rebuilt `docs/` (pruning
|
|
77
77
|
stale files) and `generated/index.json`. Distribution is local/dev for now, so CLI/skill *code*
|
|
78
78
|
upgrades happen via `git pull` + `npm run regen`; `update` keeps the spec artifacts current.
|
|
79
|
+
|
|
80
|
+
## Offline / air-gapped install
|
|
81
|
+
|
|
82
|
+
To install on a server with no registry access, build a self-contained tarball with `pnpm pack:offline`
|
|
83
|
+
and `npm install -g --offline` it on the target host. See
|
|
84
|
+
**[Offline / air-gapped install](../../README.md#offline--air-gapped-install)** in the root README.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mu-cabin/coding-cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Agent-first CLI for operating a CODING instance over its OpenAPI surface.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -25,6 +25,7 @@
|
|
|
25
25
|
"regen": "pnpm build && pnpm build:spec",
|
|
26
26
|
"typecheck": "tsc --noEmit",
|
|
27
27
|
"test": "tsx --test test/*.test.ts",
|
|
28
|
-
"clean": "rm -rf dist"
|
|
28
|
+
"clean": "rm -rf dist",
|
|
29
|
+
"pack:offline": "bash ../../scripts/pack-offline.sh"
|
|
29
30
|
}
|
|
30
31
|
}
|