OpenFeature vendor-agnostic feature flag SDK with standardized API across languages. Covers SDK installation, flag evaluation, providers, and hooks. Use when implementing feature flags, A/B testing, canary releases, or when user mentions OpenFeature, feature toggles, or progressive rollouts.
View on GitHublaurigates/claude-plugins
configure-plugin
January 24, 2026
Select agents to install to:
npx add-skill https://github.com/laurigates/claude-plugins/blob/main/configure-plugin/skills/openfeature/SKILL.md -a claude-code --skill openfeatureInstallation paths:
.claude/skills/openfeature/# OpenFeature SDK Integration Vendor-agnostic feature flag SDK providing standardized API across languages and providers. Use when implementing feature flags, A/B testing, canary releases, or progressive rollouts with any feature flag backend. ## When to Use **Automatic activation triggers:** - User mentions "feature flags", "feature toggles", or "feature management" - User asks about A/B testing or canary releases - User wants to implement progressive rollouts - Project has OpenFeature SDK dependencies - User mentions OpenFeature, flagd, or vendor-agnostic flags **Related skills:** - `go-feature-flag` - Specific GO Feature Flag provider details - `launchdarkly` - LaunchDarkly provider integration ## Core Concepts ### Architecture ``` ┌─────────────────────────────────────────────────────────────┐ │ Application Code │ ├─────────────────────────────────────────────────────────────┤ │ OpenFeature SDK (API) │ │ ┌─────────────┬──────────────┬─────────────┬─────────────┐ │ │ │ getBool() │ getString() │ getNumber()│ getObject()│ │ │ └─────────────┴──────────────┴─────────────┴─────────────┘ │ ├─────────────────────────────────────────────────────────────┤ │ Provider │ │ ┌─────────────────────────────────────────────────────────┐ │ │ │ GO Feature Flag │ flagd │ LaunchDarkly │ Split │ etc │ │ │ └─────────────────────────────────────────────────────────┘ │ ├─────────────────────────────────────────────────────────────┤ │ Flag Source │ │ ┌─────────────────────────────────────────────────────────┐ │ │ │ File │ S3 │ GitHub │ API │ ConfigMap │ │ │ └─────────────────────────────────────────────────────────┘ │ └─────────────────────────────────────────────────────────────┘ ``` ### Key Components 1. **API** - Standardized interface for flag evaluation 2. **Pr