@odla-ai/cli 0.27.14 → 0.27.15
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.cjs +2738 -1503
- package/dist/bin.cjs.map +1 -1
- package/dist/bin.js +106 -12
- package/dist/bin.js.map +1 -1
- package/dist/{chunk-3SQ2XUBB.js → chunk-MR5QXX3B.js} +9309 -9407
- package/dist/chunk-MR5QXX3B.js.map +1 -0
- package/dist/chunk-UKLSRQ5J.js +129 -0
- package/dist/chunk-UKLSRQ5J.js.map +1 -0
- package/dist/cli-2RZFZRRT.js +12 -0
- package/dist/cli-2RZFZRRT.js.map +1 -0
- package/dist/index.cjs +7 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +4 -5
- package/dist/index.d.ts +4 -5
- package/dist/index.js +5 -3
- package/package.json +6 -6
- package/dist/chunk-3SQ2XUBB.js.map +0 -1
package/README.md
CHANGED
|
@@ -387,6 +387,16 @@ npx odla-ai skill install
|
|
|
387
387
|
npx odla-ai version
|
|
388
388
|
```
|
|
389
389
|
|
|
390
|
+
Before a non-dry provisioning run, the executable verifies two independent
|
|
391
|
+
things: its CLI version matches the current release, and every external
|
|
392
|
+
`@odla-ai/*` runtime module resolves to the exact version pinned in that CLI's
|
|
393
|
+
manifest. The command graph is imported only after both checks pass. A stale
|
|
394
|
+
workspace-linked module is reported with its resolved package path and the
|
|
395
|
+
agent is told to update/rebase the worktree, run `npm ci`, and rebuild. Released
|
|
396
|
+
CLI dependencies are exact pins, so the printed `npm exec --package=...`
|
|
397
|
+
recovery command installs the same dependency graph exercised by the release
|
|
398
|
+
tarball test rather than reusing an arbitrary compatible older module.
|
|
399
|
+
|
|
390
400
|
`agent jobs` is the remote-operator view of commit-trigger delivery. It reads
|
|
391
401
|
content-free lifecycle metadata—job id, trigger, entity reference, state,
|
|
392
402
|
attempts, timing, and bounded error/status codes—using an audience-bound
|