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

create-fusion-router

v0.1.4

Published

Create a local Fusion Router evaluation demo.

Downloads

365

Readme

create-fusion-router

Create a local Fusion Router evaluation demo.

Fusion Router is Source-Available Non-Commercial. This is not open source. Commercial, production, hosted-service/SaaS/API, redistribution, sublicensing, integration, derivative commercialization, or competing product/service use requires prior written permission.

Usage

npx --yes create-fusion-router@latest my-fusion-router-demo
cd my-fusion-router-demo
deno --version
deno task smoke
deno task intake

npm package target for this PR: [email protected]. Do not publish this version until the PR is merged, v0.1.4 release/tag handling is approved, and the user personally approves local pre-release workspace dogfood results.

What the generated project supports

deno task smoke is deterministic fixture-only and does not call a provider API.

deno task intake is the first real setup command. It detects local provider wrappers, checks OAuth/session status, runs safe list-only model inventory where possible, writes redacted local health artifacts under out/, and recommends the next command.

deno task check
deno task smoke
deno task intake
deno task auth:status
deno task auth:login
deno task auth:logout
deno task models:list
deno task health

Real provider use is OAuth/session/wrapper-first:

RUN_EXTERNAL_MODEL_DOGFOOD=1 deno task route:once --prompt "Review this README for risky claims."
RUN_EXTERNAL_MODEL_DOGFOOD=1 deno task route:once --prompt "https://github.com/sakamoto-sann/fusion-router review this repo's launch readiness."
# GitHub URL prompts fetch bounded repository context before invoking the selected provider.
# Only use this with repositories you are allowed to send to that provider.
RUN_EXTERNAL_MODEL_DOGFOOD=1 deno task best-route --prompt "Choose the safest launch copy."
RUN_EXTERNAL_MODEL_DOGFOOD=1 RUN_EXPERIMENTAL_AGENT_CHAT=1 deno task agent-chat --prompt "Review this launch plan."

auth:login does not ask for API keys as the primary path. If OAuth/browser login is not wired in the generated scaffold, it fails closed and tells the user to use an installed provider CLI login, then rerun deno task intake.

Private/manual env fallback

Generic env fallback exists only as an explicit private/manual fallback with FUSION_ROUTER_AUTH_MODE=env. It is never used silently, and it is not the preferred public dogfood path.

Do not commit .env, router.config.local.json, .fusion-router/, or out/. Do not paste tokens into chat/logs.

Runtime boundaries

  • Best Route/direct is production-ready best-answer routing.
  • agent_chat is experimental explicit opt-in only.
  • No production autonomous runtime.
  • No service-role runtime.
  • No live Supabase Agent Bus runtime writes.
  • Public Product Hunt/X launch remains blocked until the user personally runs a local pre-release workspace and approves release continuation.

CLI

create-fusion-router <dir>
create-fusion-router <dir> --template basic
create-fusion-router <dir> --force
create-fusion-router --help
create-fusion-router --version

The CLI refuses to overwrite a non-empty directory unless --force is passed.