Install
openclaw skills install @chen6896qqwee/feature-flagsRemote feature flag / toggle system for AI agents — enable/disable features without redeploy. Distilled from Claude Code GrowthBook integration.
openclaw skills install @chen6896qqwee/feature-flagsDistilled from Claude Code GrowthBook integration. Remote feature toggle system that lets you enable/disable features, run A/B tests, and push configuration updates without redeploying.
`ash
python3 {baseDir}/flags.py --check new-ui
python3 {baseDir}/flags.py --list
python3 {baseDir}/flags.py --override new-ui=true
python3 {baseDir}/flags.py --poll-url http://localhost:8080/flags
python3 {baseDir}/flags.py --export `
json { "new-ui": { "default": false, "description": "New UI redesign", "rules": [ {"condition": "user_id == 'admin'", "value": true}, {"condition": "org == 'beta'", "value": true} ] }, "experimental-search": { "default": false, "rollout": 0.1, "description": "Experimental search v2 (10% rollout)" } }
Based on Claude Code GrowthBook integration: