🚀 Socket Launch Week Day 5:Introducing Repository Access Permissions and Custom Roles.Learn more
Sign In

@agent-native/dispatch

Package Overview
Dependencies
Maintainers
1
Versions
92
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@agent-native/dispatch

Dispatch — workspace control plane for agent-native apps. Vault, integrations, destinations, scheduled jobs, and cross-app delegation, shipped as a single drop-in package.

Source
npmnpm
Version
0.13.10
Version published
Weekly downloads
2K
16.64%
Maintainers
1
Weekly downloads
 
Created
Source

Agent-Native

The framework for agentic apps

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

// 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: Define work once. Use it from every app surface: UI, agent, HTTP, MCP, A2A, and CLI.
  • Agent runtime: Chat, tools, skills, memory, jobs, observability, and handoffs ship together.
  • Backend agnostic: Plug in any Drizzle-supported SQL database and Nitro-compatible host.
  • Toolkits: Reusable building blocks for collaboration, sharing, settings, teams, and observability.

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

Clips app

Agent-Native Loom

Record your screen with auto-transcripts and captured browser debug logs, share a link, and let an agent read the transcript, see timestamped frames, and fix the bug.

Plans

Plans app

Visual plan mode for coding agents

Install /visual-plan and /visual-recap so your coding agent can plan before it builds and recap changes after they land. High-level code reviews with diagrams, wireframes, annotations, and review links.

Design

Design app

Agent-Native Figma

Generate interactive HTML prototypes, compare variants, refine controls, and export the result.

Content

Content app

Agent-Native Notion/Obsidian

Edit local Markdown/MDX files, generate rich interactive custom blocks, and draft, rewrite, or publish with an agent.

Analytics

Analytics app

Agent-Native Amplitude, Fullstory

Connect analytics data sources, prompt for real charts, and build reusable dashboards.

Chat

Chat app

A minimal ChatGPT-style app for your own agent

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

View the full app gallery at agent-native.com/apps, or build from scratch with the framework guide.

Quick Start

One command to start a new app locally.

npx @agent-native/core@latest create my-app
cd my-app
pnpm install
pnpm dev

Prefer flags? create my-app --template mail, --headless, or --standalone skip the prompt.

See the full getting started docs.

Community

Join the Discord to ask questions, share what you're building, and get help.

Docs

Full documentation at agent-native.com.

License

MIT

FAQs

Package last updated on 08 Jul 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts