33 lines
1.0 KiB
Markdown
33 lines
1.0 KiB
Markdown
# Chat
|
|||
|
|
|
||
|
|
The minimal agent-native starter app — a clean, ChatGPT-style shell with chat at
|
||
|
|
the center, durable threads, standard app navigation, auth, live sync, and
|
||
|
|
actions. Start here when you want a real browser app to build on without
|
||
|
|
committing to a domain template.
|
||
|
|
|
||
|
|
**Live app: [chat.agent-native.com](https://chat.agent-native.com)**
|
||
|
|
|
||
|
|
Chat is the basic agent-native app starting point. It gives you the app-agent
|
||
|
|
loop wired end to end and one example action, so you can add your own UI, data,
|
||
|
|
and actions on top.
|
||
|
|
|
||
|
|
## Features
|
||
|
|
|
||
|
|
- ChatGPT-style shell with a threads list and durable chat history.
|
||
|
|
- Auth, live sync, and application state wired out of the box.
|
||
|
|
- The action surface the agent and UI share, plus one example action to copy.
|
||
|
|
- A minimal, brandable base for any domain app.
|
||
|
|
|
||
|
|
## Develop locally
|
||
|
|
|
||
|
|
Scaffold your own copy and run it:
|
||
|
|
|
||
|
|
```bash
|
||
|
|
npx @agent-native/core@latest create my-app --standalone --template chat
|
||
|
|
cd my-app
|
||
|
|
pnpm install
|
||
|
|
pnpm dev
|
||
|
|
```
|
||
|
|
|
||
|
|
Full docs: [agent-native.com/docs/template-chat](https://agent-native.com/docs/template-chat).
|