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

sdd-agent-pack

v1.3.6

Published

Lightweight installer for SDD workflow assets into application repositories

Readme

SDD Agent Pack

Lightweight installer for SDD (Software Driven Development) workflow assets into application repositories. Installs skills, orchestration scripts, hooks, and templates that AI coding agents use to follow the SDD workflow.

Quick Start

Install into your repo:

npx sdd-agent-pack init

Edit the generated .env file with your API key, then run epics:

bash .sdd-agent-pack/scripts/orchestrate.sh

What gets installed

.sdd-agent-pack/          — Core assets
├── skills/               — SDD workflow skills
├── scripts/              — Epic orchestration scripts
├── prompts/              — Workflow prompts
├── hooks/                — Quality enforcement hooks
├── docs/                 — Workflow documentation
├── templates/            — SDD document templates
└── config/               — Agent configuration

.agents/skills/            — OpenHands skill bridge (auto-installed)
.openhands/                — OpenHands hook bridge (auto-installed)

Commands

| Command | Description | |---------|-------------| | init | Install SDD Agent Pack in the current repository | | update | Update installed assets to the latest version | | uninstall | Remove all SDD Agent Pack assets safely | | doctor | Validate installation and environment | | status | Show installation status | | help | Show all commands |

How to Use

LLM-based agents cannot autonomously iterate through a multi-epic tasks.md — they treat it as a single massive objective and get stuck. The orchestration script solves this by feeding epics one at a time.

First, configure your LLM by editing .env (auto-created by init):

LLM_API_KEY=sk-or-paste-your-api-key-here
LLM_MODEL=openrouter/free
LLM_BASE_URL=https://openrouter.ai/api/v1

Then run the orchestration script from your terminal:

bash .sdd-agent-pack/scripts/orchestrate.sh

The script reads tasks.md, finds incomplete epics, and calls openhands --headless for each one sequentially.

If the OpenHands CLI isn't installed yet, install it:

pip install openhands

For OpenHands Cloud users

The Cloud UI doesn't give you direct terminal access. Feed epics one at a time manually in the chat:

"Implement epic EPIC-001 from tasks.md following the SDD workflow."

Let the agent finish, then repeat for the next epic.

Documentation

License

MIT