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.18.0

Published

Quantize your development workflow - Sequential AI phases with quality gates

Readme

Sequant

Workflow automation for Claude Code.

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

sequant.io — docs, guides, and getting started.

npm version License: MIT

Quick Start

Install

# In your project directory
npm install sequant
npx sequant init     # Install skills to your project
npx sequant doctor   # Verify setup

To update:

npm update sequant

Start Using

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

Required:

For npm installation:

  • Node.js 18+

Optional MCP servers (enhanced features):

  • chrome-devtools — enables /test for browser-based UI testing
  • sequential-thinking — enhanced reasoning for complex decisions
  • context7 — library documentation lookup

Note: Sequant is optimized for Node.js/TypeScript projects. The worktree workflow works with any git repository.


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.

Worktree Isolation

Sequant uses Git worktrees to isolate each issue's work:

your-project/           # Main repo (stays on main branch)
../worktrees/
  feature/
    123-add-login/     # Issue #123 worktree (feature branch)
    456-fix-bug/       # Issue #456 worktree (feature branch)

Why worktrees?

  • Work on multiple issues simultaneously
  • Never pollute your main branch
  • Each issue has its own dependencies and build
  • Safe to discard failed experiments

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
  • Semgrep Static Analysis — Stack-aware rulesets, custom rules via .sequant/semgrep-rules.yaml
  • Scope Analysis — Flags changes outside issue scope
  • Execution Evidence — Scripts/CLI must pass smoke tests
  • Test Quality — Validates test coverage and mock hygiene
  • Anti-Pattern Detection — Catches N+1 queries, empty catch blocks, stale dependencies

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
npx sequant merge --check        # Verify batch before merging

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 merge coordination | | /testgen | Generate test stubs from spec | | /verify | CLI/script execution verification | | /setup | Initialize Sequant in a project |

Utilities

| Command | Purpose | |---------|---------| | /assess | Issue triage and status assessment | | /docs | Generate feature documentation | | /clean | Repository cleanup | | /improve | Codebase analysis and improvement discovery | | /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
npx sequant merge <issues...> # Batch integration QA before merging
npx sequant state <cmd>       # Manage workflow state (init/rebuild/clean)
npx sequant stats             # View local workflow analytics
npx sequant dashboard         # Launch real-time workflow dashboard

See Run Command Options, Merge Command, State Command, and Analytics for details.


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


Feedback & Contributing

Reporting Issues

Using /improve for Feedback

Run /improve in Claude Code to analyze your codebase and create structured issues:

/improve              # Analyze entire codebase
/improve security     # Focus on security concerns
/improve tests        # Find test coverage gaps

The skill will present findings and offer to create GitHub issues automatically.

Contributing

See CONTRIBUTING.md for development setup and guidelines.

Telemetry

Sequant does not collect any usage telemetry. See docs/reference/telemetry.md for details.


License

MIT