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

sequant

v1.10.1

Published

Quantize your development workflow - Sequential AI phases with quality gates

Downloads

2,586

Readme

Sequant

Workflow automation for Claude Code.

Solve GitHub issues with structured phases and quality gates — from issue to merge-ready PR.

npm version License: MIT

Quick Start

# In your project directory
npx sequant init
npx sequant doctor   # Verify setup

Then in Claude Code:

/fullsolve 123    # Solve issue #123 end-to-end

Or step-by-step:

/spec 123    # Plan implementation
/exec 123    # Build in isolated worktree
/qa 123      # Review before merge

Prerequisites


How It Works

Sequant adds slash commands to Claude Code that enforce a structured workflow:

┌─────────┐    ┌─────────┐    ┌─────────┐    ┌─────────┐
│  /spec  │───▶│  /exec  │───▶│  /test  │───▶│   /qa   │───▶ Merge
└─────────┘    └─────────┘    └─────────┘    └─────────┘
     │              │              │              │
     ▼              ▼              ▼              ▼
   Plan          Build        Verify (UI)     Review

/test is optional — used for UI features when Chrome DevTools MCP is available.

Quality Gates

Every /qa runs automated checks:

  • AC Adherence — Code verified against acceptance criteria
  • Type Safety — Detects any, as any, missing types
  • Security Scans — OWASP-style vulnerability detection
  • Scope Analysis — Flags changes outside issue scope

When checks fail, /loop automatically fixes and re-runs (up to 3x).


Two Ways to Use

Interactive (Claude Code)

Type commands directly in Claude Code chat:

/fullsolve 123              # Complete pipeline
/spec 123 → /exec → /qa     # Step by step

Headless (CLI)

Run without Claude Code UI:

npx sequant run 123              # Single issue
npx sequant run 1 2 3            # Batch (parallel)
npx sequant run 123 --quality-loop
npx sequant run 123 --base feature/dashboard  # Custom base branch

Commands

Core Workflow

| Command | Purpose | |---------|---------| | /spec | Plan implementation, draft acceptance criteria | | /exec | Implement in isolated git worktree | | /test | Browser-based UI testing (optional) | | /qa | Code review and quality gate |

Automation

| Command | Purpose | |---------|---------| | /fullsolve | Complete pipeline in one command | | /solve | Recommend optimal workflow for issue | | /loop | Fix iteration when checks fail |

Integration

| Command | Purpose | |---------|---------| | /merger | Multi-issue integration and merge | | /testgen | Generate test stubs from spec | | /verify | CLI/script execution verification |

Utilities

| Command | Purpose | |---------|---------| | /assess | Issue triage and status assessment | | /docs | Generate feature documentation | | /clean | Repository cleanup | | /security-review | Deep security analysis | | /reflect | Workflow improvement analysis |


CLI Commands

npx sequant init              # Initialize in project
npx sequant update            # Update skill templates
npx sequant doctor            # Check installation
npx sequant status            # Show version and config
npx sequant run <issues...>   # Execute workflow

See Run Command Options for advanced usage.


Configuration

// .sequant/settings.json
{
  "run": {
    "qualityLoop": false,
    "maxIterations": 3,
    "defaultBase": "feature/dashboard"  // Optional: custom default base branch
  }
}

See Customization Guide for all options.


Platform Support

| Platform | Status | |----------|--------| | macOS | ✅ Full support | | Linux | ✅ Full support | | Windows WSL | ✅ Full support | | Windows Native | ⚠️ CLI only |


Documentation

Stack guides: Next.js · Rust · Python · Go


License

MIT