From 13c79ebc00e54bd17531c66ceafd3dd7cb5a8889 Mon Sep 17 00:00:00 2001 From: Vincent Derks Date: Wed, 11 Mar 2026 16:35:34 +0100 Subject: [PATCH 1/3] Refer to vercel-cli skill for flag manipulation --- skills/flags-sdk/references/providers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skills/flags-sdk/references/providers.md b/skills/flags-sdk/references/providers.md index ae7cbabc..215bd16e 100644 --- a/skills/flags-sdk/references/providers.md +++ b/skills/flags-sdk/references/providers.md @@ -146,7 +146,7 @@ vercel flags enable my-feature --environment production vercel flags disable my-feature --environment production ``` -`enable` and `disable` only work with boolean flags. For other flag types, configure values in the Vercel dashboard. +`enable` and `disable` only work with boolean flags. For other flag types, see the vercel-cli skill #### Inspect and list flags From 35c08e2be4caf394458aeca2fcd4081992c2b014 Mon Sep 17 00:00:00 2001 From: Vincent Derks Date: Wed, 11 Mar 2026 16:46:03 +0100 Subject: [PATCH 2/3] Added set command to examples --- skills/flags-sdk/references/providers.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/skills/flags-sdk/references/providers.md b/skills/flags-sdk/references/providers.md index 215bd16e..78d8ebd2 100644 --- a/skills/flags-sdk/references/providers.md +++ b/skills/flags-sdk/references/providers.md @@ -144,9 +144,13 @@ vercel flags enable my-feature --environment production # Disable in production vercel flags disable my-feature --environment production + +# Change string variant in production +vercel flags set my-feature -e production --variant my-variant ``` -`enable` and `disable` only work with boolean flags. For other flag types, see the vercel-cli skill +`enable` and `disable` only work with boolean flags. For changing the state of other flag types, use the set command. Use the vercel-cli skill for full reference. + #### Inspect and list flags From dea3528597037a7bd2f7344e8911a67ba4a79ced Mon Sep 17 00:00:00 2001 From: Vincent Derks Date: Wed, 11 Mar 2026 16:48:39 +0100 Subject: [PATCH 3/3] Apply suggestion from @chriswdmr Co-authored-by: Chris <7249920+chriswdmr@users.noreply.github.com> --- skills/flags-sdk/references/providers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skills/flags-sdk/references/providers.md b/skills/flags-sdk/references/providers.md index 78d8ebd2..8ff7551a 100644 --- a/skills/flags-sdk/references/providers.md +++ b/skills/flags-sdk/references/providers.md @@ -149,7 +149,7 @@ vercel flags disable my-feature --environment production vercel flags set my-feature -e production --variant my-variant ``` -`enable` and `disable` only work with boolean flags. For changing the state of other flag types, use the set command. Use the vercel-cli skill for full reference. +`enable` and `disable` only work with boolean flags. For changing the state of other flag types, use the `set` command. Use the vercel-cli skill for full reference. #### Inspect and list flags