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

zouroboros-workflow

v2.0.0

Published

Spec-first development tools: interview, evaluation, unstuck, and autoloop

Readme

zouroboros-workflow

Spec-first development tools: interview, evaluation, unstuck, and autoloop

Features

  • Spec-First Interview — Socratic interview process to clarify requirements before building
  • Three-Stage Evaluation — Mechanical → Semantic → Consensus verification pipeline
  • Unstuck Lateral — 5 lateral-thinking personas for breaking through stagnation
  • Autoloop — Autonomous single-metric optimization with git-based improvement tracking

Installation

npm install zouroboros-workflow
# or
pnpm add zouroboros-workflow

CLI Usage

Spec-First Interview

# Score ambiguity of a request
zouroboros-interview score --request "Make the site faster"

# Generate seed specification
zouroboros-interview seed --topic "Build a webhook retry system"

# Interactive interview guide
zouroboros-interview --topic "Your topic here"

Three-Stage Evaluation

# Run full evaluation pipeline
zouroboros-evaluate --seed seed.yaml --artifact ./src/

# Run only mechanical checks
zouroboros-evaluate --seed seed.yaml --artifact ./src/ --stage 1

# Self-test current workspace
zouroboros-evaluate --self-test

Unstuck Lateral

# Auto-select persona based on problem
zouroboros-unstuck --problem "The API keeps returning 403 errors"

# Use specific persona
zouroboros-unstuck --problem "This refactor touches 20 files" --persona architect

# List all personas
zouroboros-unstuck --list

Autoloop

# Validate program configuration
zouroboros-autoloop --program ./program.md --dry-run

# Run optimization loop
zouroboros-autoloop --program ./program.md

# Resume from existing branch
zouroboros-autoloop --program ./program.md --resume

Programmatic API

Spec-First Interview

import { scoreAmbiguity, generateSeedTemplate } from 'zouroboros-workflow';

// Score ambiguity before building
const score = scoreAmbiguity("Build a webhook retry system");
console.log(score.ambiguity); // 0.35 (needs clarification)
console.log(score.assessment); // "NEEDS CLARIFICATION"

// Generate seed after interview
const seed = generateSeedTemplate("Webhook Retry System", "./interview-notes.md");

Three-Stage Evaluation

import { parseSeed, runMechanicalChecks, evaluateSemantic } from 'zouroboros-workflow';

// Parse seed specification
const seed = parseSeed('./seed.yaml');

// Stage 1: Mechanical verification
const checks = runMechanicalChecks('./src/');
// [ { name: 'TypeScript compile', passed: true, detail: 'No errors' }, ... ]

// Stage 2: Semantic evaluation
const result = evaluateSemantic(seed, './src/');
console.log(result.overallScore); // 0.85
console.log(result.decision); // 'APPROVED' | 'NEEDS_WORK'

Unstuck Lateral

import { autoSelectPersona, getStrategy } from 'zouroboros-workflow';

// Auto-select best persona
const selection = autoSelectPersona("I'm stuck on this API error");
console.log(selection.persona); // 'hacker'
console.log(selection.confidence); // 0.85

// Get strategy details
const strategy = getStrategy('hacker');
console.log(strategy.philosophy);
console.log(strategy.approach);

Autoloop

import { parseProgram, initState, shouldContinue, runExperiment } from 'zouroboros-workflow';

// Parse program configuration
const config = parseProgram('./program.md');

// Initialize loop
const state = initState(config, 'autoloop/my-optimization');

// Run loop
while (shouldContinue(state, config).continue) {
  // Propose change via AI executor
  // Apply change to target file
  // Git commit
  
  // Run experiment
  const result = await runExperiment(config, './');
  
  // Decide keep or revert
  if (result.metric !== null) {
    // Update state, commit or revert
  }
}

License

MIT