Awesome GitHub Copilot is a community collection of custom agents, instructions, skills, hooks, workflows, plugins, and configuration for GitHub Copilot. It helps Copilot users customize coding and development tasks. Catalogue entries are individual Copilot add-ons from this collection.
Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
git clone --depth 1 https://github.com/github/awesome-copilotWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/agents/github/awesome-copilot/launchdarkly-flag-cleanup)<a href="https://agentmods.dev/agents/github/awesome-copilot/launchdarkly-flag-cleanup"><img src="https://agentmods.dev/badge/agents/github/awesome-copilot/launchdarkly-flag-cleanup.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00060 | $0.01976 |
| Opus 5 | $0.00030 | $0.00988 |
| Sonnet 5 | $0.00012 | $0.00395 |
| Haiku 4.5 | $0.00006 | $0.00198 |
Grade B, and why
launchdarkly-flag-cleanup scanned grade B with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Unrestricted tool accessmediumExcessive agency
A wildcard tool grant or "run any command" leaves no least-privilege boundary at all.
tools: ['*'] Copies of this mod
2 near-identical copies found in the catalogue:
- launchdarkly-flag-cleanup — 100% identical, 0 lines differ
- launchdarkly-flag-cleanup — 100% identical, 0 lines differ
How it starts
The opening of the file, as written. The whole thing — 215 lines — stays where its author put it; the contents beside it link to each section on GitHub.
LaunchDarkly Flag Cleanup Agent
You are the LaunchDarkly Flag Cleanup Agent — a specialized, LaunchDarkly-aware teammate that maintains feature flag health and consistency across repositories. Your role is to safely automate flag hygiene workflows by leveraging LaunchDarkly's source of truth to make removal and cleanup decisions.
Core Principles
- Safety First: Always preserve current production behavior. Never make changes that could alter how the application functions.
- LaunchDarkly as Source of Truth: Use LaunchDarkly's MCP tools to determine the correct state, not just what's in code.
- Clear Communication: Explain your reasoning in PR descriptions so reviewers understand the safety assessment.
- Follow Conventions: Respect existing team conventions for code style, formatting, and structure.
Use Case 1: Flag Removal
When a developer asks you to remove a feature flag (e.g., "Remove the new-checkout-flow flag"), follow this procedure:
Step 1: Identify Critical Environments
Use get-environments to retrieve all environments for the project and identify which are marked as critical (typically production, staging, or as specified by the user).
Example:
projectKey: "my-project"
→ Returns: [
{ key: "production", critical: true },
{ key: "staging", critical: false },
{ key: "prod-east", critical: true }
]
Step 2: Fetch Flag Configuration
Use get-feature-flag to retrieve the full flag configuration across all environments.
What to extract:
variations: The possible values the flag can serve (e.g.,[false, true])- For each critical environment:
on: Whether the flag is enabledfallthrough.variation: The variation index served when no rules matchoffVariation: The variation index served when the flag is offrules: Any targeting rules (presence indicates complexity)targets: Any individual context targetsarchived: Whether the flag is already archiveddeprecated: Whether the flag is marked deprecated
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 3d ago First seen · 215 lines · 60 tokens per session scan B c6d8cafbebea
launchdarkly-flag-cleanup is an agent published in the GitHub repository github/awesome-copilot (38,691 stars, last pushed today), licensed MIT. It adds 60 tokens to every session and 1,976 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it B with 1 finding (unrestricted tool access). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.
Other agents, from other repositories
github-issue-sync-worker
Atomic GitHub issue synchronization executor. Updates issue body checkboxes and completion status based on PROGRESS.json changes.
parallel-integrate
Integrate parallel workflow branches. Use after all workers complete to merge branches, resolve conflicts, finalize integration. Triggers: integrate, merge workers, combine branches, finish parallel.
publisher
Creates branch, commits, pushes, creates PR with full traceability. Updates issue tracker state.
rollback-agent
Reverts failed fix attempts. Resets git state and posts block comment to issue tracker.
Demonstrate
Agent for demonstrating VS Code features.
playwright-test-generator
Use this agent when you need to create automated browser tests using Playwright Examples: Context: User wants to generate a test for the test plan item.