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

opencode-feature-workflow

v0.4.1

Published

Feature lifecycle management plugin for OpenCode

Readme

opencode-feature-workflow

Feature lifecycle management plugin for OpenCode. Tracks features from idea to completion with structured workflows, specialized agents, and quality gates.

Install

One command sets everything up:

bunx opencode-feature-workflow setup --project

This does two things:

  1. Adds opencode-feature-workflow to your opencode.json plugin array (OpenCode auto-installs npm plugins at startup)
  2. Copies command files to .opencode/commands/ for slash command access

Restart OpenCode after running setup.

Global install

To install globally (available in all projects):

bunx opencode-feature-workflow setup

Initialize the workflow structure

After installing, run /feature-init in OpenCode to create the docs/features/ directory and initial DASHBOARD.md.

Commands

| Command | Description | |---------|-------------| | /feature-capture | Add a new feature to the backlog | | /feature-plan [id] | Start implementing a feature with planning workflow | | /feature-ship [id] | Complete a feature with quality gates | | /feature-status | Show the feature dashboard | | /feature-init | Initialize the feature workflow structure |

Feature Lifecycle

Features are tracked by file presence in docs/features/[id]/:

| Files Present | Status | |---------------|--------| | idea.md only | Backlog | | idea.md + plan.md | In Progress | | idea.md + plan.md + shipped.md | Completed |

docs/features/
├── DASHBOARD.md              # Auto-generated, read-only
├── my-feature/
│   ├── idea.md               # Problem statement + metadata
│   ├── plan.md               # Implementation plan
│   └── shipped.md            # Completion notes
└── another-feature/
    └── idea.md

How It Works

Capture

/feature-capture asks for the problem statement, auto-generates a name and ID, suggests smart defaults (type, priority, effort, impact), and creates docs/features/[id]/idea.md.

Plan

/feature-plan dispatches specialized agents based on feature type:

  • @project-manager for requirements analysis
  • @api-designer, @frontend-architect, @integration-designer for architecture
  • Creates plan.md with implementation steps

Ship

/feature-ship runs quality gates before marking complete:

  • @security-reviewer for security audit
  • @qa-engineer for QA validation
  • Creates shipped.md on passing

Automatic Behaviors

The plugin automatically:

  • Generates DASHBOARD.md on any feature file change
  • Blocks direct writes to DASHBOARD.md
  • Updates session title when working on features
  • Shows toast notifications for status changes

Agents

| Agent | Purpose | |-------|---------| | @project-manager | Requirements analysis and user stories | | @security-reviewer | Security vulnerability detection | | @qa-engineer | Test coverage and acceptance criteria | | @api-designer | API/GraphQL design | | @frontend-architect | React component architecture | | @integration-designer | Frontend-backend integration | | @system-designer | High-level architecture | | @ux-optimizer | UX optimization | | @code-archaeologist | Reverse-engineer legacy code | | @test-generator | TDD - write tests before implementation | | @documentation-agent | Documentation maintenance | | @runtime-auditor | Runtime auditing |

Plugin Architecture

| Mechanism | How it works | |-----------|-------------| | Tools | Registered in src/index.ts, loaded via opencode.json plugin array | | Skills | SKILL.md files auto-discovered from the npm package | | Commands | Copied to .opencode/commands/ by the setup script | | Hooks | File write detection for dashboard generation and status tracking |

Development

bun install
bun run build
bun test

License

MIT