Skip to content

outofrange-consulting/omp-dev-team

Repository files navigation

omp-dev-team — an Oh-My-Pi marketplace

🌐 English · Français

Six independent Oh-My-Pi (OMP) plugins. Install any subset — they share nothing. A global installer sets up OMP and walks you through them.

Plugin What it does
dev-team Agentic dev team — orchestrator + 32 specialist/critic agents, the /specs/plan/build/pr workflow, strict TDD and human gates, ~78 skills, and blocking guard extensions. Port of bdfinst/agentic-dev-team (Bryan Finster). All-cloud tiers; keep the high-volume small tier cheap.
copilot-preset GitHub Copilot model preset — route OMP (and the dev-team tiers) through github-copilot to run on a Copilot license. Config-only: tier→model mapping, post-June-2026 AI-credit pricing comparison, and MAI-Code-1-Flash wired in.
token-diet Aggressive token reduction — ctx-wire (transparent command-output compression + secret scrub), CodeGraph (MCP symbol/call-graph queries instead of grep+read), a caveman terse-output skill, and a yagni minimal-code skill — layered on OMP's native compaction/astGrep.
azure-devops-fs Azure DevOps as a filesystem — read repos/files/PRs/diffs via ado:// URIs (paginated), PR gates/policies + CI (builds/logs/run), create/checkout/push/complete PRs, comment/vote. Backed by the Azure CLI (az + the azure-devops extension), PAT auth, SQLite read cache; works behind corporate TLS proxies.
cliproxy CLIProxyAPI as a model provider — point it at a CLIProxyAPI gateway (URL + API key); the installer lists the models and writes a cliproxy provider into ~/.omp/agent/models.yml with runtime discovery, usable as cliproxy/<model-id>.
datadog Datadog observability from the terminal — via the Datadog pup CLI (logs, metrics, traces/APM, monitors, incidents, dashboards, SLOs, RUM, security/audit, CI test visibility, LLM observability). One broad datadog skill drives pup; installer sets up pup + auth.

Quick start (recommended)

The global installer installs OMP, registers this marketplace, and interactively offers each plugin + its config, fixing your PATH at the end.

git clone https://github.com/outofrange-consulting/omp-dev-team
cd omp-dev-team
bash install.sh                 # Linux/macOS   (-y for non-interactive)
#   pwsh -File install.ps1      # Windows

Works out of the box / defaults: the global installer reinstalls the selected plugins to the latest and brings runtimes/OMP/tooling up to date by default (pass --no-update / -NoUpdate to keep tools already installed). It then merges the managed model-roles + skills defaults into ~/.omp/agent/config.yml and the team MCP servers into ~/.omp/agent/mcp.jsonanything you've already set is preserved (no clobber, no backup needed). With copilot-preset the tiers wire, via GitHub Copilot: smol/taskHaiku, default/planSonnet 4.6 (runs the dev-team orchestrator — non-trivial work goes research → plan → implement → review), slowOpus; without it, the same tiers on Anthropic ids. token-diet's ctx-wire + CodeGraph and the skills are enabled too. --no-config leaves your config + mcp.json untouched.

The only MCP server configured in ~/.omp/agent/mcp.json is github (enabled when a PAT is provided / $GITHUB_TOKEN is set). Context7 and Atlassian are used as CLI + skill, not MCP — ctx7 and acli (both installed by token-diet).

Lean startup context (out of the box). OMP loads every tool's JSON schema into the system prompt on every request, so a full dev-team install otherwise starts near ~29K tokens of fixed overhead (~18K of it "System tools"). The generated config now trims that without losing capability:

  • dev-team turns off the DAP debug tool and the Python/JS eval tool — no dev-team agent or command uses them (they go through bash + the systematic-debugging skill).
  • token-diet sets tools.discoveryMode: all so non-essential tool schemas are hidden behind OMP's on-demand discovery tool, keeping only the hot path (read, bash, edit, write, find, search, task, todo) always loaded. Hidden tools stay one discovery call away.

Together this drops startup context to ~20K (-31%). Tune the always-loaded set with tools.essentialOverride, or revert with --no-config / by editing ~/.omp/agent/config.yml.

Corporate proxies (Zscaler / Trend Micro under WSL): if a TLS-intercepting proxy breaks certificate checks, the UNIX installers give you two options:

  • Preferred — trust the corporate CA: --ca-file=/path/to/corp-root-ca.pem (or OMP_CA_FILE=…). Verification stays on; node/bun, git, curl/wget, Python and Go tools (Ollama model pulls) are pointed at your CA via NODE_EXTRA_CA_CERTS/SSL_CERT_FILE/CURL_CA_BUNDLE/GIT_SSL_CAINFO, and it's persisted to your shell profile so omp and ollama pull trust it later too. On WSL you don't even need the .pem--ca-from-windows exports the Windows trust store (incl. the corporate roots) automatically, and the global installer offers it when it detects WSL. To instead install the corporate CA into WSL's system trust store (so curl/git/node trust it natively, no env vars), run scripts/wsl-trust-zscaler.ps1 from Windows PowerShell — it uses wsl --user root (no sudo) and update-ca-certificates.
  • Escape hatch — bypass: --insecure-tls (or OMP_INSECURE_TLS=1) disables verification for that run (curl/wget incl. piped installers, git, node/bun/npm). It can't bypass Go/libcurl tools (Ollama, etc.) — use --ca-file for those.

The global installer propagates either choice to the plugin installers. Run the installers without sudo (everything is per-user: ~/.bun, ~/.local/bin, ~/.omp).

Manual install

omp plugin marketplace add outofrange-consulting/omp-dev-team   # or:  add ./
omp plugin install dev-team@omp-dev-team
omp plugin install copilot-preset@omp-dev-team
omp plugin install token-diet@omp-dev-team
omp plugin install azure-devops-fs@omp-dev-team
omp plugin install cliproxy@omp-dev-team
omp plugin install datadog@omp-dev-team

Important — extension modules. OMP does not load extension modules (a plugin's package.json omp.extensions) from a marketplace cache install — only skills/commands/agents/rules/MCP surface that way. The plugins whose core behavior is an extension — azure-devops-fs (the ado tool), dev-team (the blocking guards + model-routing), and cliproxy (the provider) — therefore need their installer to run too. The global install.sh and each plugin's install.sh/install.ps1 mirror those modules into OMP's native ~/.omp/agent/extensions/<plugin>/ dir (always discovered, survives config resets), so the ado tool / guards / provider actually load. A bare omp plugin install <name>@omp-dev-team alone will show the skill but not register the tool.

Each plugin ships its own install.sh + install.ps1 (installs that plugin's tools at their latest versions) — see its README:

  • dev-teambash plugins/dev-team/install.sh --apply-config (prereq check + config). All-cloud; no local backend.
  • copilot-presetbash plugins/copilot-preset/install.sh --apply-config, then omp/login → GitHub Copilot.
  • token-dietbash plugins/token-diet/install.sh (installs ctx-wire + CodeGraph, indexes your repos), then enable the codegraph MCP server.
  • azure-devops-fsbash plugins/azure-devops-fs/install.sh (installs the Azure CLI + azure-devops extension, prompts for org/project/PAT, runs az devops login), then restart omp so the ado tool loads.
  • cliproxybash plugins/cliproxy/install.sh --url=http://localhost:8317 --api-key=… (lists the gateway's models, writes the cliproxy provider to ~/.omp/agent/models.yml), then restart omp.
  • datadogbash plugins/datadog/install.sh (installs the Datadog pup CLI + sets up auth; --with-skills to also add pup's domain skills).

Layout

install.sh · install.ps1               # global installer (OMP + marketplace + per-plugin prompts)
.claude-plugin/marketplace.json        # catalog (pluginRoot ./plugins)
plugins/
  dev-team/         agents/ skills/ commands/ rules/ extensions/ .mcp.json
                    config.snippet.yml · install.sh · install.ps1
                    skills/dev-team-knowledge/  (registries, rubrics, model-routing.json)
  copilot-preset/   config.snippet.yml · pricing.md · skills/ · install.{sh,ps1}
  token-diet/       .mcp.json · rules/ · skills/ · install.{sh,ps1}
  azure-devops-fs/  extensions/ (ado.ts + lib/az.ts) commands/ skills/ rules/ knowledge/ · install.{sh,ps1}
  cliproxy/         extensions/ (cliproxy.ts) · skills/ · install.{sh,ps1}
  datadog/          skills/ (umbrella) · install.{sh,ps1}

Each plugin's extensions load from its own package.json omp.extensions; the guard/routing extensions resolve their data relative to the plugin (so they work whatever the consuming project's cwd is). Runtime state is written under the consuming project's .omp/state/.

Agent Package Manager (APM) & duplicate definitions

If you use Agent Package Manager and run apm compile --all, the same agents/skills/rules get written into .claude, .copilot, .cursor, .agents, … next to .omp. OMP does not load them multiple times — it de-duplicates by name (first match wins) before loading, so duplicates cost no extra tokens and are not double-registered:

  • agents / commands / skills are scanned only from .omp.claude.codex.gemini (project before user); identical skill files are additionally realpath-deduped. .copilot and .cursor are not scanned for these.
  • rules are name-deduped across providers native › agents › cursor › windsurf › cline; shadowed same-name rules are excluded from the active set.

Notes:

  • Don't delete the other directories. apm compile --all creates .claude / .copilot / .cursor on purpose for Claude Code / Copilot / Cursor, which need them. Removing them to "de-dupe" would break those tools — and OMP already ignores the extras.
  • OMP silently uses the highest-precedence copy and shadows the rest. To be sure OMP uses a specific variant, keep the canonical one in .omp/ (or .claude/). For skills you can also pin/exclude with skills.includeSkills / skills.ignoredSkills in your config.

Tested

Verified end-to-end and in CI (Linux/macOS/Windows — see .github/workflows/installers.yml): all install.sh pass bash -n; all install.ps1 parse under PowerShell 7; all manifests are valid JSON; the 8 dev-team extensions (plus the token-diet, azure-devops-fs, and cliproxy extension modules) compile under bun; ctx-wire, CodeGraph, and OMP install via the exact commands the scripts use; and all six plugins install through real OMP on each OS (omp plugin marketplace add ./omp plugin install <name>@omp-dev-team).

Credits

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors