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

stratvibe

v0.1.0

Published

KISS substrate for LLM agent pipelines. One command. One job. No questions asked.

Readme

stratvibe

KISS substrate for LLM agent pipelines. One command. One job. No questions asked.

This is a vibecoding project. Built fast, iterated with AI, structured for real use.

stratvibe is a project‑agnostic cognitive substrate for LLM agent pipelines.
Structure is stable. Semantics are project‑specific. Process is explicit.

Built on Substrate v0.1 — a formal protocol for human‑AI collaboration with visible information loss and non‑optional human oversight.

🎯 Philosophy

  • Natural language is human‑facing only
    No natural language between agents. Structured JSON handoffs only.

  • Context is designed, not assumed
    Four layers with decreasing token budgets: spec → tasks → snippets → atomic.

  • Human is non‑optional in the pipeline
    Cannot be removed, approximated, or delegated. Breaking changes always return to human.

  • Information loss is visible, never silent
    Summarizer outputs include dropped_fields listing what was omitted.

  • KISS rules
    No interactive prompts. No config files. Flags only when absolutely necessary.
    Output is minimal, scannable. Errors are explicit, not verbose.

🏗️ Layers & Token Budgets

| Layer | Max Tokens | Role | Purpose | |-------|------------|------|---------| | spec/ | 4096 | Planner | Intent to structure | | tasks/ | 2048 | Coordinator | Structure to work units | | snippets/ | 1024 | Implementer | Task to implementation | | atomic/ | 512 | Resolver | Lookup only, no reasoning |

🚀 Quick Start

Installation

npm install -g stratvibe

Initialize a project

cd your-project
stratvibe init

That's it. No prompts, no config, no questions asked.
Like git init, but for substrate pipelines.

What gets created

your-project/
├── .substrate/                 # Core substrate documents
│   ├── taxonomy.md           # Layer definitions, invariant rules
│   ├── schema.json           # Handoff protocol, layer schemas
│   ├── agent-roles.md        # Role responsibilities, cannot rules
│   ├── context-budgets.md    # Token ceilings, compression priority
│   └── substrate-summary.md  # Meta summary, hard constraints
├── spec/                      # Intent & constraints
│   ├── architecture/
│   ├── api/
│   └── components/
├── tasks/                     # Bounded work units
│   ├── sprint1/
│   └── backlog/
├── snippets/                  # Reusable implementations
│   ├── components/
│   ├── hooks/
│   └── utilities/
└── atomic/                    # Lookup only
    ├── errors/
    ├── configs/
    └── env-vars/

📚 Core Concepts

Handoff Protocol

Every agent interaction is a handoff — a JSON object that validates against .substrate/schema.json.
Handoffs flow through layers via summarizer compression.

Agent Roles

  • Planner – Intent to structure (spec layer)
  • Coordinator – Structure to work units (tasks layer)
  • Implementer – Task to implementation (snippets layer)
  • Resolver – Lookup only, no reasoning (atomic layer)
  • Summarizer – Compression between layers
  • Human – Terminal role, non‑optional

Hard Constraints

  1. No natural language between agents
  2. No role reasons outside its layer
  3. Resolver never infers
  4. Summarizer output always smaller than input
  5. Breaking changes always return to Human
  6. Junk drawer folders forbidden
  7. Human cannot be removed from pipeline

🔧 Commands

stratvibe init

Initializes substrate v0.1 in current directory.
Idempotent — skips existing files/directories.

stratvibe init
stratvibe init --help

stratvibe validate

Validates handoff JSON against schema. Auto-discovers handoffs if no file specified.

stratvibe validate handoff.json
stratvibe validate

stratvibe watch

Live-refresh dashboard for sprint status and handoff health.

stratvibe watch

Other commands

  • stratvibe connect — Guide to generate AGENTS.md from plan.md
  • stratvibe ignore — Add .stratvibe/ to .gitignore
  • stratvibe eject — Remove substrate without touching codebase

Planned

  • stratvibe run — Execute agent chain
  • stratvibe sync — Promote workspace outputs to repo
  • Model escalation logic

🧠 Why Substrate?

Most agent frameworks:

  • Assume full autonomy (dangerous)
  • Hide information loss (unreliable)
  • Mix concerns across layers (confusing)
  • Require complex configuration (heavy)

Substrate v0.1:

  • Human‑first – Non‑optional oversight
  • Auditable – Visible information loss
  • Layered – Clear separation of concerns
  • KISS – No config, no prompts, just works

📄 License

MIT

👥 Authors

Created by R & GIaL – 2026


One command. One job. No questions asked.