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

@auron-labs/opencode-impeccable

v0.5.0

Published

Self-contained OpenCode port of Impeccable with editing commands, typed workflow tools, and a post-edit design detector.

Readme

@auron-labs/opencode-impeccable

A self-contained OpenCode port of pbakaus/impeccable. It provides the /impeccable menu, 23 implementation commands, typed workflow tools, and automatic design checks after edits.

The plugin vendors a version-locked upstream snapshot. It does not install or invoke a separate impeccable executable, and its hidden primary implementation agent inherits the user's OpenCode permissions instead of forcing read-only access.

Install

opencode plugin @auron-labs/opencode-impeccable [--global]

Add the plugin to OpenCode's configuration if your installation does not do so automatically:

{
  "plugin": ["@auron-labs/opencode-impeccable"]
}

Restart OpenCode after changing plugin configuration.

Requirements

  • OpenCode with plugin support.
  • Node.js 22.18 or newer, matching the locked upstream runtime. The bundled JavaScript is launched directly by the plugin.

No standalone Impeccable CLI installation is required.

Commands

/impeccable opens the context-aware router. The plugin also registers these implementation commands:

/impeccable-craft       /impeccable-shape       /impeccable-init
/impeccable-document    /impeccable-extract     /impeccable-critique
/impeccable-audit       /impeccable-polish      /impeccable-bolder
/impeccable-quieter     /impeccable-distill     /impeccable-harden
/impeccable-onboard     /impeccable-animate     /impeccable-colorize
/impeccable-typeset     /impeccable-layout      /impeccable-delight
/impeccable-overdrive   /impeccable-clarify     /impeccable-adapt
/impeccable-optimize    /impeccable-live

Each command runs through a hidden, capable primary Impeccable agent. Four upstream specialist agents—asset production, finish review, design-system documentation, and live copy-edit application—are also registered as subagents for the playbooks that require independent handoffs. These agents use the permissions already configured by the user; the plugin does not force a read-only policy or inspect global OpenCode configuration to second-guess those permissions.

Native tools

The plugin exposes 29 typed tools so upstream playbooks never need npx impeccable or raw node .../scripts commands. They cover:

  • reference and project context loading;
  • detection, doctor, CSP, and ignore workflows;
  • safe project-local command pinning;
  • hook status, configuration, and suppressions;
  • concept seeds, critique storage, surface briefs, image prompts, and image generation;
  • the complete live-design server, polling, resume, completion, insertion, and wrapping workflow.

Install, update, and version-check tools are intentionally absent. Updating the OpenCode plugin updates its coherent runtime snapshot.

Filesystem-bearing impeccable_* arguments are confined to the active worktree: absolute paths, ../ traversal, and symlink escapes outside it are rejected before any bundled script runs. Detector and critique-storage targets also accept http:/https: URLs where documented. For intentional operations on external paths, use OpenCode's own permission-aware file tools instead.

Post-edit detector

After write, edit, multiedit, patch, or apply_patch, the plugin passes every touched project file to the bundled upstream hook. The full detector pass runs against supported UI targets and appends its feedback directly to the current tool output as a <system-reminder>.

The hook is fail-open: runtime failures never turn a successful edit into a failed edit, and the user receives at most one warning per session until the session becomes idle. Upstream .impeccable/config.json and .impeccable/config.local.json settings—including hook.enabled, quiet mode, and ignore rules—remain authoritative. Use the impeccable_hooks_* and impeccable_ignores tools to manage them.

Options

The plugin normally needs no options. A custom Node executable can be supplied when necessary:

{
  "plugin": [
    ["@auron-labs/opencode-impeccable", {
      "nodePath": "/absolute/path/to/node"
    }]
  ]
}

IMPECCABLE_NODE is also honored when nodePath is not set.

Upstream snapshot

upstream-lock.json records the exact Impeccable commit and skill version used by the package. The snapshot includes the upstream skill source, references, runtime scripts, CLI engine modules, and Apache license under references/ and vendor/impeccable/.

From this package directory:

bun run sync        # update all managed files and the lock to upstream main
bun run sync:check  # compare all managed files with the immutable locked commit

Sync refuses truncated GitHub trees, downloads the snapshot as one coherent unit, and removes stale managed files.

License

The plugin source is MIT licensed. Vendored Impeccable files retain the upstream Apache License 2.0 in vendor/impeccable/LICENSE.