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

@genui-a3/create

v0.1.8

Published

CLI scaffolding tool for A3 agentic apps

Readme

@genui-a3/create

Scaffold a new A3 agentic app in seconds.

Quick Start

npx @genui-a3/create@latest

This starts an interactive session that will:

  1. Prompt for your project name and directory
  2. Let you select and configure LLM providers (OpenAI, Anthropic, Bedrock)
  3. Generate a production-ready Next.js template
  4. Automatically create your .env with the provided credentials
  5. Install all dependencies

Then start developing:

cd my-app
npm run dev

Open http://localhost:3000 to see your app.

What You Get

A fully configured Next.js application with:

  • Chat interface — conversational UI backed by A3 agents
  • Streaming responses — real-time streamed agent output
  • AG-UI protocol support — compatible with the AG-UI standard
  • Agent registration — define and wire up custom agents using @genui-a3/core
  • Material UI — pre-configured theming with MUI components
  • TypeScript — strict type-checking out of the box

Configuration & Providers

The CLI guides you through setting up your LLM providers and authentication during scaffolding.

Supported Providers

| Provider | Authentication | Auto-Generated Config | |----------|---------------|------------------------| | OpenAI | API Key | OPENAI_API_KEY | | Anthropic | API Key | ANTHROPIC_API_KEY | | AWS Bedrock | AWS Profile or Access Keys | AWS_REGION, AWS_ACCESS_KEY_ID, etc. |

Automatic Setup

  • Environment Variables: A .env file is generated with your keys so you can run the app immediately.
  • Provider Registry: The CLI generates app/lib/provider.ts, pre-configuring the A3 Provider factory with your primary model selection.

Usage

# Interactive — prompts for a project name
npx @genui-a3/create@latest

# Non-interactive — pass the name directly
npx @genui-a3/create@latest my-app

The CLI will not overwrite a non-empty directory.

Project Structure

my-app/
├── app/
│   ├── (pages)/        # Route groups (chat, stream, agui)
│   ├── agents/         # Agent definitions
│   ├── api/            # API routes
│   ├── components/     # Shared UI components
│   ├── layout.tsx      # Root layout
│   └── page.tsx        # Landing page
├── public/             # Static assets
├── package.json
├── tsconfig.json
└── next.config.mjs

Available Scripts

Inside a generated project you can run:

| Command | Description | |---------|-------------| | npm run dev | Start the development server | | npm run build | Create a production build | | npm start | Run the production server |

Local Development

Test the CLI locally before publishing by packing it into a tarball.

# 1. Build a local tarball
npm pack

# This will create a file named genui-a3-create-0.x.x.tgz at the root of this package

# 2. Switch to your desired test directory
cd ../my-test-workspace

# 3. Scaffold a new project using the tarball
npx --package=/absolute/path/to/genui-a3-create-0.x.x.tgz create-genui-a3

Prerequisites

  • Node.js 20.19.0 or later
  • npm 10+

Related

  • @genui-a3/core — the core A3 agentic framework that powers scaffolded apps

License

ISC