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

@fulcrum-agent-os/opencode-plugin

v0.0.6

Published

Fulcrum Agent OS — opencode plugin. Injects the canonical Fulcrum-first rider into every LLM turn via experimental.chat.system.transform, with SHA-256 integrity verification and session.idle telemetry for silent-failure detection.

Downloads

209

Readme

@fulcrum-agent-os/opencode-plugin

opencode plugin for the Fulcrum Agent OS — injects the canonical Fulcrum-first system rider into every LLM turn, verifies its integrity, and emits telemetry when the primary injection path silently fails.

Install

// opencode.jsonc
{
  "plugin": ["@fulcrum-agent-os/opencode-plugin"]
}

Bun auto-installs the package at opencode startup; no separate npm install step.

Manual / dogfood install (clone the Fulcrum repo instead):

// opencode.jsonc
{
  "plugin": ["./plugins/fulcrum.ts"]
}

What it does

  • System rider — reads .opencode/rules/fulcrum-rule-*.md (or the canonical agent-integration/rules/ in dogfood mode), concatenates them sorted by filename, and prepends the result inside a <fulcrum-system-rider> fence on every LLM call via experimental.chat.system.transform.
  • Integrity chain — computes SHA-256 of the rider and verifies against a sibling .ridersum file if present. Mismatch logs a warning but never blocks the agent (AD-3 fail-open).
  • Fallback telemetry — if experimental.chat.system.transform fires zero times in a session, the session.idle handler emits an opencode_rider_never_injected graph event so the measurement harness can detect silent primary-path failures.
  • Tool policy bridge — per-tool tool.execute.before + tool.execute.after hooks shell to fulcrum hook auto for secret scanning, CoS team-invoke guards, and post-tool memory writes.
  • Workspace snapshot — appends live get_workspace_status output (active / blocked run counts) after the rider.
  • Shell env — exposes FULCRUM_WORKSPACE_ID / FULCRUM_PROJECT_ID so subprocesses can find the workspace without reading config.

Configuration

| Env var | Default | Effect | |---|---|---| | FULCRUM_NO_RECALL_NUDGE | unset | Set to 1 to suppress the Fulcrum-first stderr nudge while keeping telemetry opt-out events logged. | | FULCRUM_BIAS_VARIANT | auto | auto (default): try passive injection, fall back to nudge. A: nudge-only. B: alias for auto. | | OPENCODE_SESSION_ID | (injected by opencode) | Session identifier passed to every Fulcrum hook invocation. |

License

MIT — see LICENSE.