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

@chrisromp/copilot-bridge

v0.10.0

Published

Mattermost ↔ GitHub Copilot bridge

Readme

copilot-bridge

Bridge GitHub Copilot CLI to messaging platforms. Send messages from Mattermost (or other platforms) and get responses from Copilot sessions running on your machine.

[!WARNING] This is all experimental.

Mattermost Channel → copilot-bridge → @github/copilot-sdk → Copilot CLI
     ↑                                                          ↓
     └──────────── streaming response (edit-in-place) ←─────────┘

Screenshots

Copilot Bridge in Mattermost Desktop

More screenshots here.

Features

  • Multi-bot support — Run multiple bot identities on the same platform (e.g., @copilot for admin, @alice for tasks)
  • Workspaces — Each bot gets an isolated workspace with its own AGENTS.md, .env secrets, and MEMORY.md
  • DM auto-discovery — Just message a bot; no channel config needed for direct messages
  • Streaming responses — Edit-in-place message updates with throttling
  • MCP & skills — Auto-loads MCP servers and skill directories from Copilot config
  • Fuzzy model matching/model opus resolves to claude-opus-4.6 (mobile-friendly)
  • Interactive permissions — Approve/deny tool use via chat, or /autopilot for full autonomous mode
  • Model fallback — Automatic fallback to alternative models on capacity/availability errors
  • Loop detection — Detects and breaks tool call loops with user notification
  • Session management/reload to refresh config, /resume to switch between sessions (prefix matching supported)
  • Persistent preferences — Model, agent, verbose mode, permissions saved per-channel
  • Scheduled tasks — Recurring (cron) and one-off (datetime) tasks per channel
  • Inter-agent communication — Bot-to-bot messaging via ask_agent tool
  • File sharingsend_file and show_file_in_chat tools for pushing files to chat
  • Attachment ingestion — File and image attachments are extracted and passed to the session
  • Mid-turn steering — Send messages while the bot is working to redirect it
  • Streamer mode — Hide preview/internal models from /model list for on-air use
  • Thread-aware replies — Reply in threads via 🧵 trigger or per-channel config
  • Config hot-reload/reload config applies safe changes without restarting the bridge
  • Admin onboarding — Templates and tools for creating channels, managing workspaces

Quick Start

  1. Prerequisites: Node.js 20+, GitHub Copilot CLI installed and authenticated
  2. Install (pick one):
    • npm: npm install -g @chrisromp/copilot-bridge
    • From source: git clone https://github.com/ChrisRomp/copilot-bridge.git && cd copilot-bridge && npm install
  3. Configure: copilot-bridge init (or npm run init from source) — interactive wizard
  4. Validate: copilot-bridge check (or npm run check)
  5. Run: copilot-bridge start (or npm run dev for development with watch mode)

For DMs, that's it — the bridge auto-discovers DM channels for each bot. For group channels, add a channels entry mapping the channel ID to a working directory. See the Setup Guide for the full walkthrough or Configuration for reference.

Running as a service

See the Setup Guide — Running as a Service for macOS (launchd) and Linux (systemd) instructions, or run copilot-bridge install-service to install automatically.

Chat Commands

| Command | Aliases | Description | |---------|---------|-------------| | Session | | | | /new | | Start a fresh session | | /stop | /cancel | Stop the current task | | /reload | | Reload session (re-reads AGENTS.md, workspace config) | | /reload config | | Hot-reload config.json (safe changes apply without restart) | | /resume [id] | | List past sessions, or resume one by ID | | /model [name] | /models | List models or switch model (fuzzy match) | | /agent <name> | | Switch custom agent (empty to deselect) | | /reasoning <level> | | Set reasoning effort (low/medium/high/xhigh) | | /context | | Show context window usage | | /verbose | | Toggle tool call visibility | | /status | | Show session info | | Permissions | | | | /approve / /deny | | Handle pending permission request | | /always approve | /remember | Approve + persist the permission rule | | /always deny | | Deny + persist the permission rule | | /rules | /rule | List saved permission rules | | /rules clear [spec] | | Clear rules (all, or by spec) | | /yolo | | Toggle auto-approve permissions | | /autopilot | | Toggle autopilot mode (autonomous loop, implies yolo) | | Planning | | | | /plan | | Toggle plan mode (structured planning before implementation) | | /plan show | | Display the current plan | | /plan clear | | Delete the plan | | Scheduling | | | | /schedule | /schedules, /tasks | Manage scheduled tasks (list, cancel, pause, resume, history) | | Tools & Info | | | | /skills | /tools | Show available skills and MCP tools | | /skills enable <name...> | | Enable skills for this channel (all for bulk) | | /skills disable <name...> | | Disable skills for this channel (all for bulk) | | /mcp | | Show MCP servers and their source | | /streamer-mode | /on-air | Toggle streamer mode (hides preview/internal models) | | /help | | Show common commands; /help all for full list |

Documentation

License

MIT