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

@ozzylabs/create-agentic-app

v0.2.4

Published

Scaffold an AI-agent-native development environment with interactive presets

Readme

create-agentic-app

Scaffold an AI-agent-native development environment with interactive presets.

Companion to agentic-dev-template.

Quick Start

npm create @ozzylabs/agentic-app my-app
cd my-app
bash scripts/setup.sh

Wizard

The interactive wizard asks up to 9 questions in an app-first flow (some are skipped when Project type → Library is chosen):

  1. Project name
  2. Project type — App (default) / Library (npm package)
  3. Frontend — None / React + Vite / Next.js / Vue / Nuxt / SvelteKit / Astro
  4. Backend — None / Hono / FastAPI / Express / Batch
  5. Cloud providers — AWS / Azure / Google Cloud (multi-select)
  6. Infrastructure as Code — CDK / CloudFormation / Terraform / Bicep (filtered by cloud)
  7. Language toolchains — TypeScript / Python (excluding auto-resolved)
  8. Testing tools — Playwright (multi-select)
  9. AI Agent tools — Claude Code / Codex CLI / Gemini CLI / Amazon Q Developer / GitHub Copilot / Cline / Cursor (multi-select)

Presets

29 composable presets across 9 layers. Each provides owned files + merge contributions to shared files (package.json, .mise.toml, lefthook.yaml, VSCode, devcontainer, README.md, CI workflow).

| Layer | Presets | |-------|--------| | Base | Always included (git hooks, linters, devcontainer) | | Frontend | React + Vite, Next.js, Vue, Nuxt, SvelteKit, Astro | | Backend | Hono, FastAPI, Express, Batch | | App | Library (npm package — release-please, dist build, MIT LICENSE) | | Cloud | AWS, Azure, Google Cloud | | IaC | CDK, CloudFormation, Terraform, Bicep | | Language | TypeScript, Python | | Testing | Playwright | | Agent | Claude Code, Codex CLI, Gemini CLI, Amazon Q Developer, GitHub Copilot, Cline, Cursor |

See docs/design.md for the full preset details and dependency chains.

What You Get

Every generated project includes:

  • Claude Code integration — CLAUDE.md, skills (/setup, /implement, /lint, /test, /commit, /pr, /review, /ship), MCP servers
  • Git hooks — commitlint (commit-msg), linters + Gitleaks (pre-commit), typecheck (pre-push)
  • CI workflow — All linters + tests + build on push/PR
  • Dev Container — VSCode devcontainer with preset-specific tools, extensions, and mounts
  • Renovate — Automated dependency updates

Development

See docs/development.md for setup instructions, commands, and testing guide.

Architecture

  • src/presets/*.ts — Preset logic (merge contributions, dependencies)
  • templates/*/ — Preset file assets (copied as-is to output)
  • src/generator.ts — Composition engine (resolve → merge → output)
  • src/merge.ts — Per-filetype merge logic (JSON, YAML, TOML, Markdown)

See docs/design.md for the full design document.

External Presets

Beyond the 28 built-in presets, create-agentic-app can load external preset packages (e.g. @ozzylabs/preset-*) without modifying the CLI:

npm create @ozzylabs/agentic-app my-app -- --preset @ozzylabs/preset-foo

Or list them in agentic-app.config.json next to your project:

{ "presets": ["@ozzylabs/preset-foo", "./local/preset"] }

See docs/preset-authoring.md § External Preset Packages for the authoring guide and examples/preset-example for a reference implementation.

Contributing

See CONTRIBUTING.md for guidelines.

To add a new preset, see docs/preset-authoring.md.

License

MIT