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

helix-pro

v0.2.3

Published

One-command OpenCode MCP installer for a local Helix checkout

Readme

helix-pro

helix-pro is a one-command installer for the native Helix local MCP integration defined in helix_mcp/README.md.

The npm package contains only the helix_mcp adapter and its OpenCode assets: the MCP server, the helix agent, Helix skills, and slash-command templates. It does not include triton-agent/src, the Helix CLI, or the wider triton-agent skills tree.

Prerequisites

  • Node.js 20+ and npm.
  • OpenCode.
  • uv on PATH.
  • An existing triton-agent checkout containing pyproject.toml and src/helix.
  • The checkout dependencies synchronized:
cd /path/to/triton-agent
uv sync

The supplied checkout remains the Helix CLI runtime. Its Python dependencies, fastmcp, torch, torch_npu, and Ascend runtime requirements are not installed by this npm package.

Install

npx --yes helix-pro install --triton-agent /path/to/triton-agent

The installer deploys bundled helix_mcp assets to the current user's OpenCode configuration directory (default: ~/.config/opencode):

  • helix_mcp/: the packaged MCP server and its local assets;
  • skills/helix-orchestrator and skills/helix-env-probe;
  • agents/helix.md;
  • commands: helix-agent, helix-devMode, helix-workspace, helix-single-operator, and helix-batch-operator;
  • a native mcp.helix entry and matching permissions in opencode.json.

The registered MCP starts the packaged server with the user-supplied triton-agent as its uv project and runtime source:

{
  "mcp": {
    "helix": {
      "type": "local",
      "command": [
        "uv",
        "--project",
        "/path/to/triton-agent",
        "run",
        "python",
        "/home/user/.config/opencode/helix_mcp/helix_mcp_server.py"
      ],
      "cwd": "/path/to/triton-agent",
      "environment": {
        "HELIX_TRITON_AGENT_DIR": "/path/to/triton-agent"
      },
      "enabled": true,
      "timeout": 10000
    }
  }
}

The installer preserves unrelated settings and JSONC comments in an existing opencode.json. Re-running it replaces only the Helix MCP entry and Helix-owned OpenCode assets.

For an isolated OpenCode configuration directory, set OPENCODE_CONFIG_DIR:

OPENCODE_CONFIG_DIR=/tmp/opencode-config \
  npx --yes helix-pro install --triton-agent /path/to/triton-agent

Use

Start OpenCode in an operator workspace, then switch to the helix primary agent:

cd /path/to/operator-workspace
opencode

The agent, skills, persistent MCP configuration, workspace behavior, and exposed tool contract follow the packaged helix_mcp README.

Development

After modifying ../helix_mcp, refresh the packaged MCP asset snapshot before packing:

npm run sync:mcp-assets

Then run:

npm install
npm test
npm run pack:check
npm pack