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

oh-my-copilot

v4.8.2-preview.1

Published

Multi-agent orchestration system for Copilot CLI - Inspired by oh-my-opencode

Readme

oh-my-copilot

npm version npm downloads GitHub stars License: MIT

oh-my-copilot is a fork of oh-my-claudecode by Yeachan Heo, adapted for GitHub Copilot CLI.

For Codex users: Check out oh-my-codex — the same orchestration experience for OpenAI Codex CLI.

Multi-agent orchestration for Copilot CLI. Zero learning curve.

Don't learn Copilot CLI. Just use OMC.

Get StartedDocumentationCLI ReferenceWorkflowsMigration Guide


Quick Start

Step 1: Install

/plugin marketplace add https://github.com/RobinNorberg/oh-my-copilot
/plugin install oh-my-copilot

Step 2: Setup

/omg-setup

Step 3: Build something

autopilot: build a REST API for managing tasks

That's it. Everything else is automatic.

Not Sure Where to Start?

If you're uncertain about requirements, have a vague idea, or want to micromanage the design:

/deep-interview "I want to build a task management app"

The deep interview uses Socratic questioning to clarify your thinking before any code is written. It exposes hidden assumptions and measures clarity across weighted dimensions, ensuring you know exactly what to build before execution begins.

Team Mode (Recommended)

Starting in v4.1.7, Team is the canonical orchestration surface in OMC. The legacy swarm keyword/skill has been removed; use team directly.

/team 3:executor "fix all TypeScript errors"

Team runs as a staged pipeline:

team-plan → team-prd → team-exec → team-verify → team-fix (loop)

Enable Copilot CLI native teams in ~/.copilot/settings.json:

{
  "env": {
    "CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS": "1"
  }
}

If teams are disabled, OMC will warn you and fall back to non-team execution where possible.

tmux CLI Workers — Codex & Gemini (v4.4.0+)

v4.4.0 removes the Codex/Gemini MCP servers (x, g providers). Use the CLI-first Team runtime (omc team ...) to spawn real tmux worker panes:

omc team 2:codex "review auth module for security issues"
omc team 2:gemini "redesign UI components for accessibility"
omc team 1:copilot "implement the payment flow"
omc team status auth-review
omc team shutdown auth-review

/omg-teams remains as a legacy compatibility skill and now routes to omc team ....

For mixed Codex + Gemini work in one command, use the /ccg skill (routes via ask-codex + ask-gemini, then Copilot synthesizes):

/ccg Review this PR — architecture (Codex) and UI components (Gemini)

| Surface | Workers | Best For | | ------------------------- | ------------------ | -------------------------------------------- | | omc team N:codex "..." | N Codex CLI panes | Code review, security analysis, architecture | | omc team N:gemini "..." | N Gemini CLI panes | UI/UX design, docs, large-context tasks | | omc team N:copilot "..." | N Copilot CLI panes | General tasks via Copilot CLI in tmux | | /ccg | ask-codex + ask-gemini | Tri-model advisor synthesis |

Workers spawn on-demand and die when their task completes — no idle resource usage. Requires codex / gemini CLIs installed and an active tmux session.

Note: Package naming — The project is branded as oh-my-copilot (repo, plugin, commands), but the npm package is published as oh-my-copilot. If you install the CLI tools via npm/bun, use npm install -g oh-my-copilot.

Updating

# 1. Update the marketplace clone
/plugin marketplace update omc

# 2. Re-run setup to refresh configuration
/omg-setup

Note: If marketplace auto-update is not enabled, you must manually run /plugin marketplace update omc to sync the latest version before running setup.

If you experience issues after updating, clear the old plugin cache:

/omg-doctor

Why oh-my-copilot?

  • Zero configuration required - Works out of the box with intelligent defaults
  • Team-first orchestration - Team is the canonical multi-agent surface
  • Natural language interface - No commands to memorize, just describe what you want
  • Automatic parallelization - Complex tasks distributed across specialized agents
  • Persistent execution - Won't give up until the job is verified complete
  • Cost optimization - Smart model routing saves 30-50% on tokens
  • Learn from experience - Automatically extracts and reuses problem-solving patterns
  • Real-time visibility - HUD statusline shows what's happening under the hood

Features

Orchestration Modes

Multiple strategies for different use cases — from Team-backed orchestration to token-efficient refactoring. Learn more →

| Mode | What it is | Use For | | ----------------------- | --------------------------------------------------------------------------------------- | ------------------------------------------------------ | | Team (recommended) | Canonical staged pipeline (team-plan → team-prd → team-exec → team-verify → team-fix) | Coordinated Copilot agents on a shared task list | | omc team (CLI) | tmux CLI workers — real copilot/codex/gemini processes in split-panes | Codex/Gemini CLI tasks; on-demand spawn, die when done | | ccg | Tri-model advisors via ask-codex + ask-gemini, Copilot synthesizes | Mixed backend+UI work needing both Codex and Gemini | | Autopilot | Autonomous execution (single lead agent) | End-to-end feature work with minimal ceremony | | Ultrawork | Maximum parallelism (non-team) | Burst parallel fixes/refactors where Team isn't needed | | Ralph | Persistent mode with verify/fix loops | Tasks that must complete fully (no silent partials) | | Pipeline | Sequential, staged processing | Multi-step transformations with strict ordering | | Ultrapilot (legacy) | Deprecated compatibility mode (autopilot pipeline alias) | Existing workflows and older docs |

Intelligent Orchestration

  • 32 specialized agents for architecture, research, design, testing, data science
  • Smart model routing - Haiku for simple tasks, Opus for complex reasoning
  • Automatic delegation - Right agent for the job, every time

Developer Experience

  • Magic keywords - ralph, ulw, team for explicit control
  • HUD statusline - Real-time orchestration metrics in your status bar
  • Skill learning - Extract reusable patterns from your sessions
  • Analytics & cost tracking - Understand token usage across all sessions

Full feature list →


Magic Keywords

Optional shortcuts for power users. Natural language works fine without them.

| Keyword | Effect | Example | | ---------------------- | -------------------------------------- | ---------------------------------------------- | | team | Canonical Team orchestration | /team 3:executor "fix all TypeScript errors" | | omc team | tmux CLI workers (codex/gemini/copilot) | omc team 2:codex "security review" | | ccg | ask-codex + ask-gemini synthesis | /ccg review this PR | | autopilot | Full autonomous execution | autopilot: build a todo app | | ralph | Persistence mode | ralph: refactor auth | | ulw | Maximum parallelism | ulw fix all errors | | ralplan | Iterative planning consensus | ralplan this feature | | deep-interview | Socratic requirements clarification | deep-interview "vague idea" | | deepsearch | Codebase-focused search routing | deepsearch for auth middleware | | ultrathink | Deep reasoning mode | ultrathink about this architecture | | ado triage | Azure DevOps work item triage | ado triage | | ado setup | Configure Azure DevOps integration | ado setup | | cancelomc, stopomc | Stop active OMC modes | stopomc |

Notes:

  • ralph includes ultrawork: when you activate ralph mode, it automatically includes ultrawork's parallel execution.
  • swarm compatibility alias has been removed; migrate existing prompts to /team syntax.
  • plan this / plan the keyword triggers were removed; use ralplan or explicit /oh-my-copilot:omg-plan.

Azure DevOps Integration

oh-my-copilot supports Azure DevOps natively — auto-detection, work item management, PR operations, and triage workflows.

Auto-Detection

When your git remote points to dev.azure.com or *.visualstudio.com, OMC automatically:

  • Detects the ADO platform on session start
  • Injects available mcp__azure-devops__* MCP tool context into agent prompts
  • Reads .omg/config.json for project-specific settings

Setup

/oh-my-copilot:omg-ado-setup

This configures your ADO connection — verifies az CLI auth, auto-detects org/project from git remote, and writes .omg/config.json:

{
  "version": 1,
  "platform": "azure-devops",
  "ado": {
    "org": "my-org",
    "project": "my-project",
    "defaultWorkItemType": "User Story",
    "areaPath": "MyProject\\Team Alpha",
    "iterationPath": "MyProject\\Sprint 5"
  }
}

Cross-project support: when code and work items live in different ADO projects, add workItemOrg and workItemProject fields.

Triage

/oh-my-copilot:omg-ado-triage

Scans 5 ADO surfaces in parallel and produces a prioritized summary:

  • Untriaged work items
  • Your active work items
  • Open pull requests with review status
  • Pipeline build status
  • Security alerts

Uses MCP tools when available, falls back to az CLI.

Agent Awareness

Five agents have built-in ADO knowledge (planner, verifier, debugger, analyst, explore). They automatically use ADO MCP tools for:

  • Work item queries and CRUD
  • PR creation and review
  • Build log investigation
  • Cross-repo code search
  • Wiki documentation lookup

Provider API

The AzureDevOpsProvider exposes programmatic access:

| Method | Description | |--------|-------------| | listWorkItems() | WIQL queries with injection prevention | | createWorkItem() | Create with type, area/iteration paths, tags | | addTag() / removeTag() | Work item tag management | | addComment() | Add discussion comments | | listPullRequests() | List PRs by status | | createPullRequest() | Create PR with source/target branches | | mergePullRequest() | Complete a PR |

All commands use execFileSync with WIQL escaping for security.


Utilities

Provider Advisor (omc ask)

Run local provider CLIs and save a markdown artifact under .omg/artifacts/ask/:

omc ask copilot "review this migration plan"
omc ask codex --prompt "identify architecture risks"
omc ask gemini --prompt "propose UI polish ideas"
omc ask copilot --agent-prompt executor --prompt "draft implementation steps"

Canonical env vars:

  • OMC_ASK_ADVISOR_SCRIPT
  • OMC_ASK_ORIGINAL_TASK

Phase-1 aliases OMX_ASK_ADVISOR_SCRIPT and OMX_ASK_ORIGINAL_TASK are accepted with deprecation warnings.

Rate Limit Wait

Auto-resume Copilot CLI sessions when rate limits reset.

omc wait          # Check status, get guidance
omc wait --start  # Enable auto-resume daemon
omc wait --stop   # Disable daemon

Requires: tmux (for session detection)

Monitoring & Analytics

Use the HUD for live observability and omc for cost/session reporting:

  • HUD analytics preset: /oh-my-copilot:hud setup then set "omcHud": { "preset": "analytics" }
  • Cost reports: omc cost daily|weekly|monthly
  • Session history/backfill: omc sessions, omc backfill
  • Raw logs: .omg/state/token-tracking.jsonl, .omg/state/agent-replay-*.jsonl

Notification Tags (Teams/Telegram/Discord/Slack)

You can configure who gets tagged when stop callbacks send session summaries.

# Set/replace tag list
omc config-stop-callback teams --enable --webhook <url> --tag-list "John Doe:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
omc config-stop-callback telegram --enable --token <bot_token> --chat <chat_id> --tag-list "@alice,bob"
omc config-stop-callback discord --enable --webhook <url> --tag-list "@here,123456789012345678,role:987654321098765432"
omc config-stop-callback slack --enable --webhook <url> --tag-list "<!here>,<@U1234567890>"

# Incremental updates
omc config-stop-callback telegram --add-tag charlie
omc config-stop-callback discord --remove-tag @here
omc config-stop-callback discord --clear-tags

Tag behavior:

  • Teams: DisplayName:AAD-Object-ID pairs for @mentions in Adaptive Cards (e.g. "John Doe:xxxxxxxx-...").
  • Telegram: alice becomes @alice
  • Discord: supports @here, @everyone, numeric user IDs, and role:<id>
  • Slack: supports <@MEMBER_ID>, <!channel>, <!here>, <!everyone>, <!subteam^GROUP_ID>
  • file callbacks ignore tag options

Documentation


Requirements

Platform & tmux

OMC features like omc team and rate-limit detection require tmux:

| Platform | tmux provider | Install | | -------------- | -------------------------------------------------------- | ---------------------- | | macOS | tmux | brew install tmux | | Ubuntu/Debian | tmux | sudo apt install tmux| | Fedora | tmux | sudo dnf install tmux| | Arch | tmux | sudo pacman -S tmux | | Windows | psmux (native) | winget install psmux | | Windows (WSL2) | tmux (inside WSL) | sudo apt install tmux|

Windows users: psmux provides a native tmux binary for Windows with 76 tmux-compatible commands. No WSL required.

Optional: Multi-AI Orchestration

OMC can optionally orchestrate external AI providers for cross-validation and design consistency. These are not required — OMC works fully without them.

| Provider | Install | What it enables | | --------------------------------------------------------- | ----------------------------------- | ------------------------------------------------ | | Gemini CLI | npm install -g @google/gemini-cli | Design review, UI consistency (1M token context) | | Codex CLI | npm install -g @openai/codex | Architecture validation, code review cross-check |

Cost: 3 Pro plans (Copilot + Gemini + ChatGPT) cover everything for ~$60/month.


License

MIT


Inspired by: oh-my-opencodecopilot-hudSuperpowerseverything-copilot-cliOuroboros

Zero learning curve. Maximum power.