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

@myaider/easyspec

v0.1.8

Published

Shareable easyspec prompts, custom agent definitions, and skills with an init CLI for copilot, opencode, claude-code, and other agentic coding tools.

Readme

easyspec — Spec-Driven Development Kit for AI Coding Agents

npm version License Node.js Downloads

One init command. A team of AI agents. Your entire software lifecycle — managed by specs, not chaos.

Supports GitHub Copilot, OpenCode, and Claude Code.

Built on the ideas of OpenSpec — the spec-driven development framework. Our spec format, agent delegation model, and change lifecycle are derived from OpenSpec's concepts. Thanks to the OpenSpec team.

Showcase

Parthenon — a self-hosted enterprise AI harness — was built with easyspec, feature by feature, through the propose → apply → update-master pipeline.

Parthenon feature demo

The same spec-driven pipeline that keeps the code clean also keeps the UI consistent. Each screen below was prototyped by the UX agent for a different feature, yet every one shares the same design language:

Parthenon UI consistency

Install

Recommended — install globally:

npm install -g @myaider/easyspec

Try without installing:

npx @myaider/easyspec init

Usage

Init

easyspec init

Run interactively, the CLI asks two questions:

  1. Harness(es) — which coding agent(s) to install for (multi-select: Copilot, OpenCode, Claude Code).
  2. Scope — install into the current project, or globally into your user profile.

You can skip the prompts with flags:

| Option | Values | Default | Description | |--------|--------|---------|-------------| | --agent | copilot, opencode, claude-code (comma-separated for multiple) | interactive | Target coding agent(s) | | --scope | project, global | interactive | Install scope | | --workspace | <path> | cwd | Project folder for --scope project | | --force | — | false | Overwrite existing files | | --dry-run | — | false | Preview without writing | | --tech-model | <name> | auto | Model for technical agents | | --non-tech-model | <name> | auto | Model for non-technical agents | | --model-preset | balanced, speed, quality | — | Apply a preset model pair |

Models default to auto — no need to pick one.

Destination mapping

Project scope (--scope project):

| Agent | Commands/Prompts | Agents | Skills | |-------|------------------|--------|--------| | copilot | <ws>/.github/prompts/*.prompt.md | <ws>/.github/agents/*.md | <ws>/.github/skills/<name>/SKILL.md | | opencode | <ws>/.opencode/commands/*.md | <ws>/.opencode/agents/*.md | <ws>/.opencode/skills/<name>/SKILL.md | | claude-code | <ws>/.claude/commands/*.md | <ws>/.claude/agents/*.md | <ws>/.claude/skills/<name>/SKILL.md |

Global scope (--scope global): installed under your user profile instead of <ws>/.

| Agent | Commands/Prompts | Agents | Skills | |-------|------------------|--------|--------| | copilot | ~/Library/Application Support/Code/User/prompts/ (macOS) or %APPDATA%\Code\User\prompts\ (Windows) | ~/.copilot/agents/ | ~/.copilot/skills/ | | opencode | ~/.config/opencode/commands/ | ~/.config/opencode/agents/ | ~/.config/opencode/skills/ | | claude-code | ~/.claude/commands/ | ~/.claude/agents/ | ~/.claude/skills/ |

Examples

# Interactive — multi-select harness(es) and scope
easyspec init

# Copilot in the current project
easyspec init --agent copilot --scope project

# Copilot and Claude Code in one run
easyspec init --agent copilot,claude-code --scope project

# OpenCode globally
easyspec init --agent opencode --scope global

# Claude Code with a model preset
easyspec init --agent claude-code --scope project --model-preset balanced

# Preview without writing
easyspec init --agent opencode --dry-run

What is installed

Commands: es-change-init, es-change-propose, es-change-apply, es-change-refinement, es-change-fix, es-master-review, es-change-update-master, es-quick-fix

Agents: es-product-owner, es-ux-specialist, es-architect, es-database-designer, es-developer, es-tester, es-document-reviewer

Skill: es-change-lifecycle

Acknowledgements

This project builds on OpenSpec — a spec-driven development framework. The spec format, agent delegation model, and change lifecycle are derived from OpenSpec's concepts. Thanks to the OpenSpec team for the foundational ideas.

License

MIT