What problem does it solve? Setting up feature flags and A/B tests in Next.js or SvelteKit involves many moving parts: installing the SDK, linking a Vercel project, pulling environment variables, declaring flags in code, wiring adapters, and managing rollouts via CLI. This Skill guides the AI through each step end-to-end so nothing is missed or left as a manual follow-up. ## Core Features & Use Cases - SDK Setup & Flag Creation: Installs flags and @flags-sdk/vercel, links the project, pulls OIDC credentials, and declares flags with flag() and vercelAdapter. - Provider Adapters: Connects flags to Vercel Flags, Statsig, LaunchDarkly, PostHog, GrowthBook, Flagsmith, OpenFeature, and custom adapters. - Precompute & Static Pages: Implements the precompute pattern with middleware so flagged pages stay static and CDN-served. - Use Case: Ask the AI to add a summer-sale boolean flag to your Next.js app — it runs vercel flags create, pulls env vars, declares the flag in flags.ts, and wires it into your page. ## Quick Start Set up the Flags SDK in my Next.js project and create a boolean feature flag called show-banner using Vercel Flags.