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

@open-code-review/agents

v1.4.0

Published

AI-native skills, commands, and reviewer personas for Open Code Review

Readme

@open-code-review/agents

The skill definitions, reviewer personas, and workflow references that power Open Code Review.

What This Package Contains

agents/
├── skills/ocr/              # The OCR skill
│   ├── SKILL.md             # Tech Lead orchestration logic
│   ├── references/
│   │   ├── workflow.md        # 8-phase review workflow
│   │   ├── session-files.md   # Authoritative file manifest
│   │   ├── session-state.md   # State management
│   │   ├── discourse.md       # Multi-agent debate rules
│   │   ├── final-template.md  # Final review template
│   │   └── reviewers/         # Persona definitions (customizable)
│   │       ├── principal.md # Architecture, design patterns
│   │       ├── quality.md   # Code style, best practices
│   │       ├── security.md  # Auth, data handling, vulnerabilities
│   │       └── testing.md   # Coverage, edge cases
│   └── assets/
│       ├── config.yaml      # Default configuration
│       └── reviewer-template.md
├── commands/                # Slash command definitions
│   ├── review.md
│   ├── doctor.md
│   ├── history.md
│   ├── show.md
│   ├── reviewers.md
│   └── post.md
└── .claude-plugin/          # Claude Code plugin manifest
    └── plugin.json

Installation

Via CLI (Recommended)

The CLI copies these assets to your project's .ocr/ directory:

npx @open-code-review/cli init

To update after a package upgrade:

ocr update

This updates skills and workflow references while preserving your .ocr/config.yaml and all reviewer personas (both default and custom).

Via Claude Code Plugin

/plugin marketplace add spencermarx/open-code-review
/plugin install ocr@aclarify

Skill Architecture

The SKILL.md file defines the Tech Lead role—the orchestrator that:

  1. Discovers project context (config, OpenSpec, reference files)
  2. Analyzes changes and identifies risk areas
  3. Selects and spawns reviewer personas based on your team configuration
  4. Facilitates discourse between reviewers
  5. Synthesizes findings into a unified review

Each reviewer in references/reviewers/ is a specialized persona. You can customize the built-in reviewers or add your own.

Session Structure

OCR uses a round-first architecture for session storage:

.ocr/sessions/{YYYY-MM-DD}-{branch}/
├── state.json              # Workflow state (current_round, phase)
├── discovered-standards.md # Project context (shared across rounds)
├── context.md              # Change analysis (shared)
└── rounds/
    ├── round-1/
    │   ├── reviews/        # Individual reviewer outputs
    │   ├── discourse.md    # Cross-reviewer discussion
    │   └── final.md        # Synthesized review
    └── round-2/            # Created on re-review
        └── ...

Multi-round reviews: Running /ocr-review again on an existing session creates a new round (round-2/, round-3/, etc.) if the previous round is complete. This enables iterative "review → fix → re-review" workflows while preserving history.

See references/session-files.md for the complete file manifest.

Commands

| File | Windsurf | Claude Code / Cursor | |------|----------|----------------------| | review.md | /ocr-review | /ocr:review | | doctor.md | /ocr-doctor | /ocr:doctor | | reviewers.md | /ocr-reviewers | /ocr:reviewers | | history.md | /ocr-history | /ocr:history | | show.md | /ocr-show | /ocr:show | | post.md | /ocr-post | /ocr:post |

Why two formats? Windsurf requires flat command files with a prefix (/ocr-command), while Claude Code and Cursor support subdirectories (/ocr:command). Both invoke the same underlying functionality.

License

Apache-2.0