
launchdarkly / experimental-agent-skills
A skill package that teaches your agent 1 capability โ every one documented and browsable below, no GitHub required ยท by launchdarkly.
Each skill below is one capability this package teaches your agent. Install the whole package, or open a skill to install just that one.
experimental-agent-skills
A publicly available collection of experimental Cursor Agent Skills maintained by LaunchDarkly. This repository is used to prototype, test, and iterate on new skills before promoting them to stable channels.
What are Agent Skills?
Agent Skills are markdown files (SKILL.md) that teach Cursor's AI agent how to perform specialized tasks โ querying internal systems, following team workflows, generating artifacts in a specific format, or integrating with external tools. Skills are loaded on-demand when the agent determines they are relevant to a request.
Using skills from this repo
Via CLI (recommended)
Use npx skills to install directly from this repo. No install required.
# Install a specific skill by name
npx skills add launchdarkly/experimental-agent-skills --skill onboarding -y
# Install all skills from this repo
npx skills add launchdarkly/experimental-agent-skills -yThe --skill value must match the name field in the skill's SKILL.md frontmatter. Add -a cursor (or any other supported agent) to target a specific agent; omit it to be prompted.
Manually
Skills can also be installed by copying the skill directory directly:
| Scope | Location | Availability |
|---|---|---|
| Personal | ~/.cursor/skills/<skill-name>/ | All your projects |
| Project | .cursor/skills/<skill-name>/ | Anyone using the repository |
Copy a skill directory (e.g. skills/onboarding/) into the appropriate location above. Cursor will automatically detect it.
Repository structure
experimental-agent-skills/
โโโ skills/
โโโ <skill-name>/
โโโ SKILL.md # Required โ main skill instructions and metadata
โโโ reference.md # Optional โ detailed documentation
โโโ examples.md # Optional โ usage examples
โโโ scripts/ # Optional โ utility scriptsFor example, an onboarding skill would live at skills/onboarding/SKILL.md.
Contributing
See CONTRIBUTING.md for full authoring guidelines, the skill quality checklist, and PR conventions.
Skills in this repository are experimental โ they may change, be renamed, or be removed as they are refined. Stable, production-ready skills are published in launchdarkly/ai-tooling.
Resources
Install the whole package (1 skills):
npx skills add https://github.com/launchdarkly/experimental-agent-skillsOr install a single skill:
npx skills add https://github.com/launchdarkly/experimental-agent-skills --skill <name>Pick the skill name from the Skills tab โ each entry there installs independently.