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

@dualcondition/scorer

v0.1.0

Published

Dual Condition T1/T2 prompt scorer — Template Specificity and Generative Headroom analysis based on the SNP framework (Schlegel, 2026)

Readme

@dualcondition/scorer

Dual Condition T1/T2 prompt scorer — the core scoring engine for the SNP framework.

Decomposes any prompt into Template Specificity (T1) and Generative Headroom (T2) using four independent signal channels. Runs entirely client-side. Zero API calls. Zero dependencies.

Install

npm install @dualcondition/scorer

Usage

const { score } = require('@dualcondition/scorer');

const result = score(
  "You are a theoretical physicist with a background in continental philosophy. " +
  "Examine the concept of 'negative space' across sculpture, jazz, and gravitational lensing. " +
  "Do not summarize — find the structural invariant."
);

console.log(result.t1);           // 0.72 — Template Specificity
console.log(result.t2);           // 0.81 — Generative Headroom
console.log(result.interaction);  // 0.583 — T1 × T2
console.log(result.zone);         // "Optimal zone"
console.log(result.recommendation);

What It Scores

T1 (Template Specificity): How precisely the prompt activates deep patterns. Composed from three channels:

  • Lexical specificity (35%): Domain vocabulary density across 8 fields
  • Structural constraints (35%): Persona, format, audience, style specifications
  • Meta-cognitive operators (30%): Reasoning directives, depth signals, epistemic constraints

T2 (Generative Headroom): How much creative freedom remains open.

  • Verb classification (mechanical vs. generative)
  • Output predetermination detection
  • Open-ended framing indicators

Zones

| Zone | T1 | T2 | Meaning | |------|----|----|---------| | Deep activation | >0.8 | >0.8 | Multi-layer activation, maximum freedom | | Optimal zone | >0.6 | >0.6 | Both conditions met | | Overconstrained | >0.6 | <0.4 | Specific but no room to generate | | Underspecified | <0.4 | >0.6 | Freedom but no direction | | Dead zone | <0.4 | <0.4 | Neither condition met |

API

score(text: string): DualConditionResult

Returns:

  • t1 — Template Specificity (0–1)
  • t2 — Generative Headroom (0–1)
  • interaction — T1 × T2
  • zone — Classification string
  • signals.t1 — Array of T1 signal descriptions
  • signals.t2 — Array of T2 signal descriptions
  • signals.warnings — Array of warning strings
  • recommendation — Actionable recommendation string
  • channels — Detailed per-channel scores (for debugging)

Architecture

This package is the shared engine across three Dual Condition products:

  • Free web tool (dualcondition.com) — imported directly
  • Enterprise API (api.dualcondition.com) — used as the heuristic tier
  • Agent SDK (@dualcondition/sdk) — local scoring tier

One engine, three products. Changes here propagate everywhere.

Testing

npm test

Runs the five calibration prompts from the launch plan. All must pass before deployment.

License

MIT

Reference

Schlegel, S. (2026). Spontaneous Narrative Projection: A Formal Model. OSF Preprints. https://osf.io/nj4vf