@aotter/mantle 0.0.11-alpha.19 → 0.0.11-alpha.20
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/package.json +5 -5
- package/skills/provision/SKILL.md +19 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aotter/mantle",
|
|
3
|
-
"version": "0.0.11-alpha.
|
|
3
|
+
"version": "0.0.11-alpha.20",
|
|
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.
|
|
51
|
-
"@aotter/mantle-
|
|
52
|
-
"@aotter/mantle-
|
|
53
|
-
"@aotter/mantle-
|
|
50
|
+
"@aotter/mantle-admin-ui": "0.0.11-alpha.20",
|
|
51
|
+
"@aotter/mantle-cloudflare": "0.0.11-alpha.20",
|
|
52
|
+
"@aotter/mantle-spec": "0.0.11-alpha.20",
|
|
53
|
+
"@aotter/mantle-runtime": "0.0.11-alpha.20"
|
|
54
54
|
},
|
|
55
55
|
"peerDependencies": {
|
|
56
56
|
"@cloudflare/workers-oauth-provider": "^0.7.0",
|
|
@@ -37,6 +37,8 @@ coding agent.
|
|
|
37
37
|
- `mantle/site.md` frontmatter `site_url:` and `AGENTS.md` `Public
|
|
38
38
|
site:` point at the deployed Worker URL.
|
|
39
39
|
- Staff MCP and browser admin sign-in are ready to test.
|
|
40
|
+
- Operator setup URL is ready to hand to the owner:
|
|
41
|
+
`https://mantle.tools/connect?site=<url-encoded-worker-url>`.
|
|
40
42
|
|
|
41
43
|
Provision does not seed production content. First real content is
|
|
42
44
|
created after owner sign-in through Staff MCP / admin authoring.
|
|
@@ -100,7 +102,8 @@ requirement, and feature-specific notes.
|
|
|
100
102
|
- `GITHUB_CLIENT_SECRET` in the environment or stdin.
|
|
101
103
|
|
|
102
104
|
It writes non-secret config, sets Worker secrets with Wrangler, updates
|
|
103
|
-
`mantle/site.md` and `AGENTS.md`, then prints public/admin/MCP
|
|
105
|
+
`mantle/site.md` and `AGENTS.md`, then prints public/admin/MCP and
|
|
106
|
+
operator setup URLs.
|
|
104
107
|
|
|
105
108
|
Do not pass `GITHUB_CLIENT_SECRET` as a visible command argument.
|
|
106
109
|
|
|
@@ -183,7 +186,19 @@ pnpm run provision:up -- --worker-url <worker-url> --github-username <gh-login>
|
|
|
183
186
|
`<worker-url>/admin/sign-in` and connect an MCP-capable client to
|
|
184
187
|
`<worker-url>/mcp/staff`.
|
|
185
188
|
|
|
186
|
-
9. **
|
|
189
|
+
9. **Operator setup proof.** Open the operator setup URL:
|
|
190
|
+
|
|
191
|
+
```text
|
|
192
|
+
https://mantle.tools/connect?site=<url-encoded-worker-url>
|
|
193
|
+
```
|
|
194
|
+
|
|
195
|
+
Confirm it shows the Staff MCP URL, User MCP URL, Claude connector
|
|
196
|
+
entry, and `mantle-companion-upload` plugin install commands. The
|
|
197
|
+
companion upload path must pass file references/metadata only; large
|
|
198
|
+
binary payloads go through Mantle upload sessions and signed URLs,
|
|
199
|
+
not base64 MCP tool arguments.
|
|
200
|
+
|
|
201
|
+
10. **Second-agent proof.** Connect a second agent through Staff MCP and
|
|
187
202
|
run the starter's core workflow: list collections, create/update a
|
|
188
203
|
draft, publish or submit the starter's natural operation, and confirm
|
|
189
204
|
a public read path. Do not create throwaway production submissions
|
|
@@ -210,6 +225,8 @@ language:
|
|
|
210
225
|
- Public URL.
|
|
211
226
|
- Admin sign-in URL.
|
|
212
227
|
- Staff MCP URL.
|
|
228
|
+
- Operator setup URL (`https://mantle.tools/connect?site=...`) for
|
|
229
|
+
Staff/User MCP connection and the companion upload plugin.
|
|
213
230
|
- What changed locally and what was committed.
|
|
214
231
|
- Any intentionally deferred feature setup.
|
|
215
232
|
|