@aotter/mantle 0.0.11-alpha.50 → 0.0.11-alpha.52

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.
@@ -481,7 +481,7 @@ re-attach to the new (empty) worker, etc.
481
481
 
482
482
  ```bash
483
483
  sleep 60 # Let the deploy + DNS propagate
484
- for path in / /zh-TW /skill/install /admin; do
484
+ for path in / /zh-TW /skill/after-launch /admin; do
485
485
  code=$(curl -sIo /dev/null -w "%{http_code}" "https://<your-site>$path")
486
486
  echo " $path → $code"
487
487
  done
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aotter/mantle",
3
- "version": "0.0.11-alpha.50",
3
+ "version": "0.0.11-alpha.52",
4
4
  "description": "Umbrella entry for @aotter/mantle. Adopters install this one package and import from subpaths: /spec, /runtime, /cloudflare, /admin-ui. Sub-packages remain individually installable on npm for tooling / alt-adapter authors. The Netlify adapter ships as a private workspace stub in v0.1 — its subpath will be added when the impl lands in v0.2.",
5
5
  "license": "Apache-2.0",
6
6
  "homepage": "https://mantle.tools/",
@@ -47,10 +47,10 @@
47
47
  "README.md"
48
48
  ],
49
49
  "dependencies": {
50
- "@aotter/mantle-admin-ui": "0.0.11-alpha.50",
51
- "@aotter/mantle-spec": "0.0.11-alpha.50",
52
- "@aotter/mantle-cloudflare": "0.0.11-alpha.50",
53
- "@aotter/mantle-runtime": "0.0.11-alpha.50"
50
+ "@aotter/mantle-admin-ui": "0.0.11-alpha.52",
51
+ "@aotter/mantle-spec": "0.0.11-alpha.52",
52
+ "@aotter/mantle-cloudflare": "0.0.11-alpha.52",
53
+ "@aotter/mantle-runtime": "0.0.11-alpha.52"
54
54
  },
55
55
  "peerDependencies": {
56
56
  "@cloudflare/workers-oauth-provider": "^0.8.0",
@@ -16,7 +16,7 @@ The 4-atom manifest model:
16
16
  - **Procedure** — the typed callable
17
17
  - **Trigger** — the event binding (HTTP / lifecycle / cron)
18
18
 
19
- Closed enums (`x-mantle-bind` values, `ctx.*` predicates, `Trigger.source.kind`, `Procedure.handler.kind`) are checked by `pnpm validate` — diagnostics return `code` + `suggestion`. If grammar is unclear, run `pnpm introspect` against the current project to see what the manifest compiler accepts, or read the full grammar reference at <https://raw.githubusercontent.com/aotter/mantle/develop/docs/design-atoms.md>.
19
+ Closed enums (`x-mantle-bind` values, `ctx.*` predicates, `Trigger.source.kind`, `Procedure.handler.kind`) are checked by `pnpm validate` — diagnostics return `code` + `suggestion`. If grammar is unclear, run `pnpm introspect` against the current project to see what the manifest compiler accepts, or read the shipped full grammar reference at `node_modules/@aotter/mantle/docs/design-atoms.md`.
20
20
 
21
21
  ## Match the user's request to atoms
22
22
 
@@ -151,8 +151,7 @@ If you added a new MCP-relevant Schema, the per-collection authoring tools (`cre
151
151
  ## API and MCP authorization
152
152
 
153
153
  Read the shipped canonical guide before adding an authenticated public API:
154
-
155
- <https://raw.githubusercontent.com/aotter/mantle/develop/docs/api-mcp-authorization.md>
154
+ `node_modules/@aotter/mantle/docs/api-mcp-authorization.md`.
156
155
 
157
156
  Use only the closed grammar:
158
157