@guuey/create-agentic-app 0.16.3 → 0.16.5
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/cli.cjs +1 -1
- package/dist/cli.js +1 -1
- package/dist/templates/agentic-app/claude-agent-sdk/README.md +3 -3
- package/dist/templates/agentic-app/claude-agent-sdk/package.json +3 -3
- package/dist/templates/agentic-app/claude-agent-sdk/scripts/bootstrap.mjs +5 -5
- package/dist/templates/agentic-app/claude-agent-sdk/web/package.json +3 -3
- package/dist/templates/agentic-app/google-adk/README.md +1 -1
- package/dist/templates/agentic-app/google-adk/package.json +2 -2
- package/dist/templates/agentic-app/google-adk/scripts/bootstrap.mjs +5 -5
- package/dist/templates/agentic-app/google-adk/web/package.json +3 -3
- package/dist/templates/agentic-app/openai-agents-sdk/README.md +3 -3
- package/dist/templates/agentic-app/openai-agents-sdk/package.json +3 -3
- package/dist/templates/agentic-app/openai-agents-sdk/scripts/bootstrap.mjs +5 -5
- package/dist/templates/agentic-app/openai-agents-sdk/web/package.json +3 -3
- package/dist/templates/base/claude-agent-sdk/README.md +3 -3
- package/dist/templates/base/claude-agent-sdk/package.json +3 -3
- package/dist/templates/base/claude-agent-sdk/scripts/bootstrap.mjs +5 -5
- package/dist/templates/base/claude-agent-sdk/web/package.json +1 -1
- package/dist/templates/base/google-adk/README.md +1 -1
- package/dist/templates/base/google-adk/package.json +2 -2
- package/dist/templates/base/google-adk/scripts/bootstrap.mjs +5 -5
- package/dist/templates/base/google-adk/web/package.json +1 -1
- package/dist/templates/base/openai-agents-sdk/README.md +3 -3
- package/dist/templates/base/openai-agents-sdk/package.json +3 -3
- package/dist/templates/base/openai-agents-sdk/scripts/bootstrap.mjs +5 -5
- package/dist/templates/base/openai-agents-sdk/web/package.json +1 -1
- package/package.json +3 -3
package/dist/cli.cjs
CHANGED
|
@@ -423,7 +423,7 @@ Scaffolded "${name}" in ${projectDir}
|
|
|
423
423
|
if (!install) console.log(" pnpm install");
|
|
424
424
|
console.log(" pnpm bootstrap # brand, theme, copy \u2014 the web app is gated on this");
|
|
425
425
|
console.log(" pnpm dev");
|
|
426
|
-
console.log(" guuey login && guuey deploy");
|
|
426
|
+
console.log(" npx guuey login && npx guuey deploy");
|
|
427
427
|
console.log(" pnpm bootstrap -- --link # bind the deployed app into the frontend");
|
|
428
428
|
}
|
|
429
429
|
main().catch((err) => {
|
package/dist/cli.js
CHANGED
|
@@ -170,7 +170,7 @@ Scaffolded "${name}" in ${projectDir}
|
|
|
170
170
|
if (!install) console.log(" pnpm install");
|
|
171
171
|
console.log(" pnpm bootstrap # brand, theme, copy \u2014 the web app is gated on this");
|
|
172
172
|
console.log(" pnpm dev");
|
|
173
|
-
console.log(" guuey login && guuey deploy");
|
|
173
|
+
console.log(" npx guuey login && npx guuey deploy");
|
|
174
174
|
console.log(" pnpm bootstrap -- --link # bind the deployed app into the frontend");
|
|
175
175
|
}
|
|
176
176
|
main().catch((err) => {
|
|
@@ -48,7 +48,7 @@ cp .env.example .env.local # done automatically on scaffold if .env.local is a
|
|
|
48
48
|
pnpm dev
|
|
49
49
|
```
|
|
50
50
|
|
|
51
|
-
When the agent is deployed (`guuey login && guuey deploy`), bind it into the
|
|
51
|
+
When the agent is deployed (`npx guuey login && npx guuey deploy`), bind it into the
|
|
52
52
|
frontend: `pnpm bootstrap -- --link` — that records the app id, endpoint,
|
|
53
53
|
widget origin and portal link in `guuey.app.json` and pushes brand basics to
|
|
54
54
|
the platform. `pnpm status` shows the live app state; `pnpm bootstrap -- --check`
|
|
@@ -118,8 +118,8 @@ yourself, or they're skipped with a warning.)
|
|
|
118
118
|
## Deploying
|
|
119
119
|
|
|
120
120
|
```bash
|
|
121
|
-
guuey login # device-flow auth; stores a token in ~/.guuey/auth.json
|
|
122
|
-
guuey deploy # ships everything
|
|
121
|
+
npx guuey login # device-flow auth; stores a token in ~/.guuey/auth.json
|
|
122
|
+
npx guuey deploy # ships everything
|
|
123
123
|
```
|
|
124
124
|
|
|
125
125
|
`guuey deploy` runs four legs, in order, so a hard failure aborts before
|
|
@@ -12,12 +12,12 @@
|
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
14
|
"@anthropic-ai/claude-agent-sdk": "^0.3.199",
|
|
15
|
-
"@guuey/config": "0.16.
|
|
16
|
-
"@guuey/worker": "0.16.
|
|
15
|
+
"@guuey/config": "0.16.5",
|
|
16
|
+
"@guuey/worker": "0.16.5"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
19
|
"@ggui-ai/cli": "0.12.0",
|
|
20
|
-
"@guuey/cli": "0.16.
|
|
20
|
+
"@guuey/cli": "0.16.5",
|
|
21
21
|
"tsup": "^8.5.0",
|
|
22
22
|
"tsx": "^4.19.0",
|
|
23
23
|
"typescript": "^5.8.0"
|
|
@@ -224,7 +224,7 @@ async function linkPhase(config, flags, yes) {
|
|
|
224
224
|
const res = await guuey(["apps", "get", appId, "--json"]);
|
|
225
225
|
if (!res.ok) {
|
|
226
226
|
console.error(`Could not read app ${appId} via the guuey CLI:\n${res.error}`);
|
|
227
|
-
console.error("Log in first (`guuey login`) and check the id (`guuey apps list`).");
|
|
227
|
+
console.error("Log in first (`npx guuey login`) and check the id (`npx guuey apps list`).");
|
|
228
228
|
process.exit(1);
|
|
229
229
|
}
|
|
230
230
|
let app;
|
|
@@ -305,12 +305,12 @@ async function linkPhase(config, flags, yes) {
|
|
|
305
305
|
|
|
306
306
|
console.log("\nNext steps (each is one command — run when ready):");
|
|
307
307
|
if (!domains) {
|
|
308
|
-
console.log(` guuey apps update ${appId} --domains <https://your-site.example> # allow this frontend's origin`);
|
|
308
|
+
console.log(` npx guuey apps update ${appId} --domains <https://your-site.example> # allow this frontend's origin`);
|
|
309
309
|
}
|
|
310
|
-
if (!config.link.slug) console.log(" guuey slug claim <name>
|
|
311
|
-
console.log(" guuey deploy
|
|
310
|
+
if (!config.link.slug) console.log(" npx guuey slug claim <name> # public short name → portal link + hosted page");
|
|
311
|
+
console.log(" npx guuey deploy # ship the agent definition in guuey.json");
|
|
312
312
|
if (config.auth.oidc) {
|
|
313
|
-
console.log(` guuey apps update ${appId} --auth-mode byo --issuer-url ${config.auth.oidc.issuer} --audience ${config.auth.oidc.clientId}`);
|
|
313
|
+
console.log(` npx guuey apps update ${appId} --auth-mode byo --issuer-url ${config.auth.oidc.issuer} --audience ${config.auth.oidc.clientId}`);
|
|
314
314
|
}
|
|
315
315
|
}
|
|
316
316
|
|
|
@@ -9,9 +9,9 @@
|
|
|
9
9
|
"typecheck": "tsc --noEmit"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@guuey/agent-layout": "0.16.
|
|
13
|
-
"@guuey/chat": "0.16.
|
|
14
|
-
"@guuey/mcp-apps-host": "0.16.
|
|
12
|
+
"@guuey/agent-layout": "0.16.5",
|
|
13
|
+
"@guuey/chat": "0.16.5",
|
|
14
|
+
"@guuey/mcp-apps-host": "0.16.5",
|
|
15
15
|
"oidc-client-ts": "^3.1.0",
|
|
16
16
|
"qrcode": "^1.5.4",
|
|
17
17
|
"react": "^19.0.0",
|
|
@@ -24,7 +24,7 @@ export default (guuey: GuueyContext<MCPToolset>) =>
|
|
|
24
24
|
pnpm install
|
|
25
25
|
cp .env.example .env.local # set GEMINI_API_KEY
|
|
26
26
|
pnpm dev # local stack: your agent + the todo MCP + chat
|
|
27
|
-
guuey deploy
|
|
27
|
+
npx guuey deploy # same code, hosted
|
|
28
28
|
```
|
|
29
29
|
|
|
30
30
|
## The GuueyContext (everything the platform hands you)
|
|
@@ -224,7 +224,7 @@ async function linkPhase(config, flags, yes) {
|
|
|
224
224
|
const res = await guuey(["apps", "get", appId, "--json"]);
|
|
225
225
|
if (!res.ok) {
|
|
226
226
|
console.error(`Could not read app ${appId} via the guuey CLI:\n${res.error}`);
|
|
227
|
-
console.error("Log in first (`guuey login`) and check the id (`guuey apps list`).");
|
|
227
|
+
console.error("Log in first (`npx guuey login`) and check the id (`npx guuey apps list`).");
|
|
228
228
|
process.exit(1);
|
|
229
229
|
}
|
|
230
230
|
let app;
|
|
@@ -305,12 +305,12 @@ async function linkPhase(config, flags, yes) {
|
|
|
305
305
|
|
|
306
306
|
console.log("\nNext steps (each is one command — run when ready):");
|
|
307
307
|
if (!domains) {
|
|
308
|
-
console.log(` guuey apps update ${appId} --domains <https://your-site.example> # allow this frontend's origin`);
|
|
308
|
+
console.log(` npx guuey apps update ${appId} --domains <https://your-site.example> # allow this frontend's origin`);
|
|
309
309
|
}
|
|
310
|
-
if (!config.link.slug) console.log(" guuey slug claim <name>
|
|
311
|
-
console.log(" guuey deploy
|
|
310
|
+
if (!config.link.slug) console.log(" npx guuey slug claim <name> # public short name → portal link + hosted page");
|
|
311
|
+
console.log(" npx guuey deploy # ship the agent definition in guuey.json");
|
|
312
312
|
if (config.auth.oidc) {
|
|
313
|
-
console.log(` guuey apps update ${appId} --auth-mode byo --issuer-url ${config.auth.oidc.issuer} --audience ${config.auth.oidc.clientId}`);
|
|
313
|
+
console.log(` npx guuey apps update ${appId} --auth-mode byo --issuer-url ${config.auth.oidc.issuer} --audience ${config.auth.oidc.clientId}`);
|
|
314
314
|
}
|
|
315
315
|
}
|
|
316
316
|
|
|
@@ -9,9 +9,9 @@
|
|
|
9
9
|
"typecheck": "tsc --noEmit"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@guuey/agent-layout": "0.16.
|
|
13
|
-
"@guuey/chat": "0.16.
|
|
14
|
-
"@guuey/mcp-apps-host": "0.16.
|
|
12
|
+
"@guuey/agent-layout": "0.16.5",
|
|
13
|
+
"@guuey/chat": "0.16.5",
|
|
14
|
+
"@guuey/mcp-apps-host": "0.16.5",
|
|
15
15
|
"oidc-client-ts": "^3.1.0",
|
|
16
16
|
"qrcode": "^1.5.4",
|
|
17
17
|
"react": "^19.0.0",
|
|
@@ -48,7 +48,7 @@ cp .env.example .env.local # done automatically on scaffold if .env.local is a
|
|
|
48
48
|
pnpm dev
|
|
49
49
|
```
|
|
50
50
|
|
|
51
|
-
When the agent is deployed (`guuey login && guuey deploy`), bind it into the
|
|
51
|
+
When the agent is deployed (`npx guuey login && npx guuey deploy`), bind it into the
|
|
52
52
|
frontend: `pnpm bootstrap -- --link` — that records the app id, endpoint,
|
|
53
53
|
widget origin and portal link in `guuey.app.json` and pushes brand basics to
|
|
54
54
|
the platform. `pnpm status` shows the live app state; `pnpm bootstrap -- --check`
|
|
@@ -118,8 +118,8 @@ yourself, or they're skipped with a warning.)
|
|
|
118
118
|
## Deploying
|
|
119
119
|
|
|
120
120
|
```bash
|
|
121
|
-
guuey login # device-flow auth; stores a token in ~/.guuey/auth.json
|
|
122
|
-
guuey deploy # ships everything
|
|
121
|
+
npx guuey login # device-flow auth; stores a token in ~/.guuey/auth.json
|
|
122
|
+
npx guuey deploy # ships everything
|
|
123
123
|
```
|
|
124
124
|
|
|
125
125
|
`guuey deploy` runs four legs, in order, so a hard failure aborts before
|
|
@@ -12,12 +12,12 @@
|
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
14
|
"@openai/agents": "^0.12.0",
|
|
15
|
-
"@guuey/config": "0.16.
|
|
16
|
-
"@guuey/worker": "0.16.
|
|
15
|
+
"@guuey/config": "0.16.5",
|
|
16
|
+
"@guuey/worker": "0.16.5"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
19
|
"@ggui-ai/cli": "0.12.0",
|
|
20
|
-
"@guuey/cli": "0.16.
|
|
20
|
+
"@guuey/cli": "0.16.5",
|
|
21
21
|
"tsup": "^8.5.0",
|
|
22
22
|
"tsx": "^4.19.0",
|
|
23
23
|
"typescript": "^5.8.0"
|
|
@@ -224,7 +224,7 @@ async function linkPhase(config, flags, yes) {
|
|
|
224
224
|
const res = await guuey(["apps", "get", appId, "--json"]);
|
|
225
225
|
if (!res.ok) {
|
|
226
226
|
console.error(`Could not read app ${appId} via the guuey CLI:\n${res.error}`);
|
|
227
|
-
console.error("Log in first (`guuey login`) and check the id (`guuey apps list`).");
|
|
227
|
+
console.error("Log in first (`npx guuey login`) and check the id (`npx guuey apps list`).");
|
|
228
228
|
process.exit(1);
|
|
229
229
|
}
|
|
230
230
|
let app;
|
|
@@ -305,12 +305,12 @@ async function linkPhase(config, flags, yes) {
|
|
|
305
305
|
|
|
306
306
|
console.log("\nNext steps (each is one command — run when ready):");
|
|
307
307
|
if (!domains) {
|
|
308
|
-
console.log(` guuey apps update ${appId} --domains <https://your-site.example> # allow this frontend's origin`);
|
|
308
|
+
console.log(` npx guuey apps update ${appId} --domains <https://your-site.example> # allow this frontend's origin`);
|
|
309
309
|
}
|
|
310
|
-
if (!config.link.slug) console.log(" guuey slug claim <name>
|
|
311
|
-
console.log(" guuey deploy
|
|
310
|
+
if (!config.link.slug) console.log(" npx guuey slug claim <name> # public short name → portal link + hosted page");
|
|
311
|
+
console.log(" npx guuey deploy # ship the agent definition in guuey.json");
|
|
312
312
|
if (config.auth.oidc) {
|
|
313
|
-
console.log(` guuey apps update ${appId} --auth-mode byo --issuer-url ${config.auth.oidc.issuer} --audience ${config.auth.oidc.clientId}`);
|
|
313
|
+
console.log(` npx guuey apps update ${appId} --auth-mode byo --issuer-url ${config.auth.oidc.issuer} --audience ${config.auth.oidc.clientId}`);
|
|
314
314
|
}
|
|
315
315
|
}
|
|
316
316
|
|
|
@@ -9,9 +9,9 @@
|
|
|
9
9
|
"typecheck": "tsc --noEmit"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@guuey/agent-layout": "0.16.
|
|
13
|
-
"@guuey/chat": "0.16.
|
|
14
|
-
"@guuey/mcp-apps-host": "0.16.
|
|
12
|
+
"@guuey/agent-layout": "0.16.5",
|
|
13
|
+
"@guuey/chat": "0.16.5",
|
|
14
|
+
"@guuey/mcp-apps-host": "0.16.5",
|
|
15
15
|
"oidc-client-ts": "^3.1.0",
|
|
16
16
|
"qrcode": "^1.5.4",
|
|
17
17
|
"react": "^19.0.0",
|
|
@@ -48,7 +48,7 @@ cp .env.example .env.local # done automatically on scaffold if .env.local is a
|
|
|
48
48
|
pnpm dev
|
|
49
49
|
```
|
|
50
50
|
|
|
51
|
-
When the agent is deployed (`guuey login && guuey deploy`), bind it into the
|
|
51
|
+
When the agent is deployed (`npx guuey login && npx guuey deploy`), bind it into the
|
|
52
52
|
frontend: `pnpm bootstrap -- --link` — that records the app id, endpoint,
|
|
53
53
|
widget origin and portal link in `guuey.app.json` and pushes brand basics to
|
|
54
54
|
the platform. `pnpm status` shows the live app state; `pnpm bootstrap -- --check`
|
|
@@ -118,8 +118,8 @@ yourself, or they're skipped with a warning.)
|
|
|
118
118
|
## Deploying
|
|
119
119
|
|
|
120
120
|
```bash
|
|
121
|
-
guuey login # device-flow auth; stores a token in ~/.guuey/auth.json
|
|
122
|
-
guuey deploy # ships everything
|
|
121
|
+
npx guuey login # device-flow auth; stores a token in ~/.guuey/auth.json
|
|
122
|
+
npx guuey deploy # ships everything
|
|
123
123
|
```
|
|
124
124
|
|
|
125
125
|
`guuey deploy` runs four legs, in order, so a hard failure aborts before
|
|
@@ -12,12 +12,12 @@
|
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
14
|
"@anthropic-ai/claude-agent-sdk": "^0.3.199",
|
|
15
|
-
"@guuey/config": "0.16.
|
|
16
|
-
"@guuey/worker": "0.16.
|
|
15
|
+
"@guuey/config": "0.16.5",
|
|
16
|
+
"@guuey/worker": "0.16.5"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
19
|
"@ggui-ai/cli": "0.12.0",
|
|
20
|
-
"@guuey/cli": "0.16.
|
|
20
|
+
"@guuey/cli": "0.16.5",
|
|
21
21
|
"tsup": "^8.5.0",
|
|
22
22
|
"tsx": "^4.19.0",
|
|
23
23
|
"typescript": "^5.8.0"
|
|
@@ -224,7 +224,7 @@ async function linkPhase(config, flags, yes) {
|
|
|
224
224
|
const res = await guuey(["apps", "get", appId, "--json"]);
|
|
225
225
|
if (!res.ok) {
|
|
226
226
|
console.error(`Could not read app ${appId} via the guuey CLI:\n${res.error}`);
|
|
227
|
-
console.error("Log in first (`guuey login`) and check the id (`guuey apps list`).");
|
|
227
|
+
console.error("Log in first (`npx guuey login`) and check the id (`npx guuey apps list`).");
|
|
228
228
|
process.exit(1);
|
|
229
229
|
}
|
|
230
230
|
let app;
|
|
@@ -305,12 +305,12 @@ async function linkPhase(config, flags, yes) {
|
|
|
305
305
|
|
|
306
306
|
console.log("\nNext steps (each is one command — run when ready):");
|
|
307
307
|
if (!domains) {
|
|
308
|
-
console.log(` guuey apps update ${appId} --domains <https://your-site.example> # allow this frontend's origin`);
|
|
308
|
+
console.log(` npx guuey apps update ${appId} --domains <https://your-site.example> # allow this frontend's origin`);
|
|
309
309
|
}
|
|
310
|
-
if (!config.link.slug) console.log(" guuey slug claim <name>
|
|
311
|
-
console.log(" guuey deploy
|
|
310
|
+
if (!config.link.slug) console.log(" npx guuey slug claim <name> # public short name → portal link + hosted page");
|
|
311
|
+
console.log(" npx guuey deploy # ship the agent definition in guuey.json");
|
|
312
312
|
if (config.auth.oidc) {
|
|
313
|
-
console.log(` guuey apps update ${appId} --auth-mode byo --issuer-url ${config.auth.oidc.issuer} --audience ${config.auth.oidc.clientId}`);
|
|
313
|
+
console.log(` npx guuey apps update ${appId} --auth-mode byo --issuer-url ${config.auth.oidc.issuer} --audience ${config.auth.oidc.clientId}`);
|
|
314
314
|
}
|
|
315
315
|
}
|
|
316
316
|
|
|
@@ -24,7 +24,7 @@ export default (guuey: GuueyContext<MCPToolset>) =>
|
|
|
24
24
|
pnpm install
|
|
25
25
|
cp .env.example .env.local # set GEMINI_API_KEY
|
|
26
26
|
pnpm dev # local stack: your agent + the todo MCP + chat
|
|
27
|
-
guuey deploy
|
|
27
|
+
npx guuey deploy # same code, hosted
|
|
28
28
|
```
|
|
29
29
|
|
|
30
30
|
## The GuueyContext (everything the platform hands you)
|
|
@@ -224,7 +224,7 @@ async function linkPhase(config, flags, yes) {
|
|
|
224
224
|
const res = await guuey(["apps", "get", appId, "--json"]);
|
|
225
225
|
if (!res.ok) {
|
|
226
226
|
console.error(`Could not read app ${appId} via the guuey CLI:\n${res.error}`);
|
|
227
|
-
console.error("Log in first (`guuey login`) and check the id (`guuey apps list`).");
|
|
227
|
+
console.error("Log in first (`npx guuey login`) and check the id (`npx guuey apps list`).");
|
|
228
228
|
process.exit(1);
|
|
229
229
|
}
|
|
230
230
|
let app;
|
|
@@ -305,12 +305,12 @@ async function linkPhase(config, flags, yes) {
|
|
|
305
305
|
|
|
306
306
|
console.log("\nNext steps (each is one command — run when ready):");
|
|
307
307
|
if (!domains) {
|
|
308
|
-
console.log(` guuey apps update ${appId} --domains <https://your-site.example> # allow this frontend's origin`);
|
|
308
|
+
console.log(` npx guuey apps update ${appId} --domains <https://your-site.example> # allow this frontend's origin`);
|
|
309
309
|
}
|
|
310
|
-
if (!config.link.slug) console.log(" guuey slug claim <name>
|
|
311
|
-
console.log(" guuey deploy
|
|
310
|
+
if (!config.link.slug) console.log(" npx guuey slug claim <name> # public short name → portal link + hosted page");
|
|
311
|
+
console.log(" npx guuey deploy # ship the agent definition in guuey.json");
|
|
312
312
|
if (config.auth.oidc) {
|
|
313
|
-
console.log(` guuey apps update ${appId} --auth-mode byo --issuer-url ${config.auth.oidc.issuer} --audience ${config.auth.oidc.clientId}`);
|
|
313
|
+
console.log(` npx guuey apps update ${appId} --auth-mode byo --issuer-url ${config.auth.oidc.issuer} --audience ${config.auth.oidc.clientId}`);
|
|
314
314
|
}
|
|
315
315
|
}
|
|
316
316
|
|
|
@@ -48,7 +48,7 @@ cp .env.example .env.local # done automatically on scaffold if .env.local is a
|
|
|
48
48
|
pnpm dev
|
|
49
49
|
```
|
|
50
50
|
|
|
51
|
-
When the agent is deployed (`guuey login && guuey deploy`), bind it into the
|
|
51
|
+
When the agent is deployed (`npx guuey login && npx guuey deploy`), bind it into the
|
|
52
52
|
frontend: `pnpm bootstrap -- --link` — that records the app id, endpoint,
|
|
53
53
|
widget origin and portal link in `guuey.app.json` and pushes brand basics to
|
|
54
54
|
the platform. `pnpm status` shows the live app state; `pnpm bootstrap -- --check`
|
|
@@ -118,8 +118,8 @@ yourself, or they're skipped with a warning.)
|
|
|
118
118
|
## Deploying
|
|
119
119
|
|
|
120
120
|
```bash
|
|
121
|
-
guuey login # device-flow auth; stores a token in ~/.guuey/auth.json
|
|
122
|
-
guuey deploy # ships everything
|
|
121
|
+
npx guuey login # device-flow auth; stores a token in ~/.guuey/auth.json
|
|
122
|
+
npx guuey deploy # ships everything
|
|
123
123
|
```
|
|
124
124
|
|
|
125
125
|
`guuey deploy` runs four legs, in order, so a hard failure aborts before
|
|
@@ -12,12 +12,12 @@
|
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
14
|
"@openai/agents": "^0.12.0",
|
|
15
|
-
"@guuey/config": "0.16.
|
|
16
|
-
"@guuey/worker": "0.16.
|
|
15
|
+
"@guuey/config": "0.16.5",
|
|
16
|
+
"@guuey/worker": "0.16.5"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
19
|
"@ggui-ai/cli": "0.12.0",
|
|
20
|
-
"@guuey/cli": "0.16.
|
|
20
|
+
"@guuey/cli": "0.16.5",
|
|
21
21
|
"tsup": "^8.5.0",
|
|
22
22
|
"tsx": "^4.19.0",
|
|
23
23
|
"typescript": "^5.8.0"
|
|
@@ -224,7 +224,7 @@ async function linkPhase(config, flags, yes) {
|
|
|
224
224
|
const res = await guuey(["apps", "get", appId, "--json"]);
|
|
225
225
|
if (!res.ok) {
|
|
226
226
|
console.error(`Could not read app ${appId} via the guuey CLI:\n${res.error}`);
|
|
227
|
-
console.error("Log in first (`guuey login`) and check the id (`guuey apps list`).");
|
|
227
|
+
console.error("Log in first (`npx guuey login`) and check the id (`npx guuey apps list`).");
|
|
228
228
|
process.exit(1);
|
|
229
229
|
}
|
|
230
230
|
let app;
|
|
@@ -305,12 +305,12 @@ async function linkPhase(config, flags, yes) {
|
|
|
305
305
|
|
|
306
306
|
console.log("\nNext steps (each is one command — run when ready):");
|
|
307
307
|
if (!domains) {
|
|
308
|
-
console.log(` guuey apps update ${appId} --domains <https://your-site.example> # allow this frontend's origin`);
|
|
308
|
+
console.log(` npx guuey apps update ${appId} --domains <https://your-site.example> # allow this frontend's origin`);
|
|
309
309
|
}
|
|
310
|
-
if (!config.link.slug) console.log(" guuey slug claim <name>
|
|
311
|
-
console.log(" guuey deploy
|
|
310
|
+
if (!config.link.slug) console.log(" npx guuey slug claim <name> # public short name → portal link + hosted page");
|
|
311
|
+
console.log(" npx guuey deploy # ship the agent definition in guuey.json");
|
|
312
312
|
if (config.auth.oidc) {
|
|
313
|
-
console.log(` guuey apps update ${appId} --auth-mode byo --issuer-url ${config.auth.oidc.issuer} --audience ${config.auth.oidc.clientId}`);
|
|
313
|
+
console.log(` npx guuey apps update ${appId} --auth-mode byo --issuer-url ${config.auth.oidc.issuer} --audience ${config.auth.oidc.clientId}`);
|
|
314
314
|
}
|
|
315
315
|
}
|
|
316
316
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@guuey/create-agentic-app",
|
|
3
|
-
"version": "0.16.
|
|
3
|
+
"version": "0.16.5",
|
|
4
4
|
"description": "Scaffold a guuey agentic app: code-mode agent + custom MCP + ggui + web, local pnpm dev, one-command guuey deploy.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -25,8 +25,8 @@
|
|
|
25
25
|
"tsup": "^8.5.0",
|
|
26
26
|
"typescript": "^5.8.0",
|
|
27
27
|
"vitest": "^3.2.7",
|
|
28
|
-
"@guuey/config": "0.16.
|
|
29
|
-
"@guuey/worker": "0.16.
|
|
28
|
+
"@guuey/config": "0.16.5",
|
|
29
|
+
"@guuey/worker": "0.16.5"
|
|
30
30
|
},
|
|
31
31
|
"publishConfig": {
|
|
32
32
|
"access": "public"
|