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

@aligned-team/cospec

v0.5.2

Published

OpenSpec change management, sized to your commit type. feat gets the full treatment; ci takes two minutes.

Readme

@aligned-team/cospec

cospec — conventional openspec: OpenSpec change management, sized to your commit type. feat gets the full treatment; ci takes two minutes.

cospec wraps @fission-ai/openspec 1.5.0 (pinned for dev/CI; any >=1.0.0 <2.0.0 accepted at runtime) and adds typed change schemas (one per conventional-commit type), real validation, a gated apply, a machine-parsed verification evidence ledger with hard archive gates, a verified archive, and blocker sync — plus generated skills/commands for Claude Code, Codex, and OpenCode.

Install

cospec ships as standalone executables (one per platform), so it runs with no JS runtime required and installs cleanly on Node, Deno, or Bun. Publishing soon.

Via mise (no JS runtime needed):

mise use github:aligned-team/cospec
cospec init

The binary is fully self-contained: no JS runtime, no node_modules, no extra install step. It embeds the pinned OpenSpec CLI as a single-file bundle and runs it with its own bun runtime, so every wrapped command (new, validate, apply, archive, …) works out of the box.

mise's github backend applies a default release-age cooldown (minimum_release_age) that hides very recent releases from "latest" resolution. If you're testing a release cut in the last day or so and it doesn't show up, pin the exact version instead: mise use github:aligned-team/[email protected] (a full major.minor.patch, not @0.4) — exact pins bypass the cooldown.

Via a package manager (the launcher execs the prebuilt binary for your platform):

npm  i -D @aligned-team/cospec && npx cospec init
pnpm add -D @aligned-team/cospec && pnpm cospec init
bun  add -d @aligned-team/cospec && bun run cospec init

From a clone of the monorepo (development):

mise install && bun install
mise run cospec -- init

Usage

cospec --help              # list commands
cospec new feat add-widget # create a typed change
cospec validate --all --strict
cospec apply add-widget    # gate on blockers + required artifacts
cospec archive add-widget  # validate, archive, fan out blocker updates
cospec show add-widget     # read a change or spec (text or --json)
cospec store setup platform --path ./platform-store  # create + auto-init a store

Store management (store setup|register|unregister|remove|ls|doctor), cross-repo context (context), and personal worksets (workset) are all first-class cospec commands — you never drop out to bare openspec. See the repository root for full docs.