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

openplugin

v1.0.62

Published

Install AI coding agent plugins from Git repositories — supports Claude Code, Codex, Qoder, QoderWork

Readme

openplugin

Install AI coding agent plugins from Git repositories with a single command.

Supports Claude Code, Codex CLI, Qoder, and QoderWork.

Usage

# Install plugins from a Git repository
npx -y openplugin@latest http://gitlab.alibaba-inc.com/subo.jzc/opentasks.git

# GitHub owner/repo shorthand is also supported for public GitHub repositories
npx -y openplugin@latest <owner/repo>

# Install a specific plugin
npx -y openplugin@latest <owner/repo> --plugin <name>

# Install to a specific client only
npx -y openplugin@latest <owner/repo> --claude
npx -y openplugin@latest <owner/repo> --codex
npx -y openplugin@latest <owner/repo> --qoder
npx -y openplugin@latest <owner/repo> --qoderwork

# Skip interactive prompts (install all plugins to all detected clients)
npx -y openplugin@latest <owner/repo> --yes

# Uninstall
npx -y openplugin@latest remove <owner/repo>

How it works

  1. Clones the specified Git repository
  2. Discovers plugins under plugins/<name>/.claude-plugin/ or a root-level .claude-plugin/
  3. Lets you choose which plugins and clients to install to
  4. Configures hooks, MCP servers, and plugin registration per client

Options

| Option | Description | |---|---| | --plugin <name> | Install a specific plugin (can be used multiple times) | | --claude | Install to Claude Code only | | --codex | Install to Codex CLI only | | --qoder | Install to Qoder only | | --qoderwork | Install to QoderWork only | | -y, --yes | Skip interactive prompts | | -h, --help | Show help |

Requirements

  • Node.js 18+
  • git
  • At least one supported client installed (Claude Code, Codex CLI, Qoder, or QoderWork)
  • Runtime commands referenced by plugin MCP configs. For example, if a plugin's .mcp.json uses "command": "uvx", install uv first so uvx is on PATH.

Plugin repository structure

Repositories must follow this structure for plugin discovery:

plugins/
  <plugin-name>/
    .claude-plugin/
      plugin.json        # name, version, description
    .mcp.json            # MCP server configuration (optional)
    hooks/               # Hook definitions (optional)

Single-plugin repositories may also put plugin files at the repository root:

.claude-plugin/
  plugin.json
.codex-plugin/       # Optional
skills/              # Optional
hooks/               # Optional

When installing http://gitlab.alibaba-inc.com/subo.jzc/opentasks.git, openplugin always installs the opentasks core plugin and then lets you choose OpenTasks companions declared by that repository in plugins/opentasks/.openplugin-companions.json.

If Langfuse is selected, openplugin installs it globally and non-interactively with the same client targets chosen in the openplugin prompt. For example, a Codex-only install runs:

npx -y skills add langfuse/skills --skill langfuse --global --yes --agent codex

Client target mapping for Langfuse skills is Claude Code -> claude-code, Codex CLI -> codex, and Qoder/QoderWork -> qoder.

MCP companions are registered for the clients selected in the openplugin prompt. Command-based MCP companions can use tools such as npx -y @playwright/mcp@latest; HTTP MCP companions use the URLs declared by the downloaded repository manifest. Codex, Qoder, and QoderWork config files are backed up before MCP entries are merged.

Openplugin does not collect or configure Langfuse credentials. Configure these later if you want Langfuse tracing:

LANGFUSE_PUBLIC_KEY=pk-lf-...
LANGFUSE_SECRET_KEY=sk-lf-...
LANGFUSE_BASE_URL=https://cloud.langfuse.com

The OpenTasks companion prompt is specific to OpenTasks installs; other repositories are not modified or given extra choices. Companion MCP servers and external skills come from the downloaded repository manifest rather than openplugin's source code.

When the selected plugin set includes opentasks, openplugin also ensures the opentasks CLI is available. If OPENTASKS_BIN is not set and opentasks is not found, it installs the CLI with:

uv tool install git+http://gitlab.alibaba-inc.com/subo.jzc/opentasks.git@test

After plugin installation, it asks for an OpenTasks setup mode:

  • single: initialize one normal OpenTasks workspace with opentasks workspace setup --path <workspace>. This workspace stores tasks, memories, repo-index.md, and repo-map.md; source repositories can stay anywhere. It then offers a repository picker for the current git repo and nearby sibling git repos.
  • boss: initialize an OpenCompany root with opentasks company setup-boss --path <opencompany-root>. This creates the Boss/ workspace and company.json.
  • worker: initialize an OpenCompany worker with opentasks worker setup-machine --cwd <opencompany-root>/Workers/<aone-name>. This creates or reuses the worker workspace and configures the local machine for that worker.

For non-interactive installs, --yes keeps the previous default and uses single. You can choose OpenCompany non-interactively with environment variables:

OPENTASKS_SETUP_MODE=boss OPENTASKS_COMPANY_ROOT=/path/to/opencompany \
  npx -y openplugin@latest http://gitlab.alibaba-inc.com/subo.jzc/opentasks.git --yes

OPENTASKS_SETUP_MODE=worker OPENTASKS_COMPANY_ROOT=/path/to/opencompany \
OPENTASKS_AONE_NAME=HoneyBabyAgent \
  npx -y openplugin@latest http://gitlab.alibaba-inc.com/subo.jzc/opentasks.git --yes

You can manage repositories later with natural language in an OpenTasks-enabled agent, or with CLI commands:

opentasks repo add /path/to/repo --cwd ~/Desktop/opentasks-workspace
opentasks repo remove <repo-name> --cwd ~/Desktop/opentasks-workspace

This onboarding runs only for OpenTasks installs.

During installation, openplugin validates plugin MCP configs before copying them to clients. It checks that .mcp.json is valid, local stdio commands are available or executable, and Codex plugins declare mcpServers in .codex-plugin/plugin.json when they ship MCP servers.

License

Apache-2.0