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

@jimzandueta/oowl

v2.0.1

Published

OpenCode Opinionated Workflow Layer — install and manage the OOWL multi-agent framework

Readme


Install

Requires OpenCode and Node.js 18+.

npx @jimzandueta/oowl install

The installer defaults to the low profile and walks you through model profile selection, then writes the framework files into your project.

Quick start

Open OpenCode in the project and tell dispatcher what to build:

You: "Add a login page with email/password and Google OAuth."

Dispatcher → Architect writes design.md   [you approve]
           → Planner writes implementation.md → plan-reviewer
           → [you approve the plan]
           → Builder schedules → agents implement with file locks
           → Reviewer writes review.md
           → [optional merge → done]

23 agents across 6 classes: orchestrators, artifact owners, implementers, reviewers, escalation, and bounded workers. Every substantial feature produces a docs/specs/<feature>/ directory with the design, plan, and review owned by their respective agents.

Why oowl

One agent designs, codes, and reviews in a single session. It edits files it shouldn't, makes changes you didn't approve, loses context when you scroll away, and never runs a security check unless you specifically ask. You get output fast, but you don't know what's safe without reading every diff.

oowl decomposes the work:

| Without oowl | With oowl | |---|---| | One agent touches anything | Each task has locked file boundaries | | Design vanishes when chat ends | Design, plan, review persist in docs/specs/ | | "Looks done" is the only check | Agents run verification before reporting complete | | Same model does everything | Profiles assign cheap / mid / premium by role | | Security if you remember | Sensitive areas auto-escalate | | Review if you ask | Every feature ships with a written review |

How it works

your request → dispatcher
  trivial?  → one implementer → done
  substantial?
    → optional Git feature branch
    → architect writes design.md       [you approve]
    → planner writes implementation.md [plan-reviewer validates]
    → [you approve]
    → builder schedules implementation waves
    → agents implement with file locks and verification
    → reviewer writes review.md
    → optional branch merge → done

Artifacts are the durable record of every feature. They live under docs/specs/<feature>/:

docs/specs/login-page/
├── design.md           # architect: approach, tradeoffs, risks
├── ui-spec.md          # designer: layout, interactions (if UI involved)
├── implementation.md   # planner: task breakdown, file locks, verification
└── review.md           # reviewer: what shipped, test results, risks

These are owned by specific agents. Non-owners can read them but cannot edit, delete, or overwrite them.

Tiers map agents to three model cost levels:

| Tier | Handles | Agents | |---|---|---| | Cheap | Routing, scheduling, bounded work | dispatcher, builder, low-* | | Mid | Design, implementation, review | architect, planner, specialists | | Premium | Escalations, deep security | high-*, security-auditor |

Switch between bundled profiles (low default, balanced, high, free) or build a custom one from your connected models with oowl profile. The free profile uses free OpenCode models; free-data will be used in training, so do not use it for private, proprietary, regulated, customer, or confidential data.

Commands

| Command | What it does | |---|---| | oowl install | Install the framework (interactive walkthrough) | | oowl init | Configure Optional skills per project | | oowl profile | Switch model profiles interactively | | oowl profile <name> | Switch directly: free, low, balanced, high, custom | | oowl update | Update framework files with conflict detection | | oowl --version | Print version |

Documentation

Workflow, agent reference, install options, model profiles, customization, common issues, and contributing guide → https://jimzandueta.github.io/oowl/docs/.

License

MIT. See LICENSE.