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

@beforewave/agent-helm

v0.1.2

Published

Local engineering capability layer for ChatGPT: code understanding, modification, diagnostics, execution, and agent delegation.

Downloads

118

Readme

@beforewave/agent-helm

Bring ChatGPT’s reasoning into your local engineering environment.

Agent Helm gives ChatGPT a stable local capability layer for working directly on your codebase:

  • understand code and navigate symbols
  • make structured code changes and refactors
  • inspect diagnostics and recover the language server
  • execute local commands
  • discover and delegate to native coding agents when needed

ChatGPT remains the reasoning layer. Agent Helm provides the local engineering surface that lets those decisions act on the real project.

Install

npm install -g @beforewave/agent-helm

Run the standalone service:

agent-helm daemon --project /path/to/project

DeepSeek Harness users normally do not install this package directly. Install @beforewave/dsh-with-chatgpt instead; it brings Agent Helm Core with it.

How it works

ChatGPT reasoning
      ↓
  Agent Helm
      ↓
 local project

      or

ChatGPT reasoning
      ↓
  Agent Helm
      ↓
native coding agent

Agent Helm owns the public capability and policy boundary. Serena is currently the internal code-intelligence provider, not a user-facing permission model.

Managed Serena is started with the engineering tools Agent Helm needs, including optional provider tools such as restart_language_server. Agent Helm then decides which stable code_* tools are exposed through codeCapabilities and codeTools.deny.

You do not configure Serena read_only, optional tool lists, context, or mode through Agent Helm. Agent Helm does not accept those legacy provider-policy fields; its public permissions are defined only by codeCapabilities and codeTools.deny. Serena’s own local project configuration remains Serena’s responsibility.

Serena memory, onboarding, dashboard, and other unrelated tools are not exposed through Agent Helm.

Configuration

Agent Helm uses its own configuration namespace:

~/.config/agent-helm/config.yml
<project>/.agent-helm/config.yml

Example:

codeCapabilities:
  - read
  - write
  - execute
  - diagnostic

codeTools:
  deny: []

tunnel:
  enabled: true

codeCapabilities is the provider-neutral capability ceiling. codeTools.deny can only remove individual stable Agent Helm tools from that surface.

Agent Helm permissions are controlled only by codeCapabilities and codeTools.deny. Serena project configuration is not interpreted as Agent Helm policy.

Runtime defaults

Default runtime identifiers:

  • MCP: http://127.0.0.1:3457/mcp
  • Tunnel Admin UI: http://127.0.0.1:3458/ui
  • adapter socket: ~/.agent-helm/run/daemon.sock
  • default token path: ~/.agent-helm/token
  • token env: AGENT_HELM_TOKEN
  • local token env: AGENT_HELM_LOCAL_TOKEN
  • managed tunnel auth env: AGENT_HELM_AUTH
  • launcher override env: AGENT_HELM_LAUNCHER_CONFIG_JSON

DSH

For direct work plus DSH delegation, use:

dsh plugin --profile web add @beforewave/dsh-with-chatgpt

That package is the user-facing DSH entry and manages the Core lifecycle while registering DSH as a native agent adapter.