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

@ludecker/aaac

v1.2.4

Published

Agentic Architecture as Code (AAAC) — installable Cursor agent framework

Readme

@ludecker/aaac

Agentic Architecture as Code (AAAC) — a complete agentic architecture framework for Cursor.

Commands are the public API. Skills, agents, and orchestrators are private implementation.

Quick start

1. Install into your repo (no global npm CLI required):

npx @ludecker/aaac@latest init
pnpm dlx @ludecker/aaac@latest init --yes

Non-interactive with a target path:

npx @ludecker/aaac@latest init --yes --dir /path/to/your/repo

2. Open the project in Cursor and enable Hooks once: Settings → Hooks, then restart Cursor.

After that, slash commands work — no domain overlay, resolvers, or manual generate step required. init already generates graph.yaml and all commands.

Install report: init writes .cursor/aaac/state/install-sweep-report.md — a read-only inventory of docs, Cursor rules, and AAAC framework markdown in your repo, with recommendations (no merges or aliases).

Install report: init writes .cursor/aaac/state/install-sweep-report.md — a read-only inventory of docs, Cursor rules, and AAAC framework markdown in your repo, with recommendations (no merges or aliases).

Example commands

/create-module api "Add health check endpoint"
/fix-bug auth "Session expires too soon"
/check-module payments "Validate webhook idempotency"
/review-architecture system "Check layer boundaries"

What you get

  • .cursor/hooks.json — Run lifecycle and edit enforcement
  • .cursor/aaac/ — ontology, graph, lifecycle, run model, enforcement
  • .cursor/skills/shared/ — full pipeline (discovery → execute → verify → report)
  • .cursor/agents/ — generic subagent specs
  • .cursor/commands/ — ~130 generated slash commands
  • docs/master_rules.md, ui_design.md, project_context.md, architecture.md, agentic_architecture.md

Optional later: add domains under .cursor/domains/<slug>/ and resolvers in graph.project.yaml for slug routing (e.g. /update-module cms "…"). See docs/agentic_architecture.md Part 2.

Regenerate

Only needed after you edit ontology.json or graph.project.yaml:

npx @ludecker/aaac@latest generate
pnpm dlx @ludecker/aaac@latest generate

Links

Publish (maintainers)

Authenticate with a registry token in .npmrc (used by pnpm, not the npm CLI):

pnpm --filter @ludecker/aaac publish --access public --no-git-checks
git tag aaac-v1.1.0
git push origin aaac-v1.1.0

CI publishes on aaac-v* tags via .github/workflows/publish-aaac.yml (NPM_TOKEN secret).