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

@soleri/domain-code-review

v1.0.0

Published

Code review intelligence domain pack for Soleri agents — hex color detection, architecture boundary warnings, and review patterns.

Readme

@soleri/domain-code-review

Code review intelligence domain pack for Soleri agents — design token enforcement, architecture boundary detection, accessibility auditing, and visual change classification.

What it does

This pack provides the code-review domain with 8 algorithmic ops split across two facades and 2 warning detectors.

Warning Detectors

| Detector | Scans | Purpose | |----------|-------|---------| | HexColorDetector | .ts, .tsx, .js, .jsx, .css, .scss | Flags hardcoded hex colors that bypass the design token system | | ArchitectureBoundaryDetector | .ts, .tsx | Flags cross-feature imports and UI-data layer coupling violations |

Detectors are registered with PackRuntime via onActivate.

Ops

GitHub-sourced (pre-extracted diff data):

| Op | Description | |----|-------------| | review_pr_design | Review PR diff for design token violations (hex colors, arbitrary values, !important, inline styles, missing alt) | | check_architecture | Check import statements for architecture boundary violations | | search_review_context | Search the built-in knowledge base (or vault) for review patterns | | generate_review_summary | Generate a structured summary with severity counts and verdict |

Playwright-sourced (pre-extracted DOM/style data):

| Op | Description | |----|-------------| | validate_page_styles | Validate computed styles against design system scales (font size, spacing, line height, colors) | | accessibility_audit | Audit elements for missing labels, bad contrast, missing roles, tab order issues | | classify_visual_changes | Classify before/after style changes as cosmetic, structural, or behavioral | | validate_component_states | Validate that a component implements all required interaction states (default, hover, focus, disabled, error) |

Install

npm install @soleri/domain-code-review

Requires @soleri/core >= 9.0.0 as a peer dependency.

Usage

Add to your agent.yaml:

packs:
  - name: code-review
    package: "@soleri/domain-code-review"

Development

npm install
npm run build        # tsc
npm test             # vitest run
npm run typecheck    # tsc --noEmit

Publishing

Tag and push to trigger CI:

git tag v<version>
git push origin v<version>

License

Apache-2.0