← Back to Skills Marketplace
sky-lv

Feature Toggle Manager

by SKY-lv · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ Security Clean
82
Downloads
0
Stars
1
Active Installs
1
Versions
Install in OpenClaw
/install feature-toggle-manager
Description
Feature flag management. Creates and toggles feature flags for A/B testing. Triggers: feature flag, a b test, toggle feature, abtesting.
README (SKILL.md)

Feature Flag Manager

Overview

Implements feature flags for controlled rollouts and A/B testing.

When to Use

  • User asks to "add a feature flag"
  • User wants to "A/B test" or "gradually roll out"

Implementation

if (isFeatureEnabled("new_checkout_flow", userId)) { renderNewCheckout(); } else { renderLegacyCheckout(); }

Rollout Strategy

1-5% = internal users 10-25% = beta users 25-50% = canary 100% = full rollout

Monitor: error rate, conversion, latency

Anti-Patterns

  • Do not use flags for permanent features
  • Limit active flags to under 20
  • Clean up flags after rollout
Usage Guidance
This skill is documentation-only: it provides patterns, a sample feature-check snippet, and rollout advice but contains no implementation or integrations. It cannot access your system or cloud by itself. If you expect a working feature-flag service, you'll need to connect or implement an actual provider (e.g., LaunchDarkly, Unleash) and supply appropriate credentials/env vars; review those integrations separately before granting any secrets. If you plan to let an agent act autonomously, add explicit checks and limits in the implementation to avoid accidental wide rollouts.
Capability Analysis
Type: OpenClaw Skill Name: feature-toggle-manager Version: 1.0.0 The skill bundle contains only documentation and conceptual code snippets for feature flag management. It lacks any executable scripts, network activity, or suspicious instructions, and its content is entirely consistent with its stated purpose in SKILL.md.
Capability Assessment
Purpose & Capability
Name and description match the content of SKILL.md (feature flag guidance). The skill does not request unrelated binaries, env vars, or config paths—everything requested (nothing) is proportionate to a documentation/help skill.
Instruction Scope
SKILL.md contains conceptual code snippets, rollout strategies, and best practices only. It does not instruct the agent to read files, call external endpoints, or access environment variables. There is no scope creep.
Install Mechanism
No install spec and no code files. This is the lowest-risk model (instruction-only); nothing will be downloaded or written to disk by the skill itself.
Credentials
Skill declares no required environment variables, credentials, or config paths. No sensitive data is requested or implied by the instructions.
Persistence & Privilege
always is false and model invocation is not disabled (normal defaults). The skill does not request elevated persistence or modify other skills/configurations.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install feature-toggle-manager
  3. After installation, invoke the skill by name or use /feature-toggle-manager
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
- Initial release of feature flag management skill. - Enables creation and toggling of feature flags for A/B testing and controlled rollouts. - Supports triggers like "feature flag," "A/B test," and "toggle feature." - Provides guidance on rollout strategies and best practices. - Includes recommendations for usage, monitoring, and cleanup.
Metadata
Slug feature-toggle-manager
Version 1.0.0
License MIT-0
All-time Installs 1
Active Installs 1
Total Versions 1
Frequently Asked Questions

What is Feature Toggle Manager?

Feature flag management. Creates and toggles feature flags for A/B testing. Triggers: feature flag, a b test, toggle feature, abtesting. It is an AI Agent Skill for Claude Code / OpenClaw, with 82 downloads so far.

How do I install Feature Toggle Manager?

Run "/install feature-toggle-manager" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Feature Toggle Manager free?

Yes, Feature Toggle Manager is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Feature Toggle Manager support?

Feature Toggle Manager is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Feature Toggle Manager?

It is built and maintained by SKY-lv (@sky-lv); the current version is v1.0.0.

💬 Comments