{
  "markdown": "<div align=\"center\">\n\n[![API contract tests](https://img.shields.io/github/actions/workflow/status/shipeasy-ai/shipeasy/contract-tests.yml?branch=main&style=flat-square&label=API%20contract%20tests&logo=github)](https://github.com/shipeasy-ai/shipeasy/actions/workflows/contract-tests.yml)\n[![Skills contract](https://img.shields.io/github/actions/workflow/status/shipeasy-ai/shipeasy/skills-contract.yml?branch=main&style=flat-square&label=Skills%20contract%20%28CLI%20%C2%B7%20MCP%20%C2%B7%20SDK%29&logo=github)](https://github.com/shipeasy-ai/shipeasy/actions/workflows/skills-contract.yml)\n[![Production health probe](https://img.shields.io/github/actions/workflow/status/shipeasy-ai/shipeasy/prod-probe.yml?branch=main&style=flat-square&label=Production%20health%20probe&logo=github)](https://github.com/shipeasy-ai/shipeasy/actions/workflows/prod-probe.yml)\n\n<img src=\"./assets/hero.svg\" alt=\"Shipeasy — ship experiments 10× faster, just by asking your AI agent\" width=\"100%\" />\n\n<br/>\n\n<img src=\"./assets/hero.gif\" alt=\"Shipeasy in action — spinning up a feature flag from a single sentence to your AI agent\" width=\"100%\" />\n\n<br/>\n\n**Feature flags · kill switches · dynamic configs · A/B experiments · metrics · i18n — spun up from a single sentence to your AI coding agent.**\n\n[![Website](https://img.shields.io/badge/shipeasy.ai-7c3aed?style=flat-square&logo=safari&logoColor=white)](https://shipeasy.ai)\n[![Docs](https://img.shields.io/badge/docs-a78bfa?style=flat-square&logo=readthedocs&logoColor=white)](https://docs.shipeasy.ai)\n\n[**Get started →**](#install-in-12-seconds) &nbsp;·&nbsp; [Website](https://shipeasy.ai) &nbsp;·&nbsp; [Docs](https://docs.shipeasy.ai) &nbsp;·&nbsp; [Command reference](./docs/reference.md)\n\n</div>\n\n---\n\n## What is Shipeasy?\n\nShipeasy is the **AI-native experimentation platform**. Feature flags,\nkill switches, dynamic configs, A/B tests, metrics and translations — all\ncontrollable from where you already work: a sentence to your AI coding agent.\n\n> *\"Ship the new pricing page behind a flag at 5%.\"*\n> *\"Add a kill switch for checkout in case it breaks.\"*\n> *\"Run an A/B test on the signup button and tell me which wins.\"*\n\nNo dashboards to learn, no SDK boilerplate to hand-write. Shipeasy installs as\na **plugin into your coding agent** and an **MCP server**, so Claude Code (and\n70+ other agents) can create the flag, instrument the metric, wire the SDK call,\nand roll it out — end to end, from plain English.\n\nThis directory is the source-of-truth for that plugin marketplace.\n**One plugin tree, many hosts** — the same `shipeasy/skills/` directory and the\nsame `shipeasy` MCP server feed every coding agent below. Each host gets a tiny\nmanifest that *points at* the shared files; nothing is duplicated.\n\n## Why teams use it\n\n- 🚀 **From one sentence to shipped.** Describe what you want; the agent creates\n  the gate/config/experiment, instruments the event, and edits the call site.\n- 🎛️ **The whole release toolkit.** Feature flags, kill switches, dynamic\n  configs, A/B experiments, event metrics and i18n — one SDK, one key per\n  entrypoint, one install.\n- 📊 **Statistics that won't lie to you.** Sequential testing, SRM detection,\n  auto-ramp guardrails and holdouts come built in — no stats degree required.\n- ⚡ **Edge-fast, globally.** Built on Cloudflare Workers + KV with infinite-TTL\n  CDN caching and explicit purge — flag reads never touch a database on the hot\n  path.\n- 🤖 **Works with your agent, not against it.** Native plugins for Claude Code,\n  Codex and Copilot CLI; shared skills + MCP for everything else.\n- 🛟 **Closes the loop.** An operational inbox turns bug reports, feature\n  requests, production errors and metric alerts into one queue your agent can\n  burn down — even on a schedule, unattended.\n\n## Install in 12 seconds\n\n```bash\nnpm install -g @shipeasy/cli\nshipeasy setup\n```\n\nThat's it. `shipeasy setup` detects your coding agent, installs the right\nintegration for it (native plugin where one exists, shared skills + MCP\neverywhere else), authenticates, binds the repo to a project, mints keys and\ninstalls `@shipeasy/sdk`. One command, every host — then just talk to your agent.\n\n<details>\n<summary><b>Prefer to wire the agent integration yourself?</b> Per-host install commands</summary>\n\nThere are two install tiers. **Tier 1** hosts have a native plugin system, so\none command bundles skills + MCP. **Tier 2** hosts (70+ agents) take the same\nshared skills via the\n[`vercel-labs/skills`](https://github.com/vercel-labs/skills) CLI plus a small\nMCP config snippet. (`shipeasy setup` above does the right one for you.)\n\n### Tier 1 — one-command plugin install\n\n| Agent | Install |\n| --- | --- |\n| **Claude Code** | `claude plugin marketplace add shipeasy-ai/shipeasy` → `claude plugin install shipeasy@shipeasy` |\n| **Codex** | `codex plugin marketplace add shipeasy-ai/shipeasy` → `codex plugin add shipeasy@shipeasy` (or, in the TUI, `/plugin marketplace add shipeasy-ai/shipeasy` → `/plugin add shipeasy@shipeasy`) |\n| **GitHub Copilot CLI** | `copilot plugin marketplace add shipeasy-ai/shipeasy` → `copilot plugin install shipeasy@shipeasy` |\n\n### Tier 2 — skills + MCP (Cursor, Windsurf, Cline, Gemini, OpenCode, Continue, …)\n\n```bash\n# 1. skills — installs all 17 shipeasy-* skills\nnpx skills add https://github.com/shipeasy-ai/shipeasy -a <agent>\n\n# 2. MCP — add the shipeasy server to that agent's MCP config:\n#    { \"mcpServers\": { \"shipeasy\": { \"command\": \"npx\", \"args\": [\"-y\", \"@shipeasy/mcp@latest\"] } } }\n```\n\n`<agent>` is e.g. `opencode`, `cursor`, `windsurf`, `cline`, `gemini-cli`,\n`continue`, `github-copilot`. The full per-host list, exact MCP file paths and\nformats live in **[`INSTALL.md`](./INSTALL.md)** (also published at\n<https://docs.shipeasy.ai/get-started/agents>).\n\n</details>\n\n## Then: \"set up shipeasy\"\n\nInstalling the plugin registers the skills and MCP tools — it does **not** run\nany shell commands. To go live:\n\n1. **Run `shipeasy setup`** (or say *\"set up shipeasy\"*) — one command detects\n   your subprojects, installs `@shipeasy/sdk`,\n   authenticates, binds the repo to a project, mints keys, installs the SDK +\n   feature how-to skills into your agents, offers the modules + devtools overlay,\n   and emits `shipeasy-wiring.md` with the remaining code steps.\n2. **Turn on the modules you want** — `shipeasy setup` offers them, or enable one\n   directly with `shipeasy install <group>`:\n   - **`shipeasy install flags`** — flags + configs + kill switches +\n     experiments + events (the whole decide-at-runtime platform, one pass).\n   - **`shipeasy install ops`** — feedback (bugs + feature requests) +\n     production errors + alerts.\n   - **`shipeasy install i18n`** — translations.\n\nThe matching per-area how-to skills (`shipeasy-flags`, `shipeasy-ops`,\n`shipeasy-i18n`) are installed alongside. After that, just talk to your agent.\n\n```text\nYou ▸ Ship a feature gate for the new pricing page, rolled out to 5% of users.\nAgent ▸ Created gate `new_pricing_page` (rollout 5%). Add gates.check(\"new_pricing_page\")\n        at apps/web/app/pricing/page.tsx:12 — done. Want me to bump it to 25%?\n```\n\n## Works with your agent\n\n| | |\n| --- | --- |\n| **Native plugin (Tier 1)** | Claude Code · Codex · GitHub Copilot CLI |\n| **Skills + MCP (Tier 2)** | Cursor · Windsurf · Cline · Gemini CLI · OpenCode · Continue · OpenClaw · 70+ more |\n\nAll 11 skills (9 area guides + 2 multi-step workflow skills) and the\n`shipeasy` MCP server port to *every* agent — the flows trigger from\nnatural-language phrasing everywhere, and Claude Code additionally exposes each\nskill as a `/shipeasy:<skill-name>` command. Skills and MCP are *referenced,\nnever copied*.\n\n## Learn more\n\n- 📖 **[Skill reference](./docs/reference.md)** — every skill, its\n  auto-triggers, MCP tool and CLI mapping, plus the headline workflows.\n- 🧩 **[`INSTALL.md`](./INSTALL.md)** — full per-agent install reference (70+ hosts).\n- ⏰ **Trigger install guide** — `shipeasy ops trigger create <provider> --help`\n  (also at <https://docs.shipeasy.ai/get-started/triggers>) — set up unattended\n  scheduled triggers that burn down your ops inbox and open one PR per item.\n- 🌐 **[shipeasy.ai](https://shipeasy.ai)** · **[docs.shipeasy.ai](https://docs.shipeasy.ai)**\n\n---\n\n<div align=\"center\">\n<sub>Built on Cloudflare Workers · <a href=\"https://shipeasy.ai\">shipeasy.ai</a> · Free to start.</sub>\n</div>\n",
  "bytes": 8387,
  "sha": "571495225387c620fe65a229176b7cce2fed0cce77b93a07da4a436603626be2",
  "repo_slug": "shipeasy-ai/shipeasy",
  "fonte": "repo",
  "truncated": false,
  "api": "https://agentalog.com/api/listings/mcp_ai_shipeasy_mcp_4d33e892/readme"
}