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-droid-sisyphus

v0.0.1

Published

Multi-agent orchestration system for Droid - Inspired by oh-my-opencode

Readme

oh-my-droid

npm version License: MIT

Multi-droid orchestration for Droid CLI. Zero learning curve.

oh-my-droid extends Droid with execution modes, specialized droids, skills, hooks, model routing, and MCP bridge servers.


Quick Start

Install plugin

/plugin marketplace add https://github.com/coli-dev/oh-my-droid
/plugin install oh-my-droid

Initial setup

/oh-my-droid:omd-setup

First task

autopilot: build a small REST API with auth and tests

Core Features

  • Multi-droid delegation with task-aware model routing
  • Execution modes: autopilot, ultrawork, ralph, ultrapilot, swarm, pipeline, ecomode
  • 30+ skills and command wrappers
  • Hook system for automation and context injection
  • MCP bridge servers for Codex/Gemini orchestration
  • LSP/AST integrated tooling and verification workflows

Magic Keywords

You can use natural language, but these shortcuts give explicit control:

| Keyword | Effect | Example | | --- | --- | --- | | autopilot | Full autonomous execution | autopilot: implement OAuth login | | ralph | Persistent completion loop | ralph fix flaky test suite | | ulw / ultrawork | Maximum parallelism | ulw migrate all API handlers | | eco / ecomode | Token-efficient execution | eco refactor this module | | plan | Strategic planning flow | plan this feature end-to-end |


Configuration

Main user configuration file:

  • ~/.factory/.omd-config.json

Example:

{
  "defaultExecutionMode": "ultrawork",
  "mcpServers": {
    "context7": { "enabled": true },
    "exa": { "enabled": true, "apiKey": "YOUR_EXA_KEY" }
  }
}

Full example:

{
  "defaultExecutionMode": "ultrawork",
  "maxParallelAgents": 5,
  "verification": {
    "enabled": true,
    "defaultModel": "custom:claude-sonnet-4.5-5"
  },
  "models": {
    "default": "custom:gpt-5.3-codex-3",
    "low": "custom:gpt-5.2-codex-mini-0",
    "medium": "custom:claude-sonnet-4.5-5",
    "high": "custom:claude-opus-4.5-6"
  },
  "droids": {
    "architect": { "model": "custom:claude-opus-4.5-6", "enabled": true },
    "planner": { "model": "custom:claude-opus-4.5-6", "enabled": true },
    "executor": { "model": "custom:gpt-5.3-codex-3", "enabled": true },
    "explore": { "model": "custom:gpt-5.2-codex-mini-0", "enabled": true },
    "researcher": { "model": "custom:gpt-5.2-1", "enabled": true },
    "frontendEngineer": { "model": "custom:gemini-3-pro-8", "enabled": true },
    "documentWriter": { "model": "custom:claude-haiku-4.5-4", "enabled": true },
    "multimodalLooker": { "model": "custom:gemini-3-pro-8", "enabled": true }
  },
  "mcpServers": {
    "context7": { "enabled": true },
    "exa": { "enabled": true, "apiKey": "YOUR_EXA_KEY" },
    "x": { "enabled": true },
    "g": { "enabled": true }
  },
  "features": {
    "parallelExecution": true,
    "lspTools": true,
    "astTools": true,
    "continuationEnforcement": true,
    "autoContextInjection": true
  },
  "permissions": {
    "allowBash": true,
    "allowEdit": true,
    "allowWrite": true,
    "maxBackgroundTasks": 5
  },
  "magicKeywords": {
    "ultrawork": ["ulw", "ultrawork"],
    "search": ["search", "find"],
    "analyze": ["analyze", "debug", "investigate"],
    "ultrathink": ["ultrathink", "deep think"]
  }
}

MCP bridge config

Project MCP bridge definition lives in .mcp.json:

{
  "mcpServers": {
    "t": { "command": "node", "args": ["${DROID_PLUGIN_ROOT}/bridge/mcp-server.cjs"] },
    "x": { "command": "node", "args": ["${DROID_PLUGIN_ROOT}/bridge/codex-server.cjs"] },
    "g": { "command": "node", "args": ["${DROID_PLUGIN_ROOT}/bridge/gemini-server.cjs"] }
  }
}

Model IDs (Supported)

oh-my-droid supports explicit custom model IDs:

  • custom:gpt-5.2-codex-mini-0
  • custom:gpt-5.2-1
  • custom:gpt-5.2-codex-2
  • custom:gpt-5.3-codex-3
  • custom:claude-haiku-4.5-4
  • custom:claude-sonnet-4.5-5
  • custom:claude-opus-4.5-6
  • custom:gemini-3-flash-7
  • custom:gemini-3-pro-8

Droid defaults are defined in:

  • droids/*.md (frontmatter model)
  • src/agents/*.ts
  • src/agents/definitions.ts
  • src/config/loader.ts

Development

Requirements

  • Node.js >= 20
  • npm

Build and test

npm install
npm run build
npm run lint
npm test

Useful scripts

npm run dev
npm run test:coverage
npm run sync-metadata

Project Structure

  • src/ core TypeScript source
  • droids/ droid prompts
  • skills/ skill definitions
  • commands/ command wrappers
  • hooks/ hook templates
  • bridge/ compiled MCP bridge servers
  • docs/ detailed references and architecture

Documentation

  • docs/REFERENCE.md
  • docs/ARCHITECTURE.md
  • docs/FEATURES.md
  • docs/MIGRATION.md
  • docs/COMPATIBILITY.md

License

MIT