@guuey/create-agentic-app 0.16.17 → 0.16.22
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/templates/agent/package.json +1 -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/claude-agent-sdk/web/src/lib/status.ts +6 -5
- 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/google-adk/web/src/lib/status.ts +6 -5
- 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/agentic-app/openai-agents-sdk/web/src/lib/status.ts +6 -5
- 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/claude-agent-sdk/web/src/lib/status.ts +6 -5
- 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/google-adk/web/src/lib/status.ts +6 -5
- package/dist/templates/base/openai-agents-sdk/package.json +3 -3
- package/dist/templates/base/openai-agents-sdk/web/package.json +1 -1
- package/dist/templates/base/openai-agents-sdk/web/src/lib/status.ts +6 -5
- package/package.json +3 -3
|
@@ -12,12 +12,12 @@
|
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
14
|
"@anthropic-ai/claude-agent-sdk": "^0.3.258",
|
|
15
|
-
"@guuey/config": "0.16.
|
|
16
|
-
"@guuey/worker": "0.16.
|
|
15
|
+
"@guuey/config": "0.16.22",
|
|
16
|
+
"@guuey/worker": "0.16.22"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
19
|
"@ggui-ai/cli": "0.13.0",
|
|
20
|
-
"@guuey/cli": "0.16.
|
|
20
|
+
"@guuey/cli": "0.16.22",
|
|
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.22",
|
|
13
|
+
"@guuey/chat": "0.16.22",
|
|
14
|
+
"@guuey/mcp-apps-host": "0.16.22",
|
|
15
15
|
"oidc-client-ts": "^3.1.0",
|
|
16
16
|
"qrcode": "^1.5.4",
|
|
17
17
|
"react": "^19.0.0",
|
|
@@ -4,11 +4,12 @@
|
|
|
4
4
|
* Probes the agent's invoke route with a CORS preflight-shaped OPTIONS —
|
|
5
5
|
* the ONE route both servers answer cross-origin: the pod's CORS covers
|
|
6
6
|
* `/agent/invoke` for the app's allowed domains, and `guuey dev --serve`
|
|
7
|
-
* answers OPTIONS 204 on it too. (
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
*
|
|
11
|
-
*
|
|
7
|
+
* answers OPTIONS 204 on it too. (The probe route both servers serve,
|
|
8
|
+
* `GET /readyz` — 200 serving, 503 draining/degraded — carries no CORS
|
|
9
|
+
* headers on either, so it is for same-origin pollers and `curl`, not a
|
|
10
|
+
* browser page on another origin.) The platform's richer status API is
|
|
11
|
+
* credentialed and guuey-origin-CORS'd, so the CLI is the tool for detail:
|
|
12
|
+
* `pnpm status` runs `guuey apps get` + `guuey agent status`.
|
|
12
13
|
*/
|
|
13
14
|
import { agentEndpointUrl, isLinked } from "../config";
|
|
14
15
|
|
|
@@ -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.22",
|
|
13
|
+
"@guuey/chat": "0.16.22",
|
|
14
|
+
"@guuey/mcp-apps-host": "0.16.22",
|
|
15
15
|
"oidc-client-ts": "^3.1.0",
|
|
16
16
|
"qrcode": "^1.5.4",
|
|
17
17
|
"react": "^19.0.0",
|
|
@@ -4,11 +4,12 @@
|
|
|
4
4
|
* Probes the agent's invoke route with a CORS preflight-shaped OPTIONS —
|
|
5
5
|
* the ONE route both servers answer cross-origin: the pod's CORS covers
|
|
6
6
|
* `/agent/invoke` for the app's allowed domains, and `guuey dev --serve`
|
|
7
|
-
* answers OPTIONS 204 on it too. (
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
*
|
|
11
|
-
*
|
|
7
|
+
* answers OPTIONS 204 on it too. (The probe route both servers serve,
|
|
8
|
+
* `GET /readyz` — 200 serving, 503 draining/degraded — carries no CORS
|
|
9
|
+
* headers on either, so it is for same-origin pollers and `curl`, not a
|
|
10
|
+
* browser page on another origin.) The platform's richer status API is
|
|
11
|
+
* credentialed and guuey-origin-CORS'd, so the CLI is the tool for detail:
|
|
12
|
+
* `pnpm status` runs `guuey apps get` + `guuey agent status`.
|
|
12
13
|
*/
|
|
13
14
|
import { agentEndpointUrl, isLinked } from "../config";
|
|
14
15
|
|
|
@@ -12,12 +12,12 @@
|
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
14
|
"@openai/agents": "^0.17.0",
|
|
15
|
-
"@guuey/config": "0.16.
|
|
16
|
-
"@guuey/worker": "0.16.
|
|
15
|
+
"@guuey/config": "0.16.22",
|
|
16
|
+
"@guuey/worker": "0.16.22"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
19
|
"@ggui-ai/cli": "0.13.0",
|
|
20
|
-
"@guuey/cli": "0.16.
|
|
20
|
+
"@guuey/cli": "0.16.22",
|
|
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.22",
|
|
13
|
+
"@guuey/chat": "0.16.22",
|
|
14
|
+
"@guuey/mcp-apps-host": "0.16.22",
|
|
15
15
|
"oidc-client-ts": "^3.1.0",
|
|
16
16
|
"qrcode": "^1.5.4",
|
|
17
17
|
"react": "^19.0.0",
|
|
@@ -4,11 +4,12 @@
|
|
|
4
4
|
* Probes the agent's invoke route with a CORS preflight-shaped OPTIONS —
|
|
5
5
|
* the ONE route both servers answer cross-origin: the pod's CORS covers
|
|
6
6
|
* `/agent/invoke` for the app's allowed domains, and `guuey dev --serve`
|
|
7
|
-
* answers OPTIONS 204 on it too. (
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
*
|
|
11
|
-
*
|
|
7
|
+
* answers OPTIONS 204 on it too. (The probe route both servers serve,
|
|
8
|
+
* `GET /readyz` — 200 serving, 503 draining/degraded — carries no CORS
|
|
9
|
+
* headers on either, so it is for same-origin pollers and `curl`, not a
|
|
10
|
+
* browser page on another origin.) The platform's richer status API is
|
|
11
|
+
* credentialed and guuey-origin-CORS'd, so the CLI is the tool for detail:
|
|
12
|
+
* `pnpm status` runs `guuey apps get` + `guuey agent status`.
|
|
12
13
|
*/
|
|
13
14
|
import { agentEndpointUrl, isLinked } from "../config";
|
|
14
15
|
|
|
@@ -12,12 +12,12 @@
|
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
14
|
"@anthropic-ai/claude-agent-sdk": "^0.3.258",
|
|
15
|
-
"@guuey/config": "0.16.
|
|
16
|
-
"@guuey/worker": "0.16.
|
|
15
|
+
"@guuey/config": "0.16.22",
|
|
16
|
+
"@guuey/worker": "0.16.22"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
19
|
"@ggui-ai/cli": "0.13.0",
|
|
20
|
-
"@guuey/cli": "0.16.
|
|
20
|
+
"@guuey/cli": "0.16.22",
|
|
21
21
|
"tsup": "^8.5.0",
|
|
22
22
|
"tsx": "^4.19.0",
|
|
23
23
|
"typescript": "^5.8.0"
|
|
@@ -4,11 +4,12 @@
|
|
|
4
4
|
* Probes the agent's invoke route with a CORS preflight-shaped OPTIONS —
|
|
5
5
|
* the ONE route both servers answer cross-origin: the pod's CORS covers
|
|
6
6
|
* `/agent/invoke` for the app's allowed domains, and `guuey dev --serve`
|
|
7
|
-
* answers OPTIONS 204 on it too. (
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
*
|
|
11
|
-
*
|
|
7
|
+
* answers OPTIONS 204 on it too. (The probe route both servers serve,
|
|
8
|
+
* `GET /readyz` — 200 serving, 503 draining/degraded — carries no CORS
|
|
9
|
+
* headers on either, so it is for same-origin pollers and `curl`, not a
|
|
10
|
+
* browser page on another origin.) The platform's richer status API is
|
|
11
|
+
* credentialed and guuey-origin-CORS'd, so the CLI is the tool for detail:
|
|
12
|
+
* `pnpm status` runs `guuey apps get` + `guuey agent status`.
|
|
12
13
|
*/
|
|
13
14
|
import { agentEndpointUrl, isLinked } from "../config";
|
|
14
15
|
|
|
@@ -4,11 +4,12 @@
|
|
|
4
4
|
* Probes the agent's invoke route with a CORS preflight-shaped OPTIONS —
|
|
5
5
|
* the ONE route both servers answer cross-origin: the pod's CORS covers
|
|
6
6
|
* `/agent/invoke` for the app's allowed domains, and `guuey dev --serve`
|
|
7
|
-
* answers OPTIONS 204 on it too. (
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
*
|
|
11
|
-
*
|
|
7
|
+
* answers OPTIONS 204 on it too. (The probe route both servers serve,
|
|
8
|
+
* `GET /readyz` — 200 serving, 503 draining/degraded — carries no CORS
|
|
9
|
+
* headers on either, so it is for same-origin pollers and `curl`, not a
|
|
10
|
+
* browser page on another origin.) The platform's richer status API is
|
|
11
|
+
* credentialed and guuey-origin-CORS'd, so the CLI is the tool for detail:
|
|
12
|
+
* `pnpm status` runs `guuey apps get` + `guuey agent status`.
|
|
12
13
|
*/
|
|
13
14
|
import { agentEndpointUrl, isLinked } from "../config";
|
|
14
15
|
|
|
@@ -12,12 +12,12 @@
|
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
14
|
"@openai/agents": "^0.17.0",
|
|
15
|
-
"@guuey/config": "0.16.
|
|
16
|
-
"@guuey/worker": "0.16.
|
|
15
|
+
"@guuey/config": "0.16.22",
|
|
16
|
+
"@guuey/worker": "0.16.22"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
19
|
"@ggui-ai/cli": "0.13.0",
|
|
20
|
-
"@guuey/cli": "0.16.
|
|
20
|
+
"@guuey/cli": "0.16.22",
|
|
21
21
|
"tsup": "^8.5.0",
|
|
22
22
|
"tsx": "^4.19.0",
|
|
23
23
|
"typescript": "^5.8.0"
|
|
@@ -4,11 +4,12 @@
|
|
|
4
4
|
* Probes the agent's invoke route with a CORS preflight-shaped OPTIONS —
|
|
5
5
|
* the ONE route both servers answer cross-origin: the pod's CORS covers
|
|
6
6
|
* `/agent/invoke` for the app's allowed domains, and `guuey dev --serve`
|
|
7
|
-
* answers OPTIONS 204 on it too. (
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
*
|
|
11
|
-
*
|
|
7
|
+
* answers OPTIONS 204 on it too. (The probe route both servers serve,
|
|
8
|
+
* `GET /readyz` — 200 serving, 503 draining/degraded — carries no CORS
|
|
9
|
+
* headers on either, so it is for same-origin pollers and `curl`, not a
|
|
10
|
+
* browser page on another origin.) The platform's richer status API is
|
|
11
|
+
* credentialed and guuey-origin-CORS'd, so the CLI is the tool for detail:
|
|
12
|
+
* `pnpm status` runs `guuey apps get` + `guuey agent status`.
|
|
12
13
|
*/
|
|
13
14
|
import { agentEndpointUrl, isLinked } from "../config";
|
|
14
15
|
|
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.22",
|
|
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.22",
|
|
29
|
+
"@guuey/worker": "0.16.22"
|
|
30
30
|
},
|
|
31
31
|
"publishConfig": {
|
|
32
32
|
"access": "public"
|