Open source framework

The framework for agentic apps

Agent-Native is an open-source framework for rapidly building robust applications with agents at their core.

Don't pick between apps or agents.

Agent-native apps are both

SaaS ToolsRaw AI AgentsInternal ToolsAgent-Native App
UIPolished but rigidNoneMixed qualityFull UI, fork & go
AIBolted onPowerfulShallowly connectedAgent-first, integrated
CustomizationCan'tInstructions and skillsFull, but high maintenanceAgent modifies the app
OwnershipRentedSomewhat yoursYou own the codeYou own the code

Try an Agent-Native app

Fork a working app and let the agent evolve it. You can customize everything.

Clips app screenshot

Clips

Agent-Native Loom

Screen recordings with browser debug capture, calendar-synced meeting notes, and Fn-hold voice dictation — all transcribed, summarized, and searchable, with an agent that can edit any of it.

Try It
View Docs
Plans app screenshot

Plans

Visual plan mode for Codex, Claude Code, and coding agents

Install visual planning as an app-backed skill. Your coding agent can open structured plans with diagrams, wireframes, prototypes, annotations, comments, and shareable review links.

Try It
View Docs
Design app screenshot

Design

Agent-Native Figma

Agent-native HTML prototyping studio. Generate interactive Alpine/Tailwind designs, compare variants, refine live tweak controls, and export the result.

Try It
View Docs
Content app screenshot

Content

Agent-Native Notion/Obsidian

Edit local Markdown/MDX files like Obsidian, generate rich interactive custom blocks, and use an AI agent to draft, rewrite, and publish.

Try It
View Docs
Slides app screenshot

Slides

Agent-Native Google Slides

Generate full presentations from a prompt. Edit visually or conversationally. AI image generation, 8 layouts, and presentation mode built in.

Try It
View Docs
Analytics app screenshot

Analytics

Agent-Native Amplitude, Fullstory

Connect any data source, prompt for any chart, build reusable dashboards. The agent writes SQL, generates visualizations, and evolves the app.

Try It
View Docs
Chat app screenshot

Chat

A minimal ChatGPT-style app for your own agent

Chat-first app scaffold with durable threads, a standard sidebar, actions, auth, live sync, and a clean path to add screens or plug in your own agent backend.

Try It
View Docs

Build from scratch

Use the framework guide or build online with Builder.io.

Read the docs

One action gives you the whole app surface

Define an operation once. Agent-Native turns it into the UI action, agent tool, HTTP endpoint, MCP/A2A surface, CLI command, scoped permission check, and audit trail.

// One action powers the agent, UI, HTTP, MCP, A2A, and CLI.
export default defineAction({
  description: "Say hello from the local app-agent loop.",
  schema: z.object({
    name: z.string().default("world"),
  }),
  http: { method: "GET" },
  readOnly: true,
  run: async ({ name }) => ({ message: `Hello, ${name}!` }),
});

Batteries included,battle tested

Instead of starting from a blank prompt and a pile of improvised code, Agent-Native gives agents the battle-tested parts and best practices they need to build real software.

Browse toolkits

Software built for the agentic era

Start with a command or a durable action, run it through the app-agent loop, then grow it into UI, jobs, and collaboration without rewriting the operation. Open source. Forkable. Yours.