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

@coopah/bentley-langfuse

v0.3.0

Published

LangFuse observability integration via OpenTelemetry

Readme

@coopah/bentley-langfuse

LangFuse observability integration for Bentley, built on OpenTelemetry. Traces agent invocations, scores runs, manages prompt versions, and runs evaluation experiments.

Uses @langfuse/otel + @langfuse/client (the modern OTel-based API), not the deprecated v3 Langfuse class.

Install

pnpm add @coopah/bentley-langfuse

Dependencies

  • @coopah/bentley-core
  • @langfuse/client ^4.6.1
  • @langfuse/otel ^4.6.1
  • @opentelemetry/api ^1.9.0
  • @opentelemetry/sdk-node ^0.213.0

Usage

import { initBentleyTracing, shutdownBentleyTracing } from "@coopah/bentley-langfuse";

// Initialize before creating your Bentley instance
initBentleyTracing({
  publicKey: process.env.LANGFUSE_PUBLIC_KEY!,
  secretKey: process.env.LANGFUSE_SECRET_KEY!,
  baseUrl: process.env.LANGFUSE_BASE_URL, // optional, defaults to LangFuse cloud
});

// ... use bentley ...

// On shutdown
await shutdownBentleyTracing();

Tracing Middleware

import { bentleyTracingMiddleware } from "@coopah/bentley-langfuse";

// Add to your shell middleware pipeline for automatic span collection
const bentley = createBentley({
  plugins: [/* ... */],
  middleware: [bentleyTracingMiddleware],
});

Traced Functions

import { bentleyTraced } from "@coopah/bentley-langfuse";

const myFunction = bentleyTraced(async () => {
  // This function call is wrapped in a trace span
  return await doExpensiveWork();
});

API

Setup

  • initBentleyTracing(config: BentleyLangfuseConfig) — Initialize OTel + LangFuse
  • shutdownBentleyTracing() — Flush pending spans and shut down
  • getSpanProcessor() — Access the raw OTel span processor

Tracing

  • bentleyTracingMiddleware — Shell middleware for automatic tracing
  • bentleyTraced(fn) — Wrap any async function with a trace span

Prompts

  • BentleyPromptManager — Manage and compile versioned LangFuse prompts

Scoring & Cost

  • BentleyScoringService — Score agent runs programmatically
  • bentleyAutoScoringMiddleware — Automatic scoring middleware
  • calculateCost(model, usage) — Token cost calculation
  • MODEL_COSTS — Cost-per-token constants for supported models

Experiments

  • BentleyExperimentRunner — Run A/B evaluation experiments
  • BentleyExperimentEvaluator — Custom evaluator interface

Configuration

interface BentleyLangfuseConfig {
  publicKey: string;
  secretKey: string;
  baseUrl?: string;       // LangFuse endpoint
  environment?: string;
  exportMode?: "batched" | "immediate";
}

Related Packages

| Package | Role | |---------|------| | @coopah/bentley-core | Core runtime (required) | | @coopah/bentley-server | Server with built-in LangFuse support |

License

MIT