@odla-ai/cli 0.27.11 → 0.27.13
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 +7 -1
- package/dist/bin.cjs +272 -630
- package/dist/bin.cjs.map +1 -1
- package/dist/bin.js +1 -1
- package/dist/{chunk-Y7WFLSTN.js → chunk-3YSCRXPF.js} +157 -449
- package/dist/chunk-3YSCRXPF.js.map +1 -0
- package/dist/index.cjs +272 -563
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +5 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/skills/odla/references/build.md +8 -0
- package/dist/chunk-Y7WFLSTN.js.map +0 -1
package/README.md
CHANGED
|
@@ -359,6 +359,8 @@ npx odla-ai code connect --env prod --once # bounded enrollment + heartbeat proo
|
|
|
359
359
|
# install SDKs, write the Worker, and create wrangler.jsonc before secret push
|
|
360
360
|
npx odla-ai provision --dry-run
|
|
361
361
|
npx odla-ai provision --email owner@example.com --write-dev-vars --push-secrets
|
|
362
|
+
# recovery when the selected agent credential has no live app.manage grant
|
|
363
|
+
npx odla-ai provision --request-grant --email owner@example.com --write-dev-vars --push-secrets
|
|
362
364
|
npx odla-ai smoke --env dev
|
|
363
365
|
npx odla-ai agent jobs --env dev --state dead_letter --json
|
|
364
366
|
npx odla-ai agent retry <job-id> --env dev --json
|
|
@@ -472,7 +474,11 @@ shown-once credential.
|
|
|
472
474
|
needed by the run; it does not permit ownership, rename/category, archive,
|
|
473
475
|
restore, or purge. A cached or pending baseline handshake without
|
|
474
476
|
`app.manage` is not reused for provision: the CLI starts a fresh request for
|
|
475
|
-
owner review.
|
|
477
|
+
owner review. An explicit `--token` or `ODLA_DEV_TOKEN` has no trustworthy
|
|
478
|
+
local grant metadata, so a server refusal cannot be repaired by retrying it.
|
|
479
|
+
Run `provision --request-grant --email <account>` to ignore the ambient and
|
|
480
|
+
cached credentials, open a new exact-project review, collect the approved
|
|
481
|
+
replacement, and continue the same provisioning run. If
|
|
476
482
|
the exact project id does not exist yet, approval reserves that id for this
|
|
477
483
|
credential instead of failing: the credential may create only that app once,
|
|
478
484
|
and Registry binds its reviewed grant to the new app incarnation.
|