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

@fiale-plus/pi-rogue

v0.3.28

Published

Public Pi-Rogue package for bundled advisor, orchestration, and context broker logic.

Readme

@fiale-plus/pi-rogue

@fiale-plus/pi-rogue is the single consolidated public artefact for Pi-Rogue.

It stitches together (and bundles for a true single-package install):

  • @fiale-plus/pi-core (shared contracts/helpers)
  • @fiale-plus/pi-rogue-advisor (logic; direct releases paused)
  • @fiale-plus/pi-rogue-context-broker (context-broker runtime; registered by default with an env kill switch)
  • @fiale-plus/pi-rogue-fusion (OpenRouter-style composite model provider shipped in this package)
  • @fiale-plus/pi-rogue-orchestration (logic; direct releases paused)
  • @fiale-plus/pi-rogue-router (observe-only trajectory-router lab; direct releases paused)

Direct installs of advisor/orchestration remain paused (marked private). Fusion ships through this published artefact. See docs/release.md and root AGENTS.md / README.md for the release policy.

Install (recommended)

pi install npm:@fiale-plus/pi-rogue

For local monorepo dev:

# from repo root
npm install
# then use workspace packages as needed (e.g. for testing changes to advisor/orch before a bundle release)

Scope boundaries

  • The context-broker runtime is bundled and registered by default in the bundle.
  • Consumers can import the runtime through the bundle subpath: @fiale-plus/pi-rogue/context-broker.
  • Set PI_CONTEXT_BROKER_ENABLED=false before starting Pi to disable the /pi-rogue-context command surface and prompt-load rewriting.
  • Legacy /context command alias is not registered.
  • Optional durable broker storage can be enabled with PI_CONTEXT_BROKER_DURABLE=true or PI_CONTEXT_BROKER_STORE_DIR=/path/to/store; it defaults to SQLite/FTS and supports PI_CONTEXT_BROKER_BACKEND=jsonl for the legacy JSONL/blob backend.

Command surface

The bundle registers commands in cockpit-first order for the Pi menu:

  1. /pi-rogue — management cockpit (status|help|doctor)
  2. /pi-rogue-advisor — strategic advisor controls and one-shot questions
  3. /pi-rogue-router — route telemetry and explicit model-routing controls
  4. /pi-rogue-fusion — comparable-panel Fusion provider controls
  5. /pi-rogue-orchestration — goal, loop, autoresearch, and lab primitives
  6. /pi-rogue-context — context broker controls, registered last so it sits lower in the menu

Context broker is enabled by default; PI_CONTEXT_BROKER_ENABLED=false disables /pi-rogue-context status, /pi-rogue-context brief, /pi-rogue-context lookup <handle|text>, /pi-rogue-context pin <handle>, /pi-rogue-context export <handle>, /pi-rogue-context config threshold <bytes>, and /pi-rogue-context prune with autocomplete.

Fusion models register as fusion/<recipe-id> when recipes exist. Use /pi-rogue-fusion configure then /pi-rogue-fusion reload explicitly in a session.

Router (offline)

The /pi-rogue-router surface remains offline and repo-local unless you explicitly enable routing behavior:

  • /pi-rogue-router status|help|mode|profile|models|profiles|configure|cycle
  • /pi-rogue-router mode observe (default): recommendations only, no policy mutation
  • /pi-rogue-router mode auto_model: explicit future-model switching only
  • /pi-rogue-router profile <name> and print mismatch_only|all|off

For local artifact generation and sharpening:

  • npm run router:sharpen -- ...
  • npm run router:sharpen:auto -- ...

See packages/router/README.md for full usage, safety policy, schema, and autosharpen location.

Fusion

The /pi-rogue-fusion surface loads OpenRouter-style comparable-panel recipes. It keeps the language explicit:

  • panel: analysis_models answer the same task independently as analysis-only/no-side-effect attempts;
  • judge: structured comparison (consensus, contradictions, partial_coverage, unique_insights, blind_spots);
  • synthesis: final answer from judge analysis plus panel responses.

Pi-agents/subagents and pi-intercom are reserved for a future agent_fusion recipe family (analysis_agents) rather than overloaded into analysis_models.

See packages/fusion/README.md.

Status

  • Published: yes (single artefact)
  • Advisor, orchestration, router, context broker, and Fusion code ship inside bundle releases via bundledDependencies.

Release notes

Only pi-rogue-<semver> tags/releases are produced. See docs/release.md for the full clean policy and checklist.