npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@agent-native/core

v0.98.16

Published

Framework for agent-native application development — where AI agents and UI share SQL state, actions, and context

Readme

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 Tools | Raw AI Agents | Internal Tools | Agent-Native App | | ----------------- | ------------------ | ----------------------- | -------------------------- | ----------------------- | | UI | Polished but rigid | None | Mixed quality | Full UI, fork & go | | AI | Bolted on | Powerful | Shallowly connected | Agent-first, integrated | | Customization | Can't | Instructions and skills | Full, but high maintenance | Agent modifies the app | | Ownership | Rented | Somewhat yours | You own the code | You own the code |

Try an Agent-Native app

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

Clips

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

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

Agent-Native Figma

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

Content

Agent-Native Notion/Obsidian

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

Analytics

Agent-Native Amplitude, Fullstory

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

Chat

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.

Contributing

Working on this repo itself (not just building an app with it)? See DEVELOPMENT.md for local setup, workspace structure, and guard scripts.

License

MIT