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

@hyperdag/trustshell

v0.6.1

Published

Drop-in HAL (Hallucination Assessment Layer) constitutional protection for any agent

Readme

@hyperdag/trustshell

Constitutional protection for any AI agent.
Drop in. No rearchitecting.

npm Standard: ERC-8004 Protocol: HyperDAG License: Apache 2.0


The discovery

The beauty and symmetry found in recurring patterns appear across science, nature, mathematics, and music. We believe we have found an essential key in the relationship between the Circle of Fifths and what music theory calls the Pythagorean Comma — the irreconcilable gap of 531441/524288 that emerges when you stack twelve perfect fifths against seven octaves.

This gap does not resolve. It accumulates.

We discovered that this same accumulation property, when applied as a dissonance threshold, reliably detects when an AI system's internal signals are drifting from coherent truth. The Pythagorean Comma Veto is our first production application of this pattern. AI has amplified our ability to explore and stress-test these relationships at scale. We make our findings open and usable here.


What's new in v0.2

  • 5-signal HAL extractor wired end-to-end (harm, epistemic uncertainty, evidence quality, scope, certainty). v0.1 had only certainty; v0.2 has 5 independent degrees of freedom.
  • Optional 6th signal: cross-LLM agreement. If you supply the prompt alongside the answer, trustshell triggers a Layer-0 prompt classifier and (for factual / time-sensitive prompts) a Layer-1 cross-LLM agreement check. This catches subtly-false confident statements the keyword extractor misses.
  • Local HAL pre-check removed. v0.1 ran a stripped-down veto locally before round-tripping. v0.2 makes a single network call to the canonical HAL pipeline at repid-engine — same shape in, richer signals out.

How it works

Agent Decision (text + certainty, optional prompt)
      │
      ▼
┌─────────────────────────────────────────────┐
│   HAL Pipeline (repid-engine)               │
│                                             │
│   5-signal extractor:                       │
│     harm_probability                        │
│     epistemic_uncertainty                   │
│     evidence_quality                        │
│     scope_appropriateness                   │
│     certainty_at_claim                      │
│                                             │
│   + optional Phase 1.5 cross-LLM agreement  │
│     (when prompt supplied + factual/        │
│     time-sensitive)                         │
│                                             │
│   Combiner (5-DOF):                         │
│     0.4·harm + 0.3·epistemic                │
│     + 0.2·(1−evidence) + 0.1·(1−scope)      │
│     × 531441/524288                         │
│                                             │
│   Combiner (6-DOF when agreement present):  │
│     0.35·harm + 0.25·epistemic              │
│     + 0.15·(1−evidence) + 0.05·(1−scope)    │
│     + 0.20·(1−agreement)                    │
│     × 531441/524288                         │
│                                             │
│   dissonance ≤ hal_veto_threshold  → APPROVE│
│   dissonance > hal_block_threshold → BLOCK  │
│   in between                       → HITL   │
└─────────────────────────────────────────────┘
      │
   ┌──┴──┐
   │     │
VETO   APPROVE
   │     │
   ▼     ▼
-RepID  +RepID
   │     │
   └──┬──┘
      │
      ▼
HAL Training Case (on caught hallucination)
      │
      ▼
Wisdom Score Update
      │
      ▼
VDR +1 (permanent, never decays)

Thresholds

The HAL pipeline uses two runtime-configurable thresholds, read per-request from the engine's repid_config table:

  • hal_veto_threshold — boundary between APPROVE and HITL
  • hal_block_threshold — boundary between HITL and BLOCK (constitutional block)

Defaults can be retuned by operators against live traffic without a redeploy. See trustrepid.dev for live production values and outcome rates.

Note on 0.0195: earlier versions of this README quoted a threshold of 0.0195. That number is the TrustTrader BFT veto threshold — a separate constant used by the trading-specific veto path, not by the general HAL pipeline this package routes through. Both derive from the same Pythagorean Comma constant ((531441/524288) − 1 ≈ 0.013643), but they live at different layers and apply to different decision classes.

The Pythagorean Comma constant 531441/524288 is the multiplicative trailing factor in both combiners — the dissonance amplifier that gives the system its "small unresolvable gap accumulates" property.

Production status

Live counts, refusal rates, and per-agent activity move every day. Rather than embed a snapshot here, see:


Install

npm install @hyperdag/trustshell

Quick start

import { TrustShell } from '@hyperdag/trustshell';

// Register your agent at repid.dev/start
const shell = new TrustShell({
  agentId: 'your-agent-id',
  apiKey: 'your-api-key',
  llmProvider: 'anthropic',
  profile: 'balanced'   // conservative | balanced | pro
});

// Score a decision — sends to repid-engine HAL pipeline
// (single network call; returns the engine's verdict)
const result = await shell.evaluate(
  'Execute trade: buy 0.1 BTC at market',
  0.87  // certainty 0-1
);
// {
//   approved: true,
//   hal_score: 0.08,
//   repid_delta: +3,
//   new_score: 1003,
//   tier: 'EARNING_AUTONOMY',
//   vdr_count: 1,
//   vesting_active: true
// }

// Report a hallucination catch
// When your agent catches its LLM being wrong:
await shell.report({
  text: 'The capital of Australia is Sydney',
  certainty: 0.95,
  hallucinationCaught: true
  // Agent +RepID, LLM -trust score,
  // HAL gets a permanent training case
});

// Listen for BYOK trust warnings
shell.on('byok-warning', ({ provider, trust_score }) => {
  console.log(`${provider} trust: ${trust_score}%`);
});

X402 Client SDK (V1 Production-Grade)

The @hyperdag/trustshell package contains a client-side SDK for consuming services that require x402 payment attestation. This SDK intercepts HTTP requests and handles the challenge-response flow automatically.

Usage Example (Fetch Interceptor)

import { X402Client } from '@hyperdag/trustshell';

const client = new X402Client({
  walletPrivateKey: '0x...', // Agent's private key
  rpcUrl: 'https://...'      // RPC provider URL
});

// Perform an auto-paying fetch
const response = await client.fetch('https://api.example.com/protected-resource');
const data = await response.json();

Usage Example (Escrow Helper)

Alternatively, you can use the top-level helpers or instance methods on TrustShell to pay for and escrow service contracts directly:

import { TrustShell } from '@hyperdag/trustshell';

const shell = new TrustShell({
  agentId: 'your-agent-id',
  apiKey: 'your-api-key'
});

// Performs the 402 challenge-handshake, signs the payload,
// and submits the settled escrow back to the engine
const result = await shell.payAndEscrow(contractId, privateKey);

Link to Server-side RepID Engine

For setting up the server-side counterpart that issues the x402 challenges and validates attestation transactions, see repid-engine.

ERC-8004 Read Helpers (On-Chain Queries)

The @hyperdag/trustshell package provides read-side helpers to query agent reputation, look up attestation history, and retrieve specific feedback details directly from the ReputationRegistry contract on Base Sepolia.

Querying Agent Reputation Summary

Query the overall reputation summary (attestation count, mode average score, and decimals) for an agent:

import { TrustShell } from '@hyperdag/trustshell';

const shell = new TrustShell({
  agentId: 'your-agent-id',
  apiKey: 'your-api-key'
});

// Queries the live ReputationRegistry contract for agent 5863 (trinity-shofet)
const summary = await shell.getRepID(5863);
console.log(`Score: ${summary.value}, Decimal Precision: ${summary.decimals}, Attestations: ${summary.count}`);

Retrieving Reputation Attestation History

Fetch the recent attestations for a target agent directly from the ReputationRegistry contract:

const history = await shell.getReputationHistory(5863, {
  includeRevoked: false,
  limit: 10
});

for (const attestation of history) {
  console.log(`From Client: ${attestation.clientAddress}`);
  console.log(`Feedback Score: ${attestation.value}`);
  console.log(`Tags: ${attestation.tag1}, ${attestation.tag2}`);
}

Looking Up Attestation by Transaction Hash

Look up and decode the detailed attestation data for a specific transaction hash:

const txHash = '0xe372d84d5d4e79e5b92f495647efa836d55d238ddd2c0e034f347d643721231f';
const attestation = await shell.getAttestation(txHash);

console.log(`Agent ID: ${attestation.agentId}`);
console.log(`Attested Score: ${attestation.value}`);
console.log(`Metadata URI: ${attestation.feedbackURI}`);

Command Line Interface (CLI)

TrustShell ships with a built-in terminal companion allowing developers to invoke verification and payment APIs directly:

# Install globally
npm install -g @hyperdag/trustshell

# Initialize in project root
trustshell init

# Verify a claim with the HAL fact checker
export REPID_API_KEY="your-api-key"
trustshell verify "The transaction is fully settled."

# Query reputation details
trustshell whois 5863

# Inspect on-chain attestation
trustshell attestation 0xe372d84d5d4e79e5b92f495647efa836d55d238ddd2c0e034f347d643721231f

# Execute x402 payment escrow construction
export TRUSTSHELL_KEY="0x_private_key"
trustshell pay contract-7762

For more options, examples, and detailed output descriptions, check out the CLI Walkthrough.

The RepID stack

TrustShell connects to three layers:

ERC-8004 Identity Registry     ← who is the agent?
         │
         ▼
    RepID Score                ← has it earned trust?
    (this package)
         │
         ▼
   x402 Payments               ← autonomous action

RepID is the missing middle layer — the behavioral credential that makes the agent economy accountable.

Architecture

  • Single network call to the canonical HAL pipeline — no local-only verdict path; the engine is the source of truth
  • 5-signal extractor — harm, epistemic uncertainty, evidence quality, scope, certainty (5 independent degrees of freedom)
  • Optional Phase 1.5 cross-LLM 6th signal — for factual / time-sensitive prompts, two providers are queried and their agreement contributes a 6th signal to the combiner
  • Pythagorean Comma constant — 531441/524288, the multiplicative trailing factor in both 5-DOF and 6-DOF combiners
  • Runtime-tunable thresholdshal_veto_threshold and hal_block_threshold live in the engine's config table; can be retuned without a redeploy
  • Plonky3 STARK proofs — quantum-resistant tier attestation (BabyBear field, Poseidon2 hash)
  • ERC-8004 compatible — portable identity
  • Vesting cliff — first 500 RepID vests over 30 days, preventing gaming

Get credentials

Register your agent in 60 seconds: repid.dev/start

Live leaderboard

See 28+ scored agents: trustrepid.dev

LLM trust scores

Which LLMs earn constitutional trust: trustrepid.dev/llm-trust

License

Apache 2.0 — see LICENSE.

Patent rights, if any, are granted under the Apache 2.0 patent grant clause. Commercial use of the Pythagorean Comma Veto methodology in closed-source systems requires written permission from DealApp Inc.

Built on HyperDAG Protocol. ERC-8004 compatible. Micah 6:8.