2. Manage Feature Flags
Purpose: Toggle runtime feature flags to enable or disable features without deploying. Use for gradual rollouts, A/B tests, or incident response.
Prerequisites:
- Admin access to the admin dashboard
Cost / Duration: $0 | 1-2 min
Prompt
Toggle a feature flag via the admin dashboard.
Step 1 — Open the feature flags page:
Navigate to https://admin.eko.day/feature-flags
(or localhost:3001/feature-flags locally).
Step 2 — Toggle the flag:
Click the toggle switch for the target feature flag.
Step 3 — Verify the change:
Confirm the flag state updated in the admin UI, then open the web app
and confirm the feature is enabled/disabled as expected.
If the flag change is not reflected, hard refresh the web app or clear
the client-side cache. If the flag is missing from the list, it needs
to be registered via a database migration.
Verification
- Flag toggle saves successfully in admin UI
- Feature behavior changes immediately in the web app
- No client-side cache issues (hard refresh if needed)
Related Prompts
- Seed Test Users — Create test users to verify flag behavior