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

@hyena0x/one-answer

v0.1.1

Published

Turn multiple AI answer paths into one decision-ready answer.

Readme

One Answer

Many answers in. One answer out.

One Answer is a tiny MCP/API primitive for agents that ask multiple models, prompts, or runtimes and need one decision-ready result.

npx --yes --package @hyena0x/one-answer one-answer-mcp

The Problem

Multi-model products are easy to demo and hard to trust.

Users do not want five model transcripts. They want to know:

  • what should I do?
  • what do the answers agree on?
  • where could this still be wrong?

One Answer packages that into one narrow tool.

The Primitive

one_answer(question, preset) -> answer + caveats + confidence

Use it when a product, agent, or workflow needs a final answer instead of a comparison table.

What It Returns

  • final_answer: the answer you can show or act on
  • consensus_points: what the answer paths agree on
  • divergence_points: meaningful disagreement
  • uncertainties: what is still unresolved
  • confidence: level plus reason

Quick Start

npm install @hyena0x/one-answer

Add One Answer to any MCP host that supports stdio servers:

{
  "mcpServers": {
    "one-answer": {
      "command": "npx",
      "args": ["--yes", "--package", "@hyena0x/one-answer", "one-answer-mcp"]
    }
  }
}

Then call:

one_answer

Library Usage

import { runOneAnswer } from "@hyena0x/one-answer";

const result = await runOneAnswer({
  question: "Should this product stay MCP-first?",
  preset: "deep-reasoning",
  goal: "decision",
  audience: "developer",
});

console.log(result.final_answer);

Output Example

{
  "final_answer": "Use the narrow MCP-first path first.",
  "consensus_points": ["The smaller surface is easier to adopt."],
  "divergence_points": ["A thin UI may still help demos later."],
  "uncertainties": ["Real adoption still needs validation."],
  "confidence": {
    "level": "medium",
    "reason": "The answer paths agree on sequence, but usage data is still missing."
  }
}

Local Smoke

Default local runs use a built-in stub, so you can verify the package without calling a model provider.

npm run synthesize -- ./examples/request.decision.json

Where It Fits

  • coding agents deciding between implementation paths
  • research assistants reconciling model opinions
  • product workflows that need a single recommendation
  • internal tools that need confidence without a compare UI

V1 Promise

One public tool:

one_answer

No chat UI. No dashboard. No storage. No product ceremony.

Use a Real Provider

Real OpenAI-compatible runtime setup, MCP host env config, and local demos live in the usage guide.

Docs