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

3a-factory

v1.0.6

Published

Controlled software delivery workflow template for AI agents

Readme

3a-factory

A cross-agent development workflow template for Claude Code, Gemini CLI/AI Studio, Cursor, and other agentic coding tools.

Core lifecycle

GRILL-ME -> SPEC -> PLAN -> CODE -> REVIEW

The model must not modify application source code from a raw requirement. Coding is allowed only after an approved SPEC and PLAN phase, authorized by a single, case-insensitive APPROVED directive.

Recommended target-project structure

project-root/
├── AGENTS.md
├── CLAUDE.md
├── GEMINI.md
├── .agents/
│   ├── requirements/
│   ├── specs/
│   ├── plans/
│   ├── decisions/
│   ├── reviews/
│   ├── runs/
│   ├── templates/
│   └── skills/
│       ├── grill-me/SKILL.md
│       ├── spec/SKILL.md
│       ├── plan/SKILL.md
│       ├── code/SKILL.md
│       ├── review/SKILL.md
│       ├── init-ai-workflow/SKILL.md
│       ├── project-overview/SKILL.md
│       └── adr/SKILL.md
├── .claude/
│   ├── skills/              # Claude-native skills; can mirror .agents/skills
│   └── commands/            # Optional compatibility wrappers
├── .gemini/
│   └── commands/            # Gemini CLI custom slash commands in TOML
├── .cursor/
│   ├── rules/               # Cursor modern project rules in MDC
│   └── prompts/             # Copy-paste prompt fallbacks
└── WORKFLOW.md

Compatibility notes

  • Claude Code: use .claude/skills/<skill-name>/SKILL.md. Optional .claude/commands/*.md wrappers can call skills for backward compatibility.
  • Gemini CLI: use .gemini/commands/*.toml for slash commands. Plain markdown prompts remain useful for Gemini Advanced / AI Studio.
  • Cursor: prefer .cursor/rules/*.mdc project rules. .cursorrules may be generated only as legacy fallback.
  • Generic agents: read AGENTS.md and .agents/skills/**/SKILL.md as the portable source of truth.

Installation

You have multiple cross-platform installation methods available:

Method 1: Using NPM (Recommended & Automatic)

Add the package to your development dependencies. The installation triggers a postinstall hook that automatically populates the directory structures and templates in your project root:

npm install --save-dev 3a-factory

Method 2: Zero-Dependency Run (npx)

If you want to initialize the workspace without adding it to package.json:

npx 3a-factory

Method 3: Shell Scripts (Fallback)

Run the script from your project root:

  • Windows:
    powershell -ExecutionPolicy Bypass -File .\scripts\install.ps1
  • macOS / Linux:
    bash ./scripts/install.sh