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

build-agent-app

v1.0.0

Published

Create AI agents with the Claude Agent SDK or OpenAI Agents SDK

Readme

build-agent-app

Create AI agents with the Claude Agent SDK or OpenAI Agents SDK.

Quick Start

npx build-agent-app my-agent
cd my-agent
cp .env.example .env  # Add your API key
npm run build
npm start

Interactive Wizard

The CLI guides you through a 6-step process:

  1. Project Name - Name your agent project
  2. Domain - Choose your agent's area of expertise
    • Development, Business, Creative, Data, or Knowledge
  3. Template - Select a pre-configured template or start from scratch
  4. SDK & Model - Choose Claude (Anthropic) or OpenAI with your preferred model
  5. Tools & Permissions - Enable capabilities and set security level
  6. Project Details - Author name and license

Example

$ npx build-agent-app

   ╔═══════════════════════════════════════╗
   ║     Agent Workshop CLI               ║
   ║     Build AI agents with Claude/OpenAI║
   ╚═══════════════════════════════════════╝

? What is your project name? › my-agent
? What domain is your agent for? › Development
? Select a template: › Code Review Agent
? Which AI provider? › Claude (Anthropic)
? Select model: › Claude Sonnet 4.5 (recommended)
? Permission level: › Balanced
? Enable tools: › read-file, find-files, search-files, git-operations
? Author name: › Your Name
? License: › MIT

   Creating project files...
✔ Generated 25 files
   Installing dependencies...
✔ Dependencies installed

   ✨ Success! Created my-agent

   Next steps:
   cd my-agent
   cp .env.example .env
   # Add your ANTHROPIC_API_KEY to .env
   npm run build
   npm start

   Want to add MCP servers for extended capabilities?
   → Visit https://agent-workshop.dev/docs/features/mcp-servers
   → Or use the web builder at https://agent-workshop.dev

Generated Project

Your agent project includes:

my-agent/
├── package.json          # Dependencies and scripts
├── tsconfig.json         # TypeScript configuration
├── src/
│   ├── cli.ts            # Interactive CLI entry point
│   ├── agent.ts          # Core agent implementation
│   ├── config.ts         # Configuration management
│   ├── permissions.ts    # Permission policies
│   ├── planner.ts        # Planning mode support
│   ├── workflows.ts      # Workflow execution
│   ├── mcp-config.ts     # MCP server configuration
│   ├── claude-config.ts  # Claude Code lever support
│   └── tools/            # Tool implementations by category
├── .commands/            # Domain-specific workflows
├── .plans/               # Plan storage directory
├── .mcp.json             # MCP server configuration
├── .env.example          # Environment variable template
├── scripts/publish.sh    # Publishing helper script
├── .gitignore
├── README.md
└── LICENSE

Requirements

Domains

| Domain | Description | Example Templates | |--------|-------------|-------------------| | Development | Software engineering | Code Review, Test Generation | | Business | Document processing | Report Generator, Data Entry | | Creative | Content creation | Blog Writing, Social Media | | Data | Analysis & ML | Data Analysis, Visualization | | Knowledge | Research | Research Ops |

MCP Servers

MCP (Model Context Protocol) servers extend your agent with additional capabilities. Configure them after generation:

License

MIT