@guuey/create-agentic-app 0.3.0 → 0.4.0
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/claude-agent-sdk/README.md +17 -6
- package/dist/templates/claude-agent-sdk/package.json +3 -3
- package/dist/templates/google-adk/package.json +2 -2
- package/dist/templates/openai-agents-sdk/README.md +17 -6
- package/dist/templates/openai-agents-sdk/package.json +3 -3
- package/package.json +6 -3
|
@@ -67,12 +67,23 @@ Open http://localhost:6890 to chat with your agent locally.
|
|
|
67
67
|
|
|
68
68
|
`guuey dev` is the open, local equivalent of the pod router that runs your
|
|
69
69
|
worker in production. It mirrors the real spawn/stream contract closely — the
|
|
70
|
-
same normalizer, the same SSE shape — but it deliberately cuts three corners
|
|
71
|
-
that only matter once real users and real money are involved
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
gVisor
|
|
70
|
+
same normalizer, the same SSE shape — but it deliberately cuts three corners:
|
|
71
|
+
two that only matter once real users and real money are involved, and one
|
|
72
|
+
you should read twice:
|
|
73
|
+
|
|
74
|
+
- **No sandboxing — read this one twice.** Locally your worker runs as a
|
|
75
|
+
plain child process: no `bwrap`/gVisor isolation on any platform, it
|
|
76
|
+
inherits your **full shell environment** (every variable, including
|
|
77
|
+
credentials unrelated to this agent), and when filesystem layers are
|
|
78
|
+
bound the host grants the agent shell and file tools **without
|
|
79
|
+
prompting** (the production jail those tools assume does not exist
|
|
80
|
+
locally). Net: `guuey dev` runs an LLM-driven agent with unprompted
|
|
81
|
+
shell access as you, with your env. That's a deliberate dev-trust
|
|
82
|
+
posture, not an accident — treat the agent like any script you'd run
|
|
83
|
+
from the internet: run `guuey dev` in a throwaway shell/container with
|
|
84
|
+
a minimal environment if your agent (or any MCP server it talks to)
|
|
85
|
+
handles untrusted input. In production every invocation runs inside a
|
|
86
|
+
gVisor-isolated pod with only its declared environment.
|
|
76
87
|
- **Permissive auth.** `ggui serve --dev-allow-all` accepts any bearer
|
|
77
88
|
locally. The deployed ggui instance enforces real auth.
|
|
78
89
|
- **No metering or history.** Local runs aren't billed and aren't persisted.
|
|
@@ -10,11 +10,11 @@
|
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@anthropic-ai/claude-agent-sdk": "^0.3.199",
|
|
13
|
-
"@guuey/config": "0.
|
|
14
|
-
"@guuey/worker": "0.
|
|
13
|
+
"@guuey/config": "0.4.0",
|
|
14
|
+
"@guuey/worker": "0.4.0"
|
|
15
15
|
},
|
|
16
16
|
"devDependencies": {
|
|
17
|
-
"@guuey/cli": "0.
|
|
17
|
+
"@guuey/cli": "0.4.0",
|
|
18
18
|
"tsup": "^8.5.0",
|
|
19
19
|
"tsx": "^4.19.0",
|
|
20
20
|
"typescript": "^5.8.0"
|
|
@@ -13,11 +13,11 @@
|
|
|
13
13
|
"zod": "^4.2.1"
|
|
14
14
|
},
|
|
15
15
|
"devDependencies": {
|
|
16
|
-
"@guuey/cli": "0.
|
|
16
|
+
"@guuey/cli": "0.4.0",
|
|
17
17
|
"tsup": "^8.5.0",
|
|
18
18
|
"tsx": "^4.19.0",
|
|
19
19
|
"typescript": "^5.8.0",
|
|
20
|
-
"@guuey/config": "0.
|
|
20
|
+
"@guuey/config": "0.4.0"
|
|
21
21
|
},
|
|
22
22
|
"pnpm": {
|
|
23
23
|
"onlyBuiltDependencies": [
|
|
@@ -67,12 +67,23 @@ Open http://localhost:6890 to chat with your agent locally.
|
|
|
67
67
|
|
|
68
68
|
`guuey dev` is the open, local equivalent of the pod router that runs your
|
|
69
69
|
worker in production. It mirrors the real spawn/stream contract closely — the
|
|
70
|
-
same normalizer, the same SSE shape — but it deliberately cuts three corners
|
|
71
|
-
that only matter once real users and real money are involved
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
gVisor
|
|
70
|
+
same normalizer, the same SSE shape — but it deliberately cuts three corners:
|
|
71
|
+
two that only matter once real users and real money are involved, and one
|
|
72
|
+
you should read twice:
|
|
73
|
+
|
|
74
|
+
- **No sandboxing — read this one twice.** Locally your worker runs as a
|
|
75
|
+
plain child process: no `bwrap`/gVisor isolation on any platform, it
|
|
76
|
+
inherits your **full shell environment** (every variable, including
|
|
77
|
+
credentials unrelated to this agent), and when filesystem layers are
|
|
78
|
+
bound the host grants the agent shell and file tools **without
|
|
79
|
+
prompting** (the production jail those tools assume does not exist
|
|
80
|
+
locally). Net: `guuey dev` runs an LLM-driven agent with unprompted
|
|
81
|
+
shell access as you, with your env. That's a deliberate dev-trust
|
|
82
|
+
posture, not an accident — treat the agent like any script you'd run
|
|
83
|
+
from the internet: run `guuey dev` in a throwaway shell/container with
|
|
84
|
+
a minimal environment if your agent (or any MCP server it talks to)
|
|
85
|
+
handles untrusted input. In production every invocation runs inside a
|
|
86
|
+
gVisor-isolated pod with only its declared environment.
|
|
76
87
|
- **Permissive auth.** `ggui serve --dev-allow-all` accepts any bearer
|
|
77
88
|
locally. The deployed ggui instance enforces real auth.
|
|
78
89
|
- **No metering or history.** Local runs aren't billed and aren't persisted.
|
|
@@ -10,11 +10,11 @@
|
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@openai/agents": "^0.12.0",
|
|
13
|
-
"@guuey/config": "0.
|
|
14
|
-
"@guuey/worker": "0.
|
|
13
|
+
"@guuey/config": "0.4.0",
|
|
14
|
+
"@guuey/worker": "0.4.0"
|
|
15
15
|
},
|
|
16
16
|
"devDependencies": {
|
|
17
|
-
"@guuey/cli": "0.
|
|
17
|
+
"@guuey/cli": "0.4.0",
|
|
18
18
|
"tsup": "^8.5.0",
|
|
19
19
|
"tsx": "^4.19.0",
|
|
20
20
|
"typescript": "^5.8.0"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@guuey/create-agentic-app",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
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",
|
|
@@ -22,8 +22,8 @@
|
|
|
22
22
|
"tsup": "^8.5.0",
|
|
23
23
|
"typescript": "^5.8.0",
|
|
24
24
|
"vitest": "^3.2.4",
|
|
25
|
-
"@guuey/config": "0.
|
|
26
|
-
"@guuey/worker": "0.
|
|
25
|
+
"@guuey/config": "0.4.0",
|
|
26
|
+
"@guuey/worker": "0.4.0"
|
|
27
27
|
},
|
|
28
28
|
"publishConfig": {
|
|
29
29
|
"access": "public"
|
|
@@ -33,6 +33,9 @@
|
|
|
33
33
|
"url": "git+https://github.com/withguuey/guuey-sdks.git",
|
|
34
34
|
"directory": "packages/create-agentic-app"
|
|
35
35
|
},
|
|
36
|
+
"bugs": {
|
|
37
|
+
"url": "https://github.com/withguuey/guuey-sdks/issues"
|
|
38
|
+
},
|
|
36
39
|
"homepage": "https://guuey.com",
|
|
37
40
|
"scripts": {
|
|
38
41
|
"build": "tsup && node scripts/build-templates.mjs && node scripts/check-templates.mjs",
|