LaunchDarkly Agent Skills

June 15, 2026 ยท View on GitHub

LaunchDarkly's public collection of agent skills and playbooks. These skills encode repeatable workflows for working with LaunchDarkly, so coding agents can execute common tasks safely and consistently.

What Is This Repo?

Agent Skills are modular, text-based playbooks that teach an agent how to perform a workflow. This repo is designed to be a public, open-source home for LaunchDarkly skills and to align with the emerging Agent Skills Open Standard.

Available Skills

Feature Flags

SkillDescription
feature-flags/launchdarkly-flag-commandResolve /flag style requests into fast flag lookup, detail, and disambiguation
feature-flags/launchdarkly-flag-discoveryAudit flags, find stale/launched flags, and assess removal readiness
feature-flags/launchdarkly-flag-createCreate new feature flags in a way that fits existing codebase patterns
feature-flags/launchdarkly-flag-targetingControl targeting, rollouts, rules, and cross-environment config
feature-flags/launchdarkly-flag-cleanupSafely remove flags from code using LaunchDarkly as the source of truth
feature-flags/launchdarkly-guarded-rolloutConfigure guarded rollouts with progressive traffic, metric monitoring, and rollback

AgentControl

SkillDescription
agentcontrol/configs-createCreate configs with variations for agent or completion mode
agentcontrol/migrateMigrate an app with hardcoded LLM prompts to AgentControl in five stages (extract, wrap, tools, tracking, evals)
agentcontrol/configs-updateUpdate and delete configs, manage lifecycle
agentcontrol/configs-variationsManage config variations for A/B testing
agentcontrol/toolsCreate and attach tools for function calling
agentcontrol/projectsCreate and manage projects to organize configs
agentcontrol/online-evalsAttach LLM-as-a-judge evaluators to configs
agentcontrol/configs-targetingConfigure targeting rules for config rollouts
agentcontrol/snippetsCreate and manage reusable prompt snippets across configs
agentcontrol/agent-graphsCreate and manage multi-agent graphs with routing and handoffs

Experiments

SkillDescription
experiments/launchdarkly-experiment-setupSet up experiments with metrics, treatments, and data collection

Metrics

SkillDescription
metrics/launchdarkly-metric-chooseSelect the right metric type for an experiment
metrics/launchdarkly-metric-createCreate metrics and instrument tracking events
metrics/launchdarkly-metric-instrumentAdd tracking calls to code for existing metrics

Install as a Claude Code Plugin

This repo is a Claude Code plugin. Installing it gives you all the skills above plus the LaunchDarkly MCP server.

  1. Add this repo as a plugin marketplace in Claude Code:
    /plugin marketplace add launchdarkly/ai-tooling
    
  2. Install the plugin:
    /plugin install launchdarkly@launchdarkly-ai-tooling
    
  3. Authenticate the LaunchDarkly MCP server when prompted with your API access token.

Once installed, skills are available as /launchdarkly:<skill-name> across all your projects, and the MCP server can read and modify your flags directly.

Onboarding

SkillDescription
onboardingEnd-to-end LaunchDarkly setup: kickoff roadmap, MCP, SDK install, first flag
onboarding/mcp-configureConfigure the LaunchDarkly hosted MCP server (OAuth, no API keys needed)
onboarding/sdk-installInstall and initialize the correct SDK via detect, plan, and apply sub-steps
onboarding/first-flagCreate a boolean flag, evaluate it, toggle on/off for end-to-end proof

Install as a Cursor Plugin

This repo is a Cursor plugin. Installing it gives you all the skills above plus the LaunchDarkly MCP server, so the agent can read and modify your flags directly.

  1. Open Cursor and go to Settings > Plugins.
  2. Search for LaunchDarkly in the marketplace, or install from the repo URL:
    https://github.com/launchdarkly/ai-tooling
    

Once installed, the skills and MCP server are available across all your projects.

Quick Start (Local)

# Clone the repo
git clone https://github.com/launchdarkly/ai-tooling.git
cd ai-tooling

# If your agent supports skills.sh installs:
npx skills add launchdarkly/ai-tooling

# Or manually copy a skill into your agent's skills path:
cp -r skills/feature-flags/launchdarkly-flag-cleanup <your-agent-skills-dir>/

Then ask your agent something like:

Which feature flags are stale and should be cleaned up?
Create a feature flag for the new checkout flow
Roll out dark-mode to 25% of users in production
Remove the `new-checkout-flow` feature flag from this codebase

Install via skills.sh CLI

npx skills add <owner/repo>

Contributing

See CONTRIBUTING.md for how to add new skills and the conventions we follow.

License

Apache-2.0