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

@z3z1ma/open-loom-playbooks

v0.3.0

Published

OpenCode playbook package for optional explicit Loom workflow macros; requires @z3z1ma/open-loom-core.

Readme

Agent Loom Playbooks

Optional explicit workflow macros for Loom.

The required package gives agents the record skills and surfaces. Playbooks are explicit optional workflow lenses that help agents move through those surfaces when the task has a familiar shape: debug this, test this first, map this codebase, verify this UI, review this diff, migrate this safely, prepare this for release.

Install loom-core first. Playbooks assume the using-loom skill is already loaded.

Agent Loom / Protocol / Install / loom-core

What Playbooks Add

A workflow-specific Playbook routes task-shaped work after it is explicitly invoked or after Core routing recommends that lens. A record skill owns a Loom surface and its procedure. Loom records carry durable facts.

A workflow-specific skill gives the agent workflow pressure while results still land in Loom records: reproduction evidence, research, specs, tickets, plans, audit findings, knowledge, or constitution decisions.

When a workflow-specific skill routes results through another Loom skill, follow the target skill's procedure and guidance completely. The route is a required handoff, not a shortcut around the target skill.

Vague work stays in outer-loop shaping until the next Loom surface is clear. A playbook must not turn ambiguity into an implementation shortcut; it should expose the missing scope, system-shape, data-model, state, evidence, and coherence choices. Complex work becomes ticket-ready slices; delegated worker or review work uses ticket-owned Ralph runs.

Use Playbook macros when general Loom routing is too thin for the work and the operator wants that lens. Examples:

  • debugging should preserve the failure before the fix
  • TDD should preserve red and green evidence
  • performance work should measure before changing code
  • UI work should use browser observation when runtime behavior matters
  • migrations should keep rollout, proof, cleanup, and follow-up connected
  • review work should route findings through audit and tickets
  • release work should claim only what tickets and evidence support

The Set

The package currently ships 25 playbooks.

Planning and shaping:

  • loom-idea-refine
  • loom-domain-language-and-decisions
  • loom-codebase-atlas
  • loom-architecture-deepening
  • loom-intake-triage
  • loom-prototype-and-spike

Implementation and verification:

  • loom-incremental-implementation
  • loom-test-driven-development
  • loom-source-driven-development
  • loom-doubt-driven-development
  • loom-frontend-ui-engineering
  • loom-api-and-interface-design
  • loom-browser-testing-with-devtools
  • loom-debugging-and-error-recovery

Coordination and review:

  • loom-git-workspace-isolation
  • loom-parallel-worker-coordination
  • loom-code-review-and-quality
  • loom-review-response
  • loom-branch-finish

Hardening and release:

  • loom-code-simplification
  • loom-security-and-hardening
  • loom-performance-optimization
  • loom-ci-cd-and-automation
  • loom-deprecation-and-migration
  • loom-shipping-and-launch

Playbooks are not the natural-language activation surface. OpenCode and Gemini expose them as explicit commands; Claude, Cursor, and Codex expose them as explicit-only skills where that is the supported harness surface. Do not treat a natural prompt as a reason to auto-load a Playbook.

How They Stay Loom

Playbooks use record skills and their procedures.

  • debugging can create evidence, research, specs, tickets, audit, and knowledge
  • architecture work can create specs, plans, tickets, evidence, and audit
  • review response can update tickets, audit, specs, evidence, research, constitution, or knowledge
  • Git coordination can protect branches and worktrees while tickets keep live execution state
  • shipping can draft communication while tickets and evidence control what can be claimed

The workflow can end. Loom records keep the result.

Install Or Expose Playbooks

Expose loom-core first, then Playbooks:

/absolute/path/to/agent-loom/loom-core
/absolute/path/to/agent-loom/loom-playbooks

Or expose the Core skill tree and the relocated Playbook corpus:

/absolute/path/to/agent-loom/loom-core/skills
/absolute/path/to/agent-loom/loom-playbooks/playbooks

OpenCode can load loom-playbooks.mjs. Git-based installs for Claude Code, Codex, Cursor, and Gemini CLI use the native manifests in this package. The npm package exposes the OpenCode entrypoint and playbooks/ tree. Harness-specific commands live in INSTALL.md.

Boundary

Playbooks are reusable explicit routes for coding agents. They do not add durable surfaces or weaken record-skill procedure.

Use a record skill when the next record move is clear. Add a playbook when the workflow itself needs pressure.