You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Scaffolds the examples/chat-app.md assembly as a runnable Cloudflare
Workers product: createAppAuth over drizzle/D1, createChatTables +
createChatStore, createChatTurnRoutes with the config-driven sandbox
producer lane, createUploadRoute (inline vs sandbox path split), the
/interactions answer endpoints, a D1 migration the generated app's own
e2e test executes for real, and a dependency-free dev chat page.
The generated app ships tests/chat-turn.e2e.test.ts: fake sandbox
producer -> POST turn -> NDJSON stream consumed -> user+assistant rows
persisted with typed parts + usage receipt -> buffered replay. The
repo-side gate (tests/create-agent-app-chat.test.ts) scaffolds into tmp,
links the real dist offline, typechecks the generated app, and runs its
suite — CI reds if the template ever drifts from the framework (#188
wave 3).
Copy file name to clipboardExpand all lines: create-agent-app/package.json
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
{
2
2
"name": "@tangle-network/create-agent-app",
3
3
"version": "0.1.0",
4
-
"description": "Scaffold a new Tangle agent product on @tangle-network/agent-app: a filled agent.config skeleton, a wired chat route over the Cloudflare preset, an empty knowledge/ dir, and the agent-followable breadcrumb docs (AGENTS.md / CUSTOMIZE.md / KNOWLEDGE.md).",
4
+
"description": "Scaffold a new Tangle agent product on @tangle-network/agent-app: the tool-loop skeleton (default) or, with --chat, the assembled multimodal chat vertical (auth, chat store, streaming turns with replay, uploads, agent asks) with its own end-to-end test — plus the agent-followable breadcrumb docs (AGENTS.md / CUSTOMIZE.md).",
0 commit comments