What problem does it solve? Rolling out features safely and running A/B tests requires wiring flag providers, server-side evaluation, and static page delivery, which is error-prone to set up manually. This Skill guides the full workflow of declaring flags as code, connecting providers, and keeping pages static. ## Core Features & Use Cases - End-to-end flag creation: Installs the flags package, registers flags via the vercel flags CLI, pulls environment variables, and declares flags with vercelAdapter in one guided workflow. - Multi-provider adapters: Connects flags to Vercel Flags, Statsig, LaunchDarkly, PostHog, GrowthBook, Hypertune, Flagsmith, Reflag, OpenFeature, and more, or supports writing custom adapters. - Precompute pattern for static pages: Evaluates flags in middleware and encodes results into URLs so marketing pages stay static and CDN-served. - Use Case: A developer wants to gate a new dashboard behind a feature flag. The Skill installs the SDK, runs vercel flags add, declares the flag with identify for user targeting, and sets up Flags Explorer in the Vercel Toolbar. ## Quick Start Create a new boolean feature flag called 'new-dashboard' using the Flags SDK and wire it into my Next.js app.