@guuey/create-agentic-app 0.16.0 → 0.16.2
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/agentic-app/claude-agent-sdk/package.json +3 -3
- package/dist/templates/agentic-app/claude-agent-sdk/prompts/system.md +6 -0
- package/dist/templates/agentic-app/claude-agent-sdk/web/package.json +3 -3
- package/dist/templates/agentic-app/claude-agent-sdk/web/src/styles-app.css +5 -1
- package/dist/templates/agentic-app/google-adk/package.json +2 -2
- package/dist/templates/agentic-app/google-adk/prompts/system.md +6 -0
- package/dist/templates/agentic-app/google-adk/web/package.json +3 -3
- package/dist/templates/agentic-app/google-adk/web/src/styles-app.css +5 -1
- package/dist/templates/agentic-app/openai-agents-sdk/package.json +3 -3
- package/dist/templates/agentic-app/openai-agents-sdk/prompts/system.md +6 -0
- package/dist/templates/agentic-app/openai-agents-sdk/web/package.json +3 -3
- package/dist/templates/agentic-app/openai-agents-sdk/web/src/styles-app.css +5 -1
- package/dist/templates/base/claude-agent-sdk/package.json +3 -3
- package/dist/templates/base/claude-agent-sdk/prompts/system.md +6 -0
- 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/prompts/system.md +6 -0
- 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/prompts/system.md +6 -0
- package/dist/templates/base/openai-agents-sdk/web/package.json +1 -1
- package/package.json +3 -3
|
@@ -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.2",
|
|
16
|
+
"@guuey/worker": "0.16.2"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
19
|
"@ggui-ai/cli": "0.12.0",
|
|
20
|
-
"@guuey/cli": "0.16.
|
|
20
|
+
"@guuey/cli": "0.16.2",
|
|
21
21
|
"tsup": "^8.5.0",
|
|
22
22
|
"tsx": "^4.19.0",
|
|
23
23
|
"typescript": "^5.8.0"
|
|
@@ -7,3 +7,9 @@ loop by default; keep plain prose for one-line answers with nothing to
|
|
|
7
7
|
show. After changing todos (create, toggle, delete), render the updated
|
|
8
8
|
list, so every turn ends on a surface that reflects the current state.
|
|
9
9
|
Use only the fields the surface's schema declares.
|
|
10
|
+
|
|
11
|
+
An under-specified ask is NEVER answered with a text-only list of
|
|
12
|
+
questions: render the closest useful surface FIRST — the current list,
|
|
13
|
+
the options, a form — and ask your one narrowing question in a short
|
|
14
|
+
line beside it. Clarification happens ON a surface, from the very first
|
|
15
|
+
turn.
|
|
@@ -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.2",
|
|
13
|
+
"@guuey/chat": "0.16.2",
|
|
14
|
+
"@guuey/mcp-apps-host": "0.16.2",
|
|
15
15
|
"oidc-client-ts": "^3.1.0",
|
|
16
16
|
"qrcode": "^1.5.4",
|
|
17
17
|
"react": "^19.0.0",
|
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
/* agentic-app shell — split sidebar + fullscreen-swap canvas. Loaded after
|
|
2
2
|
styles.css; only shell-specific rules live here. */
|
|
3
3
|
|
|
4
|
+
/* guuey#429: the lib root is viewport-pinned (100dvh + overflow hidden) —
|
|
5
|
+
the shell fills IT; a min-height:100vh here would overflow the pinned
|
|
6
|
+
root and re-open the page-scroll hole the lib just closed. */
|
|
4
7
|
.app-shell {
|
|
5
|
-
|
|
8
|
+
height: 100%;
|
|
9
|
+
min-height: 0;
|
|
6
10
|
display: flex;
|
|
7
11
|
flex-direction: column;
|
|
8
12
|
}
|
|
@@ -7,3 +7,9 @@ loop by default; keep plain prose for one-line answers with nothing to
|
|
|
7
7
|
show. After changing todos (create, toggle, delete), render the updated
|
|
8
8
|
list, so every turn ends on a surface that reflects the current state.
|
|
9
9
|
Use only the fields the surface's schema declares.
|
|
10
|
+
|
|
11
|
+
An under-specified ask is NEVER answered with a text-only list of
|
|
12
|
+
questions: render the closest useful surface FIRST — the current list,
|
|
13
|
+
the options, a form — and ask your one narrowing question in a short
|
|
14
|
+
line beside it. Clarification happens ON a surface, from the very first
|
|
15
|
+
turn.
|
|
@@ -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.2",
|
|
13
|
+
"@guuey/chat": "0.16.2",
|
|
14
|
+
"@guuey/mcp-apps-host": "0.16.2",
|
|
15
15
|
"oidc-client-ts": "^3.1.0",
|
|
16
16
|
"qrcode": "^1.5.4",
|
|
17
17
|
"react": "^19.0.0",
|
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
/* agentic-app shell — split sidebar + fullscreen-swap canvas. Loaded after
|
|
2
2
|
styles.css; only shell-specific rules live here. */
|
|
3
3
|
|
|
4
|
+
/* guuey#429: the lib root is viewport-pinned (100dvh + overflow hidden) —
|
|
5
|
+
the shell fills IT; a min-height:100vh here would overflow the pinned
|
|
6
|
+
root and re-open the page-scroll hole the lib just closed. */
|
|
4
7
|
.app-shell {
|
|
5
|
-
|
|
8
|
+
height: 100%;
|
|
9
|
+
min-height: 0;
|
|
6
10
|
display: flex;
|
|
7
11
|
flex-direction: column;
|
|
8
12
|
}
|
|
@@ -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.2",
|
|
16
|
+
"@guuey/worker": "0.16.2"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
19
|
"@ggui-ai/cli": "0.12.0",
|
|
20
|
-
"@guuey/cli": "0.16.
|
|
20
|
+
"@guuey/cli": "0.16.2",
|
|
21
21
|
"tsup": "^8.5.0",
|
|
22
22
|
"tsx": "^4.19.0",
|
|
23
23
|
"typescript": "^5.8.0"
|
|
@@ -7,3 +7,9 @@ loop by default; keep plain prose for one-line answers with nothing to
|
|
|
7
7
|
show. After changing todos (create, toggle, delete), render the updated
|
|
8
8
|
list, so every turn ends on a surface that reflects the current state.
|
|
9
9
|
Use only the fields the surface's schema declares.
|
|
10
|
+
|
|
11
|
+
An under-specified ask is NEVER answered with a text-only list of
|
|
12
|
+
questions: render the closest useful surface FIRST — the current list,
|
|
13
|
+
the options, a form — and ask your one narrowing question in a short
|
|
14
|
+
line beside it. Clarification happens ON a surface, from the very first
|
|
15
|
+
turn.
|
|
@@ -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.2",
|
|
13
|
+
"@guuey/chat": "0.16.2",
|
|
14
|
+
"@guuey/mcp-apps-host": "0.16.2",
|
|
15
15
|
"oidc-client-ts": "^3.1.0",
|
|
16
16
|
"qrcode": "^1.5.4",
|
|
17
17
|
"react": "^19.0.0",
|
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
/* agentic-app shell — split sidebar + fullscreen-swap canvas. Loaded after
|
|
2
2
|
styles.css; only shell-specific rules live here. */
|
|
3
3
|
|
|
4
|
+
/* guuey#429: the lib root is viewport-pinned (100dvh + overflow hidden) —
|
|
5
|
+
the shell fills IT; a min-height:100vh here would overflow the pinned
|
|
6
|
+
root and re-open the page-scroll hole the lib just closed. */
|
|
4
7
|
.app-shell {
|
|
5
|
-
|
|
8
|
+
height: 100%;
|
|
9
|
+
min-height: 0;
|
|
6
10
|
display: flex;
|
|
7
11
|
flex-direction: column;
|
|
8
12
|
}
|
|
@@ -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.2",
|
|
16
|
+
"@guuey/worker": "0.16.2"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
19
|
"@ggui-ai/cli": "0.12.0",
|
|
20
|
-
"@guuey/cli": "0.16.
|
|
20
|
+
"@guuey/cli": "0.16.2",
|
|
21
21
|
"tsup": "^8.5.0",
|
|
22
22
|
"tsx": "^4.19.0",
|
|
23
23
|
"typescript": "^5.8.0"
|
|
@@ -7,3 +7,9 @@ loop by default; keep plain prose for one-line answers with nothing to
|
|
|
7
7
|
show. After changing todos (create, toggle, delete), render the updated
|
|
8
8
|
list, so every turn ends on a surface that reflects the current state.
|
|
9
9
|
Use only the fields the surface's schema declares.
|
|
10
|
+
|
|
11
|
+
An under-specified ask is NEVER answered with a text-only list of
|
|
12
|
+
questions: render the closest useful surface FIRST — the current list,
|
|
13
|
+
the options, a form — and ask your one narrowing question in a short
|
|
14
|
+
line beside it. Clarification happens ON a surface, from the very first
|
|
15
|
+
turn.
|
|
@@ -7,3 +7,9 @@ loop by default; keep plain prose for one-line answers with nothing to
|
|
|
7
7
|
show. After changing todos (create, toggle, delete), render the updated
|
|
8
8
|
list, so every turn ends on a surface that reflects the current state.
|
|
9
9
|
Use only the fields the surface's schema declares.
|
|
10
|
+
|
|
11
|
+
An under-specified ask is NEVER answered with a text-only list of
|
|
12
|
+
questions: render the closest useful surface FIRST — the current list,
|
|
13
|
+
the options, a form — and ask your one narrowing question in a short
|
|
14
|
+
line beside it. Clarification happens ON a surface, from the very first
|
|
15
|
+
turn.
|
|
@@ -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.2",
|
|
16
|
+
"@guuey/worker": "0.16.2"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
19
|
"@ggui-ai/cli": "0.12.0",
|
|
20
|
-
"@guuey/cli": "0.16.
|
|
20
|
+
"@guuey/cli": "0.16.2",
|
|
21
21
|
"tsup": "^8.5.0",
|
|
22
22
|
"tsx": "^4.19.0",
|
|
23
23
|
"typescript": "^5.8.0"
|
|
@@ -7,3 +7,9 @@ loop by default; keep plain prose for one-line answers with nothing to
|
|
|
7
7
|
show. After changing todos (create, toggle, delete), render the updated
|
|
8
8
|
list, so every turn ends on a surface that reflects the current state.
|
|
9
9
|
Use only the fields the surface's schema declares.
|
|
10
|
+
|
|
11
|
+
An under-specified ask is NEVER answered with a text-only list of
|
|
12
|
+
questions: render the closest useful surface FIRST — the current list,
|
|
13
|
+
the options, a form — and ask your one narrowing question in a short
|
|
14
|
+
line beside it. Clarification happens ON a surface, from the very first
|
|
15
|
+
turn.
|
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.2",
|
|
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.2",
|
|
29
|
+
"@guuey/worker": "0.16.2"
|
|
30
30
|
},
|
|
31
31
|
"publishConfig": {
|
|
32
32
|
"access": "public"
|