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

@agentproto/adapter-code-brain-gbrain

v0.2.1

Published

Impure code-brain adapter: implements @agentproto/code-brain's ICodeBrainProvider against a live gbrain code-intelligence backend, two ways (local docker exec + HTTP/bearer). Registers as a provider-kit family and ships the tracked gbrain runtime + an MCP

Readme

@agentproto/adapter-code-brain-gbrain

The impure gbrain backing for the pure @agentproto/code-brain ICodeBrainProvider contract. It implements that contract two ways, registers them as a @agentproto/provider-kit family, ships the tracked gbrain runtime, and serves the ask_codebase tool over MCP.

Confinement invariant: every gbrain dialect token (code-def, __all__, --source-id, code-callers, bearer auth) lives in this package and nowhere else. @agentproto/code-brain and everything above it never name gbrain.

Backends

| Export | Transport | Notes | |---|---|---| | gbrainLocalProvider() | docker exec gbrain-pg gbrain … | Tracked replacement for the untracked ~/agentproto-kb/tools/code-explorer-mcp. No creds. | | gbrainHttpProvider() | gbrain MCP over POST /mcp + GBRAIN_BEARER_TOKEN | For a remote/hardened gbrain. |

Both satisfy ICodeBrainProvider:

import { gbrainLocalProvider } from "@agentproto/adapter-code-brain-gbrain"

const brain = gbrainLocalProvider()
await brain.defineSymbol("ImporterRunner")   // → SymbolDef | null
await brain.callers("ImporterRunner")        // → CallEdge[]
await brain.graphQuery({ question: "CorpusImporter enumerate" })  // → GraphResult

gbrain command mapping (verified vs live gbrain-pg, v0.42.62.0)

| Contract | Local (CLI) | HTTP (MCP tool) | |---|---|---| | defineSymbol(s) | gbrain code-def <s>results[] | code_def {symbol}defs[] | | callers(s) | gbrain code-callers <s> --all-sources | code_callers {symbol, all_sources} | | callees(s) | gbrain code-callees <s> --all-sources | code_callees {symbol, all_sources} | | graphQuery(q) | gbrain query <q> --source-id __all__ --autocut false (text lines) | query {query, source_id, autocut} (JSON array) |

The two backends emit slightly different raw shapes (results vs defs; text lines vs JSON array) — both are normalised in parse.ts. gbrain's code-edges carry no source location, so CallEdge.file / .span are stubbed.

MCP server

agentproto-code-brain-gbrain (bin) / startAskCodebaseHttpServer(...) serves the ask_codebase contract over MCP Streamable-HTTP on 127.0.0.1:8831 /mcp, byte-compatible with the code-explorer alias in ~/.agentproto/imported-mcps.json. Pick the backend with CODE_BRAIN_MCP_BACKEND=local|http.

Runtime

The gbrain launcher (compose + Dockerfile + entrypoints) lives in runtime/ — see its README to bring gbrain-pg up.