# Agent-Native ## The framework for agentic apps Don't pick between apps or agents. Agent-Native apps are both. ```ts // One action powers every app surface: UI, agent, HTTP, MCP, A2A, and CLI. export default defineAction({ schema: z.object({ emailId: z.string(), body: z.string(), }), run: async ({ emailId, body }) => { await db.insert(replies).values({ emailId, body }); }, }); ``` - **[Actions](https://agent-native.com/docs/actions)**: Define work once. Use it from every app surface: UI, agent, HTTP, MCP, A2A, and CLI. - **[Agent runtime](https://agent-native.com/docs/agent-surfaces)**: Chat, tools, skills, memory, jobs, observability, and handoffs ship together. - **[Backend agnostic](https://agent-native.com/docs/database)**: Plug in any Drizzle-supported SQL database and Nitro-compatible host. - **[Toolkits](https://agent-native.com/docs/agent-native-toolkit)**: Reusable building blocks for collaboration, sharing, settings, teams, and observability. https://github.com/user-attachments/assets/ef51644b-6506-46d8-8083-0af7b7e5b65c ## Try an Agent-Native app Start from a working app and let the agent evolve it. **You can customize everything.**
**Clips** Clips app **Agent-Native Loom** **Plans** Plans app **Visual plan mode for coding agents** **Design** Design app **Agent-Native Figma**
**Content** Content app **Agent-Native Notion/Obsidian** **Analytics** Analytics app **Open-Source Alternative to Amplitude and FullStory** **Chat** Chat app **A minimal ChatGPT-style app for your own agent**
View the [full gallery](https://agent-native.com/apps), or build from scratch with the **[framework guide](https://agent-native.com/docs/getting-started)**. ## Quick Start One command to start a new app locally. ```bash npx @agent-native/core@latest create my-app cd my-app pnpm install pnpm dev ``` Prefer flags? `create my-app --template chat`, `--headless`, or `--standalone` skip the prompt. See the full [getting started docs](https://agent-native.com/docs). ## Community Join the **[Discord](https://discord.gg/qm82StQ2NC)** to ask questions, share what you're building, and get help. ## Docs Full documentation at **[agent-native.com](https://agent-native.com)**. ## Contributing Working on this repo itself (not just building an app with it)? See **[DEVELOPMENT.md](./DEVELOPMENT.md)** for local setup, workspace structure, and guard scripts. ## License MIT