From harness-fme
Gives a full status report for a feature flag — which environments it's active in, its current targeting rules, and whether it's been killed. Use this before deploying or debugging a flag.
How this skill is triggered — by the user, by Claude, or both
Slash command
/harness-fme:feature-flag-statusThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
If the user provided a flag name (e.g. `/feature-flag-status my-flag`), use it directly.
If the user provided a flag name (e.g. /feature-flag-status my-flag), use it directly.
If no flag name was given, ask: "Which feature flag do you want to check?"
If no workspace is specified, call list_workspaces and use the first result, or ask if there are multiple.
Call get_feature_flag with the workspace ID and flag name to get:
Call list_environments with the workspace ID to get all available environments (e.g. production, staging, development).
For each environment, call get_flag_definition with the workspace ID, environment ID, and flag name to get:
Structure the output as:
### Feature Flag: <flag-name>
**Workspace**: <workspace name>
**Default treatment**: <treatment>
**Tags**: <tags or "none">
#### Environment Status
| Environment | Status | Default Treatment |
|-------------|--------|-------------------|
| production | ✅ Active / 🔴 Killed | <treatment> |
| staging | ✅ Active / 🔴 Killed | <treatment> |
| ... | ... | ... |
#### Targeting Rules (<environment>)
<describe who gets what — e.g. "10% of users get treatment ON, rest get OFF">
Flag every environment where the flag is killed prominently.
If the flag is killed in an environment, offer to restore it via restore_feature_flag.
If the flag appears to be fully rolled out everywhere, offer to note it as a candidate for cleanup.
npx claudepluginhub kud/claude-plugins --plugin harness-fmeAudits LaunchDarkly feature flags to assess stale flags, flag debt, cleanup candidates, and overall flag health across environments.
Creates a feature flag management guide and lifecycle playbook covering taxonomy, rollout, monitoring, cleanup, and governance for a service or team.
Operational discipline for feature flags as production infrastructure: flag types, naming, targeting, rollout strategy, lifecycle, governance, stale flag management, and technical debt patterns.