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

@zhuk/spego

v0.26.1

Published

Agent-first product orchestration: markdown-first artifact engine with SQLite indexing.

Downloads

1,033

Readme

spego

Agent-first product orchestration: markdown-first artifact engine with SQLite indexing.

Quick start

npm install --global @zhuk/spego
spego init --agents claude,opencode --demo false

Commands

| Command | Purpose | |---------|---------| | spego init / status | Initialize a workspace, report its state | | spego create / read / update / delete / list / view | Artifact CRUD with revision control | | spego epics / tasks / sprints / board | Read the delivery mirror | | spego sync / record | Reconcile the mirror; record a measured run | | spego commands / workflows / skills | Inspect metadata, regenerate agent files | | spego index rebuild | Rebuild the SQLite index from files |

Every command takes --cwd <dir> and speaks two output modes: human-readable by default, deterministic JSON under --json. Agents calling spego MUST pass --json.

Full reference: docs/cli.md.

Architecture

  • Markdown files are the source of truth (.spego/artifacts/<type>/<slug>.md)
  • SQLite indexes metadata and revisions for fast lookup
  • Revisions stored as snapshots (.spego/revisions/<type>/<slug>.r<n>.md)
  • Per-type metadata schemas validated on create and update
  • The index is fully rebuildable from markdown files
  • Delivery adapters provide read-only epics and tasks views (default: OpenSpec)

Artifact types

Built-in: prd, epic, okr, retro, sprint-plan, brainstorm, usecases, design, api, architecture, decision, risk, qa, ceremony.

  • epic mirrors an OpenSpec change. Its optional meta supports deps, links, requires, gaps, status, track, tier, flow, and actuals.
  • sprint-plan may include ordered changes; a change belongs to at most one non-closed sprint-plan. Its optional requires and links name supporting artifacts the sprint as a whole needs, resolved like an epic's.

Custom types register through workspace config (extraArtifactTypes).

Configuration

Workspace config lives at .spego/config.yaml:

version: 1
agents:
  - claude
  - opencode
demo: false
extraArtifactTypes: []
deliveryAdapter:
  name: openspec
  options: {}

An optional flows block turns on hour estimates — see docs/estimation.md.

Workflow Skills

Workflow skills guide an agent through a multi-persona process in chat, persisting results as spego artifacts: brainstorm-party, brainstorm-deep, review-adversarial, review-edge-cases, editorial-prose, editorial-structure, elicit, groom, and help. Each one is described in docs/workflows.md.

The recommended authoring loop:

  1. Orientspego-help for workspace state and recommendations.
  2. Ideatespego-brainstorm-party for breadth, or spego-brainstorm-deep for volume.
  3. Capturespego create --type prd (or architecture, design, …) to persist the output.
  4. Refinespego-elicit to improve the draft with structured methods.
  5. Reviewspego-review-adversarial and spego-review-edge-cases for technical coverage, spego-editorial-prose / spego-editorial-structure for communication quality.

Reviewers complement rather than replace each other. spego-review-adversarial is attitude-driven, hunting gaps and weak assumptions; spego-review-edge-cases is method-driven, enumerating unhandled branching paths. spego-editorial-prose and spego-editorial-structure catch the communication defects — ambiguity, confusion, poor organization — that the technical reviewers do not flag. Run at least one technical reviewer and at least one editorial reviewer before declaring an artifact ready.

Documentation

Development

npm run typecheck   # type checking
npm run lint        # eslint
npm test            # run the suite
npm run build       # compile to dist/

Requirements

  • Node.js >= 22.14.0 (for node:sqlite)