AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Flag Metadata

skill-growthbook-skills-flag-metadata · by growthbook

Update the administrative metadata of an existing GrowthBook feature flag — description, owner, project, tags, custom fields, or JSON schema. Use when the user says "change the owner of flag X", "add tags to this flag", "move this flag to project Y", "update the description", "set a JSON schema on this flag", "rename the owner", or "tag this flag as payments". Goes through a draft revision and re…

No reviews yet
0 installs
10 views
0.0% view→install

Install

$ agentstack add skill-growthbook-skills-flag-metadata

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets Used
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-growthbook-skills-flag-metadata)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
1mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Flag Metadata? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

flag-metadata

Update the administrative metadata of an existing GrowthBook feature flag. Metadata changes (description, owner, project, tags, custom fields, JSON schema) go through a draft revision like all other flag changes — they need to be published before they take effect.

All API calls go through the bundled helper: ${CLAUDE_PLUGIN_ROOT}/scripts/gb-call. It needs GB_API_KEY set in env or written to ~/.config/growthbook/.env by /growthbook:setup.

Required inputs

Collect before starting:

  • Flag ID — kebab-case key. If the user gives a description, use flag-search to resolve it first.
  • What to change — one or more of: description, owner, project, tags, neverStale, customFields, jsonSchema.

Workflow

1. Fetch current metadata

gb-call GET /api/v2/features/

Show the user the current values for any fields they're about to change. Confirm the proposed new values before mutating.

2. Resolve the project ID (if changing project)

Project names aren't accepted by the API — resolve the name to an ID first:

gb-call GET /api/v1/projects

Match the user's project name to the returned list and use the id field.

3. Apply the metadata change via a draft

echo '' | gb-call PUT /api/v2/features//revisions/new/metadata -

The new magic version creates a fresh draft or layers onto an existing one atomically.

Supported fields and their types:

{
  "description": "",
  "owner": "",
  "project": "",
  "tags": ["", ""],
  "neverStale": true,
  "customFields": { "": "" },
  "jsonSchema": { "" }
}

Send only the fields the user wants to change. Do not echo back unchanged fields.

Capture the returned version number for the publish step.

4. Offer to publish

Ask: "Publish this metadata change now, or leave it as a draft?"

Metadata changes are low-risk — default to offering publish immediately. Hand off to flag-publish for the publish step, including any approval-required or merge-conflict handling.

Guardrails

  • Draft version threading. If a version number is already in context from a previous write skill in this session, use it explicitly (e.g. .../revisions/42/metadata) instead of new. This keeps all changes in the same draft. Fall back to new when starting fresh — it auto-creates or reuses the most recently updated open draft.
  • owner accepts email or u_... userId. Ask the user for the email or userId of the person to assign. If they want to assign it to themselves, ask for their email or userId — there's no env default to read it from. If the user gives a name rather than an email, ask for clarification — the API doesn't accept display names.
  • project is an ID, not a name. Always resolve project names via GET /api/v1/projects before setting. An empty string "" clears the project association (moves the flag back to org-wide scope).
  • tags replaces the full array. It's not additive — if the flag has existing tags and the user only wants to add one, fetch the current tags first, append, and send the full updated array.
  • neverStale: true opts the flag out of stale detection permanently. Use for kill switches, ops toggles, and license gates. Warn the user: once set, it won't appear in stale-flag reports even if untouched for months.
  • jsonSchema is enterprise-only. If the org doesn't have the feature, the API returns an error — surface it clearly.
  • Metadata changes still go through approval workflows. A seemingly innocuous description change can trigger the org's review gate. Use flag-publish and expect the same approval-required / merge-conflict failure modes as any other revision.
  • customFields keys must match the org's configured custom field definitions. If the key isn't recognized by the org, the API may silently drop it or error. Verify custom field key names are correct.

Endpoints used

  • GET /api/v2/features/:id — fetch current metadata for confirmation
  • GET /api/v1/projects — resolve project name to ID
  • PUT /api/v2/features/:id/revisions/new/metadata — apply metadata change to draft

Handoffs

  • flag-search — if the user gives a description instead of a flag ID
  • flag-default-value — to change what the flag serves when no rules match
  • flag-cleanup — to archive or delete the flag entirely
  • flag-publish — to publish the draft, handle approval-required (400) and merge conflicts (409)

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.