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

create-accordo

v0.1.0

Published

Create a local Accordo CRM project for coding agents: deterministic, offline, inspectable, and owned as source.

Readme

create-accordo

Create a local Accordo CRM project that a coding agent can inspect, extend and verify as source you own.

npm create accordo my-crm -- --apply
cd my-crm
npm run verify
npm run crm -- app inspect --json

Without --apply, the command prints a deterministic plan and writes nothing. Use --json for the versioned machine-readable contract.

The package carries the framework source it copies, so project creation needs no network request after npm has installed this package and the resulting project needs no npm install. The project includes the CLI, local HTTP application, Admin, published coding-agent skills, its own tests and smoke check. It starts with zero domain packages composed; the coding agent adds only the business model the user describes.

What the package proves

The release gate installs the packed artifact into an empty npm project, runs this installed bin, and then runs the generated result. A successful release proves:

  • accordo app inspect --json reports a valid composition;
  • accordo project doctor --json passes with no warning;
  • the generated project's tests prove an agent cannot take a human approval decision;
  • its smoke workflow runs end to end;
  • the same checked-in source produces a byte-identical package archive.

Boundaries

The generated application is local-development software, not a hosted CRM:

  • no authentication, tenancy or RBAC;
  • SQLite only;
  • no scheduler or durable outbox;
  • provider implementations are offline fixtures;
  • zero domain packages are composed by default;
  • source is vendored into the project, so upgrading means merging source rather than bumping a dependency version.

The package is not a CDP, an AI CRM that makes runtime decisions, a billing engine or an ERP. Coding agents author deterministic CRM behavior; state changes still pass through services, workflows and explicit human boundaries.

Source, evidence and limitations: https://accordo.dev · https://github.com/khaoss85/agent-crm