@kybernesis/create 0.1.3 → 0.1.4
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/dist/init.js +15 -5
- package/package.json +1 -1
package/dist/init.js
CHANGED
|
@@ -86,11 +86,21 @@ ${green("✓")} ${bold(name)} scaffolded: governed (enterprise) · remembering (
|
|
|
86
86
|
|
|
87
87
|
${bold("Engineer notes:")}
|
|
88
88
|
· The workshop sandbox (agent/sandbox/sandbox.ts) bakes Playwright into the
|
|
89
|
-
template
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
·
|
|
93
|
-
|
|
89
|
+
template at DEPLOY time — a broken bootstrap fails the Vercel build loudly.
|
|
90
|
+
Deployed sessions run under a domain allowlist; extend it deliberately in
|
|
91
|
+
that file when a project needs another host.
|
|
92
|
+
· Vercel connection (preview deploys + link-back), after \`vercel link\`:
|
|
93
|
+
vercel connect create mcp.vercel.com --name vercel
|
|
94
|
+
vercel connect attach mcp.vercel.com/vercel --yes
|
|
95
|
+
then set connect("mcp.vercel.com/vercel") — the UID, not the short name —
|
|
96
|
+
in agent/connections/vercel.ts. First tool use posts an OAuth link in the
|
|
97
|
+
thread (user-scoped); grant "All projects" so the agent can create new ones,
|
|
98
|
+
then narrow the grant in the dashboard once the project exists.
|
|
99
|
+
· File delivery (the deliver tool needs it):
|
|
100
|
+
vercel blob create-store ${name}-deliverables --access public --yes
|
|
101
|
+
links the store and injects BLOB_READ_WRITE_TOKEN automatically.
|
|
102
|
+
· agent-browser / github-tools may need their Connect setup flows — run
|
|
103
|
+
their printed setup commands if tools 401.` : ""}
|
|
94
104
|
|
|
95
105
|
${bold("Human steps (in order) — the FDE playbook covers each in detail:")}
|
|
96
106
|
1. Arcana: create workspaces (${name}-company, ${name}-eval${depts.map((d) => `, ${name}-${d}`).join("")}) + scoped kb_ keys; fill .env.local from .env.example
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kybernesis/create",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "The Kybernesis agent scaffolder and FDE toolkit: one command to a governed, remembering, multiplayer, self-testing eve agent — plus doctor and upgrade.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|