Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
launchdarkly avatar

Snippets

  • 1.6k installs
  • 23 repo stars
  • Updated August 5, 2026
  • launchdarkly/agent-skills

snippets is a LaunchDarkly agent skill that creates and manages reusable prompt snippet blocks for developers who need consistent instructions, personas, and guardrails across multiple config variations.

About

snippets is an Apache-2.0 LaunchDarkly agent skill (version 0.1.0) for creating and managing prompt snippets—reusable text blocks referenced inside config variation prompts. The skill guides identifying reusable instruction text, creating snippets, wiring references into config variations, and verifying correct linkage. It requires the remotely hosted LaunchDarkly MCP server. Developers reach for snippets when multiple LaunchDarkly configs share common personas, guardrails, or system instructions and duplicating prompt text would cause drift. Claude or Cursor agents use it to generate high-quality reusable code-adjacent prompt blocks that follow consistent patterns across configs.

  • Instantly produces ready-to-paste code snippets for common agent tasks
  • Enforces consistent style and best practices across generated fragments
  • Reduces context window waste by avoiding repetitive explanations
  • Works with any language or framework the underlying model supports

Snippets by the numbers

  • 1,596 all-time installs (skills.sh)
  • +12 installs in the week ending Aug 4, 2026 (Skillselion tracking)
  • Ranked #766 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/launchdarkly/agent-skills --skill snippets

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs1.6k
repo stars23
Last updatedAugust 5, 2026
Repositorylaunchdarkly/agent-skills

How do you reuse prompt blocks across LaunchDarkly configs?

Quickly generate high-quality, reusable code snippets that follow consistent patterns when working with Claude, Cursor or other agents.

Who is it for?

Developers managing multiple LaunchDarkly agent configs who need DRY prompt instructions, personas, and guardrails.

Skip if: Single-config setups with unique prompts or teams not using LaunchDarkly config variations.

When should I use this skill?

The user wants to create prompt snippets, reference shared instructions in configs, or keep guardrails consistent across variations.

What you get

LaunchDarkly prompt snippet resources wired into config variation prompts with verified references.

  • prompt snippet resources
  • config variation references
  • verified snippet wiring

By the numbers

  • Apache-2.0 licensed skill version 0.1.0 in manifest metadata

Files

SKILL.mdMarkdownGitHub ↗

Config Prompt Snippets

You're using a skill that will guide you through creating and managing prompt snippets in LaunchDarkly. Your job is to identify reusable text, create snippets, reference them in config variations, and verify everything is wired correctly.

Prerequisites

This skill requires the remotely hosted LaunchDarkly MCP server to be configured in your environment.

Required MCP tools:

  • create-prompt-snippet -- create a new reusable text block
  • list-prompt-snippets -- browse existing snippets in the project
  • get-prompt-snippet -- inspect a specific snippet's content

Optional MCP tools:

  • update-prompt-snippet -- edit a snippet's text, name, or tags
  • delete-prompt-snippet -- permanently remove a snippet
  • update-ai-config-variation -- update variation prompts to reference snippets

Core Concepts

What Are Prompt Snippets?

Prompt snippets are named, versioned text blocks stored at the project level. They contain reusable pieces of prompt text — personas, guardrails, output format instructions, domain knowledge — that can be shared across multiple config variations.

When a snippet is updated, a new version is created. Config variations that reference the snippet can pick up the latest version, keeping all your configs in sync.

When to Use Snippets

ScenarioExample
Shared persona"You are a helpful customer support agent for Acme Corp..." used by 5 different configs
Safety guardrails"Never reveal internal pricing. Never generate code that accesses production databases."
Output format"Always respond in JSON with keys: answer, confidence, sources."
Domain knowledgeCompany-specific terminology, product names, or process descriptions
Regulatory textCompliance disclaimers that must appear in every response

When NOT to Use Snippets

  • Text that is unique to a single variation — just put it in the prompt directly
  • Dynamic content that changes per-request — use template variables instead
  • Entire prompts — snippets are building blocks, not complete prompts

Core Principles

1. Reusability First: Only create a snippet if the text will be used in 2+ places 2. Single Responsibility: Each snippet should cover one concern (persona OR guardrails, not both) 3. Descriptive Keys: Use keys like safety-guardrails, json-output-format, support-persona 4. Tag for Discovery: Add tags so teammates can find snippets by category 5. Verify References: After creating a snippet, confirm it appears in the project

Workflow

Step 1: Identify Reusable Text

Before creating snippets, understand what's shared:

1. List existing configs in the project using get-ai-config for each 2. Look for repeated text across variation prompts 3. Identify text that should stay consistent (guardrails, personas, formats) 4. Check existing snippets with list-prompt-snippets to avoid duplicates

Step 2: Create Snippets

Use create-prompt-snippet with:

  • key -- unique identifier (lowercase, hyphens, e.g. safety-guardrails)
  • name -- human-readable display name
  • text -- the reusable prompt text content
  • description (optional) -- explain when/why to use this snippet
  • tags (optional) -- categorize for discovery (e.g. ["guardrails", "safety"])
{
  "projectKey": "my-project",
  "key": "support-persona",
  "name": "Customer Support Persona",
  "text": "You are a friendly, knowledgeable customer support agent for Acme Corp. Always greet the customer by name when available. Be empathetic but concise. If you don't know the answer, say so honestly and offer to escalate.",
  "description": "Standard persona for all customer-facing support configs",
  "tags": ["persona", "support"]
}

Step 3: Verify

1. Use get-prompt-snippet to confirm the snippet was created with the correct text 2. Use list-prompt-snippets to see it in the project listing 3. Check that version is 1 for newly created snippets

Report results:

  • Snippet created with key, name, and text
  • Version number confirmed
  • Tags applied correctly

Step 4: Update Snippets (When Needed)

Use update-prompt-snippet to modify an existing snippet. Only pass the fields you want to change:

{
  "projectKey": "my-project",
  "snippetKey": "safety-guardrails",
  "text": "Updated guardrail text with new compliance requirements..."
}

Each update creates a new version. Existing config variations referencing the snippet can pick up the new version.

Edge Cases

SituationAction
Snippet key already existsUse get-prompt-snippet to check, then either update or choose a different key
Very long textSnippets can hold large blocks — but consider splitting into multiple snippets for modularity
Snippet referenced by configsUpdate carefully — changes propagate to all referencing configs
Deleting a referenced snippetWarn the user that configs will lose the reference. Use delete-prompt-snippet with confirm: true

What NOT to Do

  • Don't create snippets for text used in only one place
  • Don't put an entire prompt in a single snippet — break it into focused pieces
  • Don't delete snippets without checking which configs reference them
  • Don't duplicate existing snippets — check list-prompt-snippets first

Related skills

How it compares

Use snippets instead of configs-create when the task is factoring shared prompt text into reusable blocks rather than generating new feature flag definitions.

FAQ

What are prompt snippets in LaunchDarkly?

Prompt snippets in LaunchDarkly are reusable text blocks referenced inside config variation prompts. The snippets skill creates and manages them so common instructions, personas, and guardrails stay consistent across multiple configs without copy-paste drift.

Does snippets require the LaunchDarkly MCP server?

snippets requires the remotely hosted LaunchDarkly MCP server to create snippets and verify references in config variations. The skill is version 0.1.0 under Apache-2.0 and walks through identification, creation, wiring, and verification steps.

AI & Agent Buildingagentsautomation

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.