Pull unresolved CodeRabbit review threads from your PR and apply the fixes one at a time, treating every reviewer comment as untrusted input rather than an instruction.
LaunchDarkly Guarded RolloutSkill
Summary
Design a staged LaunchDarkly rollout — traffic steps, monitoring windows, regression thresholds and automatic rollback — and start it from your coding agent.
Features
- Designs staged rollouts with per-stage traffic weights and monitoring windows
- Selects regression metrics and thresholds, with notify or rollback per metric
- Starts, monitors and halts guarded rollouts through the LaunchDarkly MCP server
- Encodes LaunchDarkly's basis-point weights and millisecond windows so the agent stops guessing units
Install This Skill
Add this skill to your favorite AI agent in a few steps.
Skill Content
Usage Instructions
Learn how to use this skill with different AI agents.
Example Usage
Roll out the new-checkout-flow flag to production at 1% for an hour, then 10%, 50% and 100% over the next three days, and roll back automatically if the api-error-rate metric degrades by more than 5%.
Description
Shipping behind a flag is only half a release. This official LaunchDarkly skill teaches a coding agent the other half: turning a flag on gradually, watching the metrics that would tell you it went wrong, and rolling back on its own if they move.
The skill walks the agent through a full guarded rollout:
- Prepare — inspect the flag and its variation IDs, list the metrics available to monitor, and confirm the flag is on in the target environment with no rollout already running.
- Design the stages — a progression such as 1% for an hour (a smoke test for obvious crashes), 10% for a day (early metric signal), 50%, then 100%, each with its own monitoring window.
- Pick the metrics and thresholds — error rate, p99 latency, conversion — and decide per metric whether a breach should notify, roll back, or both.
- Start it via the
start-guarded-rolloutMCP tool, withstop-guarded-rolloutavailable to halt an active rollout immediately.
It also carries the unit conventions that are easy to get wrong from memory: rollout weights are thousandths (1000 = 1%, 100000 = 100%) and monitoring windows are milliseconds (3600000 = one hour, 604800000 = seven days).
Requirements
The skill drives the remotely hosted LaunchDarkly MCP server and needs start-guarded-rollout, get-flag and list-metrics available, with stop-guarded-rollout, toggle-flag and create-metric used opportunistically.
Source
Part of LaunchDarkly's official open-source agent-skills collection (Apache-2.0), which also covers flag creation, targeting, drift detection, stale-flag cleanup, experiments and AgentControl migrations. Installable as a Claude Code plugin or through the Skills CLI.
Related Skills
Google's official skill for driving the gcloud CLI safely from an agent: validate every command against its own help text, cap the output, and refuse the operations that should never run unattended.
Convex's official top-level agent skill — routes an agent to the right convex-* skill for the task and to a served capability catalogue that stays current without a reinstall.
Official Shopify skill for theme development in Liquid — teaches an agent the modern theme architecture of sections, blocks and snippets, and validates generated templates and schemas.