@odla-ai/cli 0.2.0 → 0.2.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/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Cory Ondrejka
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # @odla-ai/cli
2
2
 
3
+ > ⚠️ **Experimental — an agentic-coding experiment.** This package is built and
4
+ > operated by autonomous coding agents as an experiment in agentic loops. APIs
5
+ > change without notice and nothing here is production-hardened. **Use at your
6
+ > own risk.**
7
+
3
8
  Project-neutral provisioning CLI for odla apps. It creates and validates an
4
9
  `odla.config.mjs`, then uses that config to register an app, enable services,
5
10
  push odla-db schema/rules, configure platform AI, configure Clerk auth, record
@@ -96,7 +101,10 @@ wrangler) and requires `--yes`; every other env maps to wrangler's
96
101
  (currently `odla-migrate`, the phased GitHub Pages → odla migration
97
102
  procedure) into the project's `.claude/skills/`, or into `~/.claude/skills/`
98
103
  with `--global`. Re-runs are idempotent; a locally modified skill file is
99
- never overwritten without `--force`.
104
+ never overwritten without `--force`. The skill's reference runbook is served
105
+ at <https://odla.ai/llms-migrate.txt>; the human companion — "Moving your site
106
+ to odla" (accounts, the approval code, costs) — lives in the odla docs after
107
+ sign-in.
100
108
 
101
109
  `doctor` also lints for common footguns: permission rules that are literally
102
110
  `"true"` (public writes always warn; a public `view` warns unless the
package/llms.txt CHANGED
@@ -2,6 +2,11 @@
2
2
 
3
3
  > Project-neutral CLI for provisioning odla apps, database schemas, AI settings, and local runtime files.
4
4
 
5
+ > ⚠️ **Experimental — an agentic-coding experiment.** This package is built and
6
+ > operated by autonomous coding agents as an experiment in agentic loops. APIs
7
+ > change without notice and nothing here is production-hardened. **Use at your
8
+ > own risk.**
9
+
5
10
  Project-neutral provisioning CLI for odla apps. It creates and validates an
6
11
  `odla.config.mjs`, then uses that config to register an app, enable services,
7
12
  push odla-db schema/rules, configure platform AI, configure Clerk auth, record
@@ -98,7 +103,10 @@ wrangler) and requires `--yes`; every other env maps to wrangler's
98
103
  (currently `odla-migrate`, the phased GitHub Pages → odla migration
99
104
  procedure) into the project's `.claude/skills/`, or into `~/.claude/skills/`
100
105
  with `--global`. Re-runs are idempotent; a locally modified skill file is
101
- never overwritten without `--force`.
106
+ never overwritten without `--force`. The skill's reference runbook is served
107
+ at <https://odla.ai/llms-migrate.txt>; the human companion — "Moving your site
108
+ to odla" (accounts, the approval code, costs) — lives in the odla docs after
109
+ sign-in.
102
110
 
103
111
  `doctor` also lints for common footguns: permission rules that are literally
104
112
  `"true"` (public writes always warn; a public `view` warns unless the
@@ -148,7 +156,7 @@ If schema is present and rules are omitted, `defaultRules: "deny"` generates
148
156
  deny-all rules for every schema entity. That is the safe default for Workers
149
157
  that mediate reads and writes with an app key.
150
158
 
151
- ## API reference (generated from dist/index.d.ts, v0.2.0)
159
+ ## API reference (generated from dist/index.d.ts, v0.2.1)
152
160
 
153
161
  ```ts
154
162
  declare function runCli(argv?: string[]): Promise<void>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@odla-ai/cli",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Project-neutral CLI for provisioning odla apps, database schemas, AI settings, and local runtime files.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -52,8 +52,10 @@ phase. If the CLI offers `odla-ai status`, run it to confirm.
52
52
  approve, value to paste, command to run themselves).
53
53
  3. Wait for explicit approval before entering the next phase.
54
54
 
55
- At the very first checkpoint, send the human https://odla.ai/migrate
56
- it explains their side of the whole journey in plain language.
55
+ At the very first checkpoint, have the human sign in at https://odla.ai and
56
+ open Docs → "Moving your site to odla" — it explains their side of the whole
57
+ journey in plain language. They need an odla account for the migration anyway,
58
+ so this is a natural first step.
57
59
 
58
60
  ## Verification tools
59
61