feature-flag-system▌
aj-geddes/useful-ai-prompts · updated Apr 8, 2026
Implement feature flags to decouple deployment from release, enable gradual rollouts, A/B testing, and provide emergency kill switches.
Feature Flag System
Table of Contents
Overview
Implement feature flags to decouple deployment from release, enable gradual rollouts, A/B testing, and provide emergency kill switches.
When to Use
- Gradual feature rollouts
- A/B testing and experiments
- Canary deployments
- Beta features for specific users
- Emergency kill switches
- Trunk-based development
- Dark launching
- Operational flags (maintenance mode)
- User-specific features
Quick Start
Minimal working example:
interface FlagConfig {
key: string;
enabled: boolean;
description: string;
rules?: FlagRule[];
variants?: FlagVariant[];
createdAt: Date;
updatedAt: Date;
}
interface FlagRule {
type: "user" | "percentage" | "attribute" | "datetime";
operator: "in" | "equals" | "contains" | "gt" | "lt" | "between";
attribute?: string;
values: any[];
}
interface FlagVariant {
key: string;
weight: number;
value: any;
}
interface EvaluationContext {
userId?: string;
// ... (see reference guides for full implementation)
Reference Guides
Detailed implementations in the references/ directory:
| Guide | Contents |
|---|---|
| Feature Flag Service (TypeScript) | Feature Flag Service (TypeScript) |
| React Hook for Feature Flags | React Hook for Feature Flags |
| Feature Flag with Analytics | Feature Flag with Analytics |
| LaunchDarkly-Style SDK | LaunchDarkly-Style SDK |
| Admin UI for Feature Flags | Admin UI for Feature Flags |
Best Practices
✅ DO
- Use descriptive flag names
- Document flag purpose and lifecycle
- Implement gradual rollouts
- Track flag evaluations
- Clean up old flags regularly
- Use feature flags for experiments
- Implement kill switches for critical features
- Test both enabled and disabled states
- Use consistent hashing for stable rollouts
- Provide admin UI for non-technical users
❌ DON'T
- Use flags for permanent configuration
- Accumulate technical debt with old flags
- Skip flag cleanup
- Make flags too granular
- Hard-code flag checks everywhere
- Skip analytics and monitoring
Discussion
Product Hunt–style comments (not star reviews)- No comments yet — start the thread.
Ratings
4.6★★★★★45 reviews- ★★★★★Nia Jackson· Dec 20, 2024
feature-flag-system fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
- ★★★★★Anika Tandon· Dec 16, 2024
feature-flag-system has been reliable in day-to-day use. Documentation quality is above average for community skills.
- ★★★★★Ganesh Mohane· Dec 12, 2024
Solid pick for teams standardizing on skills: feature-flag-system is focused, and the summary matches what you get after install.
- ★★★★★Noah Martinez· Dec 8, 2024
We added feature-flag-system from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
- ★★★★★Noah Mehta· Nov 27, 2024
Solid pick for teams standardizing on skills: feature-flag-system is focused, and the summary matches what you get after install.
- ★★★★★Amelia Rahman· Nov 23, 2024
feature-flag-system is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
- ★★★★★Sophia Desai· Nov 11, 2024
feature-flag-system has been reliable in day-to-day use. Documentation quality is above average for community skills.
- ★★★★★Daniel Dixit· Nov 7, 2024
feature-flag-system fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
- ★★★★★Rahul Santra· Nov 3, 2024
We added feature-flag-system from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
- ★★★★★Noah Robinson· Oct 26, 2024
We added feature-flag-system from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
showing 1-10 of 45