@guuey/create-agentic-app 0.2.2 → 0.3.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.
@@ -52,6 +52,15 @@ The todo MCP still answers on :6782 — it's just a supervised child of
52
52
  `guuey dev` now (copy `mcps/todo/` to add your own server; new `colocated`
53
53
  entries in `guuey.json` are auto-spawned the same way).
54
54
 
55
+ > **If a server's deps carry build scripts** (the classic: `tsx` → esbuild's
56
+ > platform-binary fetch), pnpm ≥11 refuses to run them on a fresh install —
57
+ > `ERR_PNPM_IGNORED_BUILDS` — and the server never boots. Approve the
58
+ > specific packages declaratively in the workspace-root `package.json` (or
59
+ > the server's own, for a standalone install):
60
+ > `"pnpm": { "onlyBuiltDependencies": ["esbuild"] }`. This scaffold ships
61
+ > the approval already; add to the list when a new dep needs its build step.
62
+ > Don't disable the gate wholesale — it's pnpm's supply-chain protection.
63
+
55
64
  Open http://localhost:6890 to chat with your agent locally.
56
65
 
57
66
  ## Local dev vs. deployed — what's different
@@ -10,13 +10,18 @@
10
10
  },
11
11
  "dependencies": {
12
12
  "@anthropic-ai/claude-agent-sdk": "^0.3.199",
13
- "@guuey/config": "0.2.2",
14
- "@guuey/worker": "0.2.2"
13
+ "@guuey/config": "0.3.0",
14
+ "@guuey/worker": "0.3.0"
15
15
  },
16
16
  "devDependencies": {
17
- "@guuey/cli": "0.2.2",
17
+ "@guuey/cli": "0.3.0",
18
18
  "tsup": "^8.5.0",
19
19
  "tsx": "^4.19.0",
20
20
  "typescript": "^5.8.0"
21
+ },
22
+ "pnpm": {
23
+ "onlyBuiltDependencies": [
24
+ "esbuild"
25
+ ]
21
26
  }
22
27
  }
@@ -13,10 +13,15 @@
13
13
  "zod": "^4.2.1"
14
14
  },
15
15
  "devDependencies": {
16
- "@guuey/cli": "0.2.2",
16
+ "@guuey/cli": "0.3.0",
17
17
  "tsup": "^8.5.0",
18
18
  "tsx": "^4.19.0",
19
19
  "typescript": "^5.8.0",
20
- "@guuey/config": "0.2.2"
20
+ "@guuey/config": "0.3.0"
21
+ },
22
+ "pnpm": {
23
+ "onlyBuiltDependencies": [
24
+ "esbuild"
25
+ ]
21
26
  }
22
27
  }
@@ -18,5 +18,10 @@
18
18
  "tsx": "^4.19.0",
19
19
  "tsup": "^8.5.0",
20
20
  "typescript": "^5.8.0"
21
+ },
22
+ "pnpm": {
23
+ "onlyBuiltDependencies": [
24
+ "esbuild"
25
+ ]
21
26
  }
22
27
  }
@@ -52,6 +52,15 @@ The todo MCP still answers on :6782 — it's just a supervised child of
52
52
  `guuey dev` now (copy `mcps/todo/` to add your own server; new `colocated`
53
53
  entries in `guuey.json` are auto-spawned the same way).
54
54
 
55
+ > **If a server's deps carry build scripts** (the classic: `tsx` → esbuild's
56
+ > platform-binary fetch), pnpm ≥11 refuses to run them on a fresh install —
57
+ > `ERR_PNPM_IGNORED_BUILDS` — and the server never boots. Approve the
58
+ > specific packages declaratively in the workspace-root `package.json` (or
59
+ > the server's own, for a standalone install):
60
+ > `"pnpm": { "onlyBuiltDependencies": ["esbuild"] }`. This scaffold ships
61
+ > the approval already; add to the list when a new dep needs its build step.
62
+ > Don't disable the gate wholesale — it's pnpm's supply-chain protection.
63
+
55
64
  Open http://localhost:6890 to chat with your agent locally.
56
65
 
57
66
  ## Local dev vs. deployed — what's different
@@ -10,13 +10,18 @@
10
10
  },
11
11
  "dependencies": {
12
12
  "@openai/agents": "^0.12.0",
13
- "@guuey/config": "0.2.2",
14
- "@guuey/worker": "0.2.2"
13
+ "@guuey/config": "0.3.0",
14
+ "@guuey/worker": "0.3.0"
15
15
  },
16
16
  "devDependencies": {
17
- "@guuey/cli": "0.2.2",
17
+ "@guuey/cli": "0.3.0",
18
18
  "tsup": "^8.5.0",
19
19
  "tsx": "^4.19.0",
20
20
  "typescript": "^5.8.0"
21
+ },
22
+ "pnpm": {
23
+ "onlyBuiltDependencies": [
24
+ "esbuild"
25
+ ]
21
26
  }
22
27
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@guuey/create-agentic-app",
3
- "version": "0.2.2",
3
+ "version": "0.3.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.2.2",
26
- "@guuey/worker": "0.2.2"
25
+ "@guuey/config": "0.3.0",
26
+ "@guuey/worker": "0.3.0"
27
27
  },
28
28
  "publishConfig": {
29
29
  "access": "public"