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

@kompassdev/opencode

v0.13.2

Published

OpenCode plugin for navigating repos with fewer wrong turns

Readme

Kompass is under active development, so workflows, package APIs, and adapter support may keep evolving as the toolkit expands.

Kompass keeps AI coding agents on course with token-efficient, composable workflows.

Docs

  • Main docs: https://kompassdev.ai/docs/
  • Getting started: https://kompassdev.ai/docs/getting-started/
  • OpenCode adapter: https://kompassdev.ai/docs/adapters/opencode/
  • Config reference: https://kompassdev.ai/docs/config/overview/
  • Command, agent, tool, and component reference: https://kompassdev.ai/docs/reference/commands/, https://kompassdev.ai/docs/reference/agents/, https://kompassdev.ai/docs/reference/tools/, https://kompassdev.ai/docs/reference/components/

Bundled Surface

  • Commands cover direct work (/ask, /commit, /merge, /skill/create, /skill/optimize), orchestration (/dev, /ship, /todo), ticket planning/sync, and PR review/shipping flows.
  • Agents are intentionally narrow: worker is generic, planner is no-edit planning, navigator owns multi-step orchestration, and reviewer is a no-edit review specialist.
  • Structured tools keep workflows grounded in repo and GitHub state: changes_load, command_expansion (resolve a slash command and return the expanded prompt for immediate delegation), pr_load, pr_sync, ticket_load, ticket_sync.
  • Reusable command-template components live in packages/core/components/ and are documented in the components reference.

Prerequisites

  • GitHub CLI (gh) must be installed and authenticated. Kompass uses gh for all GitHub operations (PRs, issues, reviews). Install from cli.github.com and run gh auth login.

Installation

For OpenCode, add the adapter package to your config:

{
  "plugin": ["@kompassdev/opencode"]
}

Project config is optional. To start from the published base config:

curl -fsSL https://raw.githubusercontent.com/kompassdev/kompass/main/kompass.jsonc -o .opencode/kompass.jsonc

Kompass loads the bundled base config, then optional home-directory overrides, then optional project overrides. In each location it uses the first file that exists from:

  • .opencode/kompass.jsonc
  • .opencode/kompass.json
  • kompass.jsonc
  • kompass.json

The recommended project override path is .opencode/kompass.jsonc.

Workspace

This repository is the Kompass development workspace.

  • packages/core: shared workflows, prompts, components, config loading, and tool definitions
  • packages/opencode: the OpenCode adapter package, published as @kompassdev/opencode
  • packages/web: docs site and web content
  • packages/opencode/.opencode/: generated OpenCode output for review

When changing Kompass itself, keep runtime definitions, bundled config, schema, docs, and generated output in sync in the same change.