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

agentme

v0.3.1

Published

Curated distribution package of XDRs and speckit agent workflow files for AI-assisted software development.

Downloads

820

Readme

agentme

Curated distribution package of XDRs and speckit agent workflow files for AI-assisted software development.

This collection is being updated as we develop applications and feel the need for new instructions and skills to help with AI agents.

For guidance on turning recurring delivery friction into reusable decision records, see Continuous XDR improvement.

Getting Started

This will extract all the features of agentme (skills, github configurations, speckit, xdrs collection):

npx agentme

If you want the version pinned in a project, add agentme to a repository that already has a package.json and run it through the local dependency:

pnpm add -D agentme
pnpm exec agentme extract --output . --presets basic
pnpm exec agentme check --output . --presets basic

Overview

agentme is published as an npm package and consumed through filedist-based extraction. It ships a curated set of reusable artifacts for other repositories:

  • XDRs in .xdrs/agentme/ for engineering, architecture, testing, tooling, and CI/CD standards.
  • speckit agent files in .github/, .specify/, and .vscode/ for specification-driven AI development workflows.

The package is intentionally static: consumers install it as a development dependency, extract files into their own repository, and commit the generated output.

Presets

| Preset | Contents | | --- | --- | | basic | xdrs-core baseline ADRs, AGENTS.md, and agentme XDRs | | speckit | speckit agents, prompts, templates, scripts, memory files, and VS Code settings | | no preset | all shipped artifacts combined |

Typical consumer workflow:

  1. For one-off use or a new empty folder, run npx agentme --presets <preset>.
  2. For a pinned project version, add agentme to package.json and use pnpm exec agentme ....
  3. Review and commit the extracted files.
  4. Re-run extract and check when upgrading the package.

Usage Scenarios

Guide AI coding with maintained ADRs and EDRs

Use agentme when you want architectural and engineering decisions to actively constrain how coding agents implement features. The extracted ADRs and EDRs give the repository a durable source of truth for architecture, coding practices, testing expectations, tooling, and delivery standards.

This is useful when you want agents to:

  • consult explicit architecture records before choosing patterns or integrations;
  • follow engineering rules for project structure, quality, testing, and operations;
  • produce code that stays aligned with documented decisions instead of ad hoc prompt instructions.

Register feature and product knowledge as BDRs

Use XDR business records to capture product and operational knowledge while features are being delivered. BDRs are meant to document workflows, requirements, business rules, operating procedures, and product decisions in the same structured format as technical decisions.

This is useful when you want feature work to leave behind maintainable documentation for:

  • application workflows and operating procedures;
  • product requirements and business constraints;
  • business decisions that explain why the feature behaves the way it does.

Keep project documentation current through the speckit workflow

Use the speckit distribution when you want the delivery workflow itself to instruct agents to maintain ADRs, EDRs, and BDRs as implementation evolves. In this model, feature development and project documentation happen together: major technical and business decisions are continuously written back into XDRs instead of being deferred to a separate documentation pass.

This is useful when you want to:

  • keep the project decision log up to date as new features are specified and implemented;
  • have architecture, engineering, and business documentation generated in a consistent XDR format;
  • reuse the same XDR-based approach across other repositories that consume agentme.

Development

Use the root Makefile as the entry point for local verification:

make build
make lint
make test

What these targets do:

  • make build installs dependencies and creates a local npm package in dist/.
  • make lint runs the repository lint target.
  • make test rebuilds the package and validates the consumer extraction flow through the runnable example in examples/.

Repository Map

.
├── AGENTS.md           Project instructions for AI coding agents
├── Makefile            Root build, lint, test, and publish entry point
├── .mise.toml          Pinned tool versions (Node.js, pnpm)
├── bin/                CLI entrypoint delegated to filedist
├── dist/               Generated npm package tarballs
├── examples/           Runnable verification of consumer extraction behavior
├── .github/            Shipped speckit agent and prompt files
├── .specify/           Shipped speckit memory, scripts, and templates
└── .xdrs/              Shipped XDRs plus local project-only decision records

Key folders:

  • .xdrs/_core/ contains the baseline XDR framework imported from xdrs-core.
  • .xdrs/agentme/ contains the reusable XDRs distributed to consumers.
  • .xdrs/_local/ contains internal decisions for this repository only and is not shipped to consumers.
  • examples/output/ is generated during tests to validate preset extraction and cleanup behavior.

Release Notes

The published package exposes the agentme CLI through bin/filedist.js and is released to npm using the root publish target. The examples install the locally packed tarball from dist/ so they exercise the same package shape an external consumer receives.