@odla-ai/cli 0.46.12 → 0.48.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 +33 -0
- package/dist/bin.cjs +556 -344
- package/dist/bin.cjs.map +1 -1
- package/dist/bin.js +1 -1
- package/dist/{chunk-Q4BGAUEH.js → chunk-BD5KIG63.js} +519 -324
- package/dist/chunk-BD5KIG63.js.map +1 -0
- package/dist/{cli-5CDFI4AY.js → cli-MXYYOFBR.js} +2 -2
- package/dist/index.cjs +521 -326
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +10 -2
- package/dist/index.d.ts +10 -2
- package/dist/index.js +1 -1
- package/package.json +4 -4
- package/skills/odla/references/sdks.md +5 -0
- package/dist/chunk-Q4BGAUEH.js.map +0 -1
- /package/dist/{cli-5CDFI4AY.js.map → cli-MXYYOFBR.js.map} +0 -0
package/dist/index.d.cts
CHANGED
|
@@ -68,8 +68,16 @@ interface CodeBuildRule {
|
|
|
68
68
|
pids?: number;
|
|
69
69
|
tmpfsBytes?: number;
|
|
70
70
|
}
|
|
71
|
-
/**
|
|
72
|
-
*
|
|
71
|
+
/** Dependency-free dogfood recipes. App-registered catalogs can replace these
|
|
72
|
+
* once their owner-visible registration contract exists.
|
|
73
|
+
*
|
|
74
|
+
* `odla-code-gates` is what stops a correct change reaching a draft pull
|
|
75
|
+
* request with red CI. Every recipe here runs inside `verifyCodeCandidate`, and
|
|
76
|
+
* a non-zero exit leaves the checkpoint `candidate_untrusted`, which
|
|
77
|
+
* `submitCodeCandidate` refuses to publish -- so registering the repository's
|
|
78
|
+
* own gates as a recipe is the whole enforcement. See PM bug c775485c: PR #684
|
|
79
|
+
* was a correct fix that failed check:loc by two lines, 284 milliseconds of
|
|
80
|
+
* work that first ran on GitHub after the authoring session had ended. */
|
|
73
81
|
declare const CODE_BUILD_RECIPES: readonly CodeBuildRule[];
|
|
74
82
|
|
|
75
83
|
/** Supported local isolation engines for an odla Code host runtime. */
|
package/dist/index.d.ts
CHANGED
|
@@ -68,8 +68,16 @@ interface CodeBuildRule {
|
|
|
68
68
|
pids?: number;
|
|
69
69
|
tmpfsBytes?: number;
|
|
70
70
|
}
|
|
71
|
-
/**
|
|
72
|
-
*
|
|
71
|
+
/** Dependency-free dogfood recipes. App-registered catalogs can replace these
|
|
72
|
+
* once their owner-visible registration contract exists.
|
|
73
|
+
*
|
|
74
|
+
* `odla-code-gates` is what stops a correct change reaching a draft pull
|
|
75
|
+
* request with red CI. Every recipe here runs inside `verifyCodeCandidate`, and
|
|
76
|
+
* a non-zero exit leaves the checkpoint `candidate_untrusted`, which
|
|
77
|
+
* `submitCodeCandidate` refuses to publish -- so registering the repository's
|
|
78
|
+
* own gates as a recipe is the whole enforcement. See PM bug c775485c: PR #684
|
|
79
|
+
* was a correct fix that failed check:loc by two lines, 284 milliseconds of
|
|
80
|
+
* work that first ran on GitHub after the authoring session had ended. */
|
|
73
81
|
declare const CODE_BUILD_RECIPES: readonly CodeBuildRule[];
|
|
74
82
|
|
|
75
83
|
/** Supported local isolation engines for an odla Code host runtime. */
|
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@odla-ai/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.48.1",
|
|
4
4
|
"description": "Agent-operable CLI for odla provisioning, calendar consent and connection lifecycle, System AI administration, Worker secrets, security jobs, and smoke checks.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://odla.ai/docs/packages/cli",
|
|
@@ -58,9 +58,9 @@
|
|
|
58
58
|
"prepublishOnly": "npm run build"
|
|
59
59
|
},
|
|
60
60
|
"dependencies": {
|
|
61
|
-
"@odla-ai/ai": "0.17.
|
|
62
|
-
"@odla-ai/apps": "0.
|
|
63
|
-
"@odla-ai/brand": "0.
|
|
61
|
+
"@odla-ai/ai": "0.17.1",
|
|
62
|
+
"@odla-ai/apps": "0.14.0",
|
|
63
|
+
"@odla-ai/brand": "0.8.0",
|
|
64
64
|
"@odla-ai/db": "0.13.0",
|
|
65
65
|
"@odla-ai/security": "0.3.3"
|
|
66
66
|
},
|
|
@@ -258,6 +258,11 @@ Web-standard APIs only — no Node built-ins, no `cloudflare:workers`.
|
|
|
258
258
|
projects -> goals, kanban tasks, decisions, bugs, and versioned runbooks, on
|
|
259
259
|
odla-db and shared across co-owned projects. Usually driven through
|
|
260
260
|
`odla-ai pm ...` rather than the library.
|
|
261
|
+
- **@odla-ai/promotion** — pure content-release contract: package-owned
|
|
262
|
+
adapters emit canonical artifacts, provenance, explicit exclusions, and
|
|
263
|
+
target preconditions; shared tooling validates their exact SHA-256-bound
|
|
264
|
+
bytes and computes a read-only target diff. It never reads providers,
|
|
265
|
+
approves a release, or applies a mutation.
|
|
261
266
|
- **@odla-ai/brand** — conversational brand-book builder: doc/image uploads,
|
|
262
267
|
agent-driven colour exploration with human-gated palette proposals, and a
|
|
263
268
|
compiler from the approved book to `@odla-ai/ui` design tokens.
|