@guuey/create-agentic-app 0.16.6 → 0.16.7
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/README.md +1 -1
- package/dist/cli.cjs +8 -1
- package/dist/cli.js +8 -1
- package/dist/templates/agentic-app/claude-agent-sdk/package.json +3 -3
- package/dist/templates/agentic-app/claude-agent-sdk/web/package.json +3 -3
- package/dist/templates/agentic-app/google-adk/package.json +2 -2
- package/dist/templates/agentic-app/google-adk/web/package.json +3 -3
- package/dist/templates/agentic-app/openai-agents-sdk/package.json +3 -3
- package/dist/templates/agentic-app/openai-agents-sdk/web/package.json +3 -3
- package/dist/templates/base/claude-agent-sdk/package.json +3 -3
- package/dist/templates/base/claude-agent-sdk/web/package.json +1 -1
- package/dist/templates/base/google-adk/package.json +2 -2
- package/dist/templates/base/google-adk/web/package.json +1 -1
- package/dist/templates/base/openai-agents-sdk/package.json +3 -3
- package/dist/templates/base/openai-agents-sdk/web/package.json +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -16,7 +16,7 @@ pnpm bootstrap -- --link # bind the deployed app into the frontend
|
|
|
16
16
|
|
|
17
17
|
## What you get
|
|
18
18
|
|
|
19
|
-
- **A code-mode agent worker** (Claude Agent SDK
|
|
19
|
+
- **A code-mode agent worker** (Claude Agent SDK, OpenAI Agents SDK, or Google ADK — pick
|
|
20
20
|
with `--framework`) built on the open
|
|
21
21
|
[`@guuey/worker`](https://www.npmjs.com/package/@guuey/worker) protocol.
|
|
22
22
|
The same worker runs locally and on guuey's hosted runtime, sandboxed and
|
package/dist/cli.cjs
CHANGED
|
@@ -394,7 +394,14 @@ Extracted the "${flags.example}" example into ${projectDir2}
|
|
|
394
394
|
const frameworkFlag = flags.framework ?? flags.agent;
|
|
395
395
|
let frameworkInput = typeof frameworkFlag === "string" ? frameworkFlag : void 0;
|
|
396
396
|
if (!frameworkInput) {
|
|
397
|
-
|
|
397
|
+
if (import_node_process.stdin.isTTY !== true) {
|
|
398
|
+
frameworkInput = "claude-agent-sdk";
|
|
399
|
+
console.log(
|
|
400
|
+
`Non-interactive run: defaulting to --framework claude-agent-sdk (pass --framework <${FRAMEWORKS.join(" | ")}> to choose).`
|
|
401
|
+
);
|
|
402
|
+
} else {
|
|
403
|
+
frameworkInput = await promptFor(`Framework (${FRAMEWORKS.join(" | ")}): `, "--framework <f>");
|
|
404
|
+
}
|
|
398
405
|
}
|
|
399
406
|
if (!isFramework(frameworkInput)) {
|
|
400
407
|
console.error(`Unknown framework "${frameworkInput}". Available: ${FRAMEWORKS.join(", ")}`);
|
package/dist/cli.js
CHANGED
|
@@ -141,7 +141,14 @@ Extracted the "${flags.example}" example into ${projectDir2}
|
|
|
141
141
|
const frameworkFlag = flags.framework ?? flags.agent;
|
|
142
142
|
let frameworkInput = typeof frameworkFlag === "string" ? frameworkFlag : void 0;
|
|
143
143
|
if (!frameworkInput) {
|
|
144
|
-
|
|
144
|
+
if (stdin.isTTY !== true) {
|
|
145
|
+
frameworkInput = "claude-agent-sdk";
|
|
146
|
+
console.log(
|
|
147
|
+
`Non-interactive run: defaulting to --framework claude-agent-sdk (pass --framework <${FRAMEWORKS.join(" | ")}> to choose).`
|
|
148
|
+
);
|
|
149
|
+
} else {
|
|
150
|
+
frameworkInput = await promptFor(`Framework (${FRAMEWORKS.join(" | ")}): `, "--framework <f>");
|
|
151
|
+
}
|
|
145
152
|
}
|
|
146
153
|
if (!isFramework(frameworkInput)) {
|
|
147
154
|
console.error(`Unknown framework "${frameworkInput}". Available: ${FRAMEWORKS.join(", ")}`);
|
|
@@ -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.7",
|
|
16
|
+
"@guuey/worker": "0.16.7"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
19
|
"@ggui-ai/cli": "0.12.0",
|
|
20
|
-
"@guuey/cli": "0.16.
|
|
20
|
+
"@guuey/cli": "0.16.7",
|
|
21
21
|
"tsup": "^8.5.0",
|
|
22
22
|
"tsx": "^4.19.0",
|
|
23
23
|
"typescript": "^5.8.0"
|
|
@@ -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.7",
|
|
13
|
+
"@guuey/chat": "0.16.7",
|
|
14
|
+
"@guuey/mcp-apps-host": "0.16.7",
|
|
15
15
|
"oidc-client-ts": "^3.1.0",
|
|
16
16
|
"qrcode": "^1.5.4",
|
|
17
17
|
"react": "^19.0.0",
|
|
@@ -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.7",
|
|
13
|
+
"@guuey/chat": "0.16.7",
|
|
14
|
+
"@guuey/mcp-apps-host": "0.16.7",
|
|
15
15
|
"oidc-client-ts": "^3.1.0",
|
|
16
16
|
"qrcode": "^1.5.4",
|
|
17
17
|
"react": "^19.0.0",
|
|
@@ -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.7",
|
|
16
|
+
"@guuey/worker": "0.16.7"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
19
|
"@ggui-ai/cli": "0.12.0",
|
|
20
|
-
"@guuey/cli": "0.16.
|
|
20
|
+
"@guuey/cli": "0.16.7",
|
|
21
21
|
"tsup": "^8.5.0",
|
|
22
22
|
"tsx": "^4.19.0",
|
|
23
23
|
"typescript": "^5.8.0"
|
|
@@ -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.7",
|
|
13
|
+
"@guuey/chat": "0.16.7",
|
|
14
|
+
"@guuey/mcp-apps-host": "0.16.7",
|
|
15
15
|
"oidc-client-ts": "^3.1.0",
|
|
16
16
|
"qrcode": "^1.5.4",
|
|
17
17
|
"react": "^19.0.0",
|
|
@@ -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.7",
|
|
16
|
+
"@guuey/worker": "0.16.7"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
19
|
"@ggui-ai/cli": "0.12.0",
|
|
20
|
-
"@guuey/cli": "0.16.
|
|
20
|
+
"@guuey/cli": "0.16.7",
|
|
21
21
|
"tsup": "^8.5.0",
|
|
22
22
|
"tsx": "^4.19.0",
|
|
23
23
|
"typescript": "^5.8.0"
|
|
@@ -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.7",
|
|
16
|
+
"@guuey/worker": "0.16.7"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
19
|
"@ggui-ai/cli": "0.12.0",
|
|
20
|
-
"@guuey/cli": "0.16.
|
|
20
|
+
"@guuey/cli": "0.16.7",
|
|
21
21
|
"tsup": "^8.5.0",
|
|
22
22
|
"tsx": "^4.19.0",
|
|
23
23
|
"typescript": "^5.8.0"
|
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.7",
|
|
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.7",
|
|
29
|
+
"@guuey/worker": "0.16.7"
|
|
30
30
|
},
|
|
31
31
|
"publishConfig": {
|
|
32
32
|
"access": "public"
|