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

@speqtra/cli

v0.4.1

Published

Speqtra CLI — sync tasks to your coding agent

Readme

@speqtra/cli

Ship structured specs into Claude Code, Cursor, Codex, and Copilot. One command.

Speqtra is the spec layer between your planning and your coding agent. The CLI delivers structured specs into Claude Code, Cursor, Codex, and Copilot.

$ speqtra take SPQ-5
✓ Took SPQ-5: Add order status tab to dashboard
  Spec written to .speqtra/active-task.md
  Injected into: CLAUDE.md, .cursor/rules/speqtra-task.mdc, AGENTS.md, .github/copilot-instructions.md
  Synced to server.

Your coding agent (Claude Code, Cursor, Copilot, Codex) instantly sees the full spec, acceptance criteria, and context. No copy-paste. No context switching.

Install

Requires Node >= 22.13.

Option A — Let your coding agent install it (recommended)

Paste this into Claude Code, Codex, Cursor, or any agent CLI:

Install the Speqtra CLI for me. Do exactly this, nothing more:

1. Install globally with whichever package manager I have:
     npm install -g @speqtra/cli
   (or `pnpm add -g`, `bun add -g`, `yarn global add`)

2. Verify the install printed a version:
     sp --version

3. Stop. Tell me it is installed and that I should run `sp login` next.
   Do not run login, init, index, or any other Speqtra command myself.

Option B — Manual

npm install -g @speqtra/cli

Quick Start (local, no account needed)

speqtra init --local "My Project"   # Create a local project
speqtra create "Add user auth"      # Create a task
speqtra take MYPR-1                 # Take it — agent sees it
# ... work with your coding agent ...
speqtra drop                        # Done, clean up

Quick Start (with Speqtra account)

Team sync coming soon.

speqtra login           # Authenticate
speqtra init            # Link repo to your project
speqtra sync            # Pull tasks from server
speqtra take SPQ-5      # Take a task — agent sees it
# ... work with your coding agent ...
speqtra drop            # Done, clean up
speqtra sync            # Push changes

Commands

| Command | Alias | Description | |---------|-------|-------------| | speqtra take <id> | | Take a task, inject spec into agent configs | | speqtra drop [id] | | Mark done, clean up agent configs | | speqtra index | | Scan repo for codebase context | | speqtra sync | | Pull/push task changes | | speqtra list | ls | List your tasks | | speqtra show <id> | | Show task details | | speqtra start <id> | | Mark as in progress | | speqtra close <id> | done | Mark as done | | speqtra claim <id> | | Assign to me + start | | speqtra create <summary> | c | Create a task | | speqtra update <id> | u | Update a task | | speqtra delete <id> | rm | Delete a task | | speqtra comment <id> <text> | msg | Add a comment |

Agent Support

Auto-detects and injects task context into:

  • Claude Code: CLAUDE.md
  • Cursor: .cursor/rules/speqtra-task.mdc
  • Codex: AGENTS.md
  • GitHub Copilot: .github/copilot-instructions.md

Offline-First

All data stored locally in SQLite. Create, update, and manage tasks offline. speqtra sync when ready.

JSON Output

Every command supports --json for scripting:

speqtra list --json | jq '.[].summary'

Shorthand

sp take SPQ-5
sp ls
sp drop

License

MIT