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

@b4run/sdk

v0.10.0

Published

Author-facing TypeScript SDK for defining B4.run agents, tools, middleware, memory, and routes.

Readme

@b4run/sdk

Author-facing TypeScript declarations for B4.run agents, tools, middleware, memory, routes, and typed runtime contracts.

Use this when: You are authoring routes, tools, middleware, memory declarations, or typed runtime contracts.

Install

Requires Node.js 24 or later.

pnpm add @b4run/sdk

Add zod when declaring typed long-term memory:

pnpm add zod

Example

Define a minimal agent route:

// src/app/support/index.ts
import { agent } from "@b4run/sdk"

export default agent({
  model: "gpt-5-mini",
  systemPrompt: "Answer support questions clearly and concisely.",
})

The same package provides adjacent memory and middleware declarations:

// src/app/support/memory.ts
import { defineMemory } from "@b4run/sdk"
import { z } from "zod"

export default defineMemory({
  kind: "semantic",
  scope: ["workspace", "route"],
  schema: z.object({
    subject: z.string(),
    predicate: z.string(),
    value: z.string(),
  }),
})
// src/middleware.ts
import { defineMiddleware } from "@b4run/sdk"

export default defineMiddleware(() => ({ action: "continue" }))

Middleware that owns a long-lived resource, such as a database pool, uses the lifecycle form. setup runs once, lazily, before the first gated request (and is retried on the next request if it fails); dispose runs when the Node runtime shuts down.

// src/middleware.ts
import { allow, defineMiddleware, reject } from "@b4run/sdk"
import { Pool } from "pg"

let pool: Pool | undefined

export default defineMiddleware({
  async setup() {
    pool = new Pool({ connectionString: process.env.DATABASE_URL })
    await pool.query("select 1")
  },
  async dispose() {
    await pool?.end()
  },
  async handle(req) {
    const session = await pool?.query("select user_id from sessions where token = $1", [
      req.headers.authorization,
    ])
    return session?.rowCount ? allow({ userId: session.rows[0].user_id }) : reject(401)
  },
})

Runtime and stability

  • @b4run/sdk is the supported, edge-safe application surface.
  • @b4run/sdk/pure is a supported, dependency-free edge-safe integration surface.
  • @b4run/sdk/testing is a supported Node-only scenario-authoring surface. It is separate from @b4run/testing.

Related

Maturity and support

B4.run is pre-1.0, and its public surface can change. All publishable B4.run packages release together as a fixed group; review the @b4run/sdk changelog and upgrading guide before upgrading. For support, use GitHub Discussions; report defects in GitHub Issues.

License

MIT. See the repository license.