Build Verse: a poem-quote app on the agent-native chat template
CI / build (push) Successful in 4m26s

Adds a Postgres-backed quotes domain (poems/quotes/favorites) exposed as
five agent-native actions (list-quotes, get-random-quote, create-quote,
toggle-favorite, list-favorites) callable from both chat and the React UI
via useActionQuery/useActionMutation. Moves the primary UI from chat to a
mobile-first Quotes/Favorites experience (chat moves to /chat), adds
manual OpenTelemetry instrumentation exporting traces/metrics/logs over
OTLP, and wires a local Docker Postgres for shared state.
This commit is contained in:
exe.dev user
2026-07-25 17:42:04 +00:00
parent ffea2aeff7
commit 0a18c774a5
44 changed files with 14702 additions and 156 deletions
+5 -6
View File
@@ -1,17 +1,16 @@
import { createAuthPlugin } from "@agent-native/core/server";
const rawAppTitle = "App";
const rawAppTitle = "Verse";
const appTitle = rawAppTitle === "{" + "{APP_TITLE}}" ? "Chat" : rawAppTitle;
export default createAuthPlugin({
marketing: {
appName: appTitle,
tagline:
"Start from a chat-first agent-native app and add actions, screens, and workflows as you grow.",
tagline: "Quotes drawn from poems — browse, search, and save your favorites.",
features: [
"Full-page chat with durable threads and tool call history",
"Add actions once and use them from chat, UI, HTTP, MCP, A2A, and CLI",
"Plug in your own agent runtime or build on the included app-agent loop",
"Curated and community-submitted quotes from classic poems",
"Search and filter by poet or theme, favorite the ones you love",
"An agent chat that can look up, add, and organize quotes for you",
],
},
});