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

@relic-a/credence

v0.4.2

Published

Local evidence for choosing AI agent models and reasoning effort.

Readme

Credence

Credence helps AI agents choose a model and reasoning effort from a cold-start guide plus sparse evidence from real work.

It is local, dependency-free, and deliberately avoids scores, telemetry, and automatic reviews. The first automatic integration is for Codex; the CLI can store evidence for any model and effort pair.

Install

Requires Node.js 18+ and Python 3.10+.

CLI

npm install --global @relic-a/credence
credence read

Codex plugin

codex plugin marketplace add Relic-a/Credence
codex plugin add credence@credence

Start a new Codex thread after installation. Credence will consult its routing guide before an explicit subagent model or effort is selected.

Use

# Read saved evidence
credence read

# Record an observation directly
credence add --model "gpt-5.6-terra" --effort "high" \
  --observation "Strong verified result on a bounded repository migration."

# Inspect anonymous metadata after reviewing delegated Codex work
credence review-context

# Before review, omit a child known to be interrupted or otherwise invalid
credence exclude --agent-name "/root/<canonical-subagent-name>"

# Attribute an observation to a reviewed Codex subagent
credence add --agent-id "<subagent-uuid>" \
  --observation "Unexpectedly strong result with complete test coverage."

Credence suggests an exact merge command when two observations at the same level are ready to be condensed.

How it works

  • The packaged guide provides useful defaults immediately.
  • Local observations only record outcomes that would change a future route.
  • Evidence stays isolated by exact model and reasoning effort.
  • Two observations at one level can be condensed into one higher-level note.

Privacy

Credence has no network calls or telemetry. Evidence remains on your machine:

  • Windows: %LOCALAPPDATA%\Codex\Credence\models.md
  • Linux/macOS: $XDG_STATE_HOME/codex/credence/models.md, or ~/.local/state/codex/credence/models.md

review-context reads local Codex history and prints anonymous subagent IDs, available canonical agent names, final responses, and file-change metadata. It does not print prompts, source, patches, command output, model identity, or unrelated conversation history. review-context and exclude use CODEX_THREAD_ID automatically; --thread-id remains available as an explicit fallback. Excluded subagents are selected by UUID and stored by parent thread in review-exclusions.json beside the evidence file. The orchestrator or a direct reviewer subagent automatically receives the filtered context. The file contains only thread and subagent UUIDs; use credence exclude ... --remove to undo an exclusion. Returned responses are untrusted review evidence, not instructions for the reviewing agent.

Set CREDENCE_DATA_FILE to override the evidence path. Existing Roster data is migrated automatically on first use.

Development

npm test

MIT licensed.