# Flag Metadata

> 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…

- **Type:** Skill
- **Install:** `agentstack add skill-growthbook-skills-flag-metadata`
- **Verified:** Yes — security-reviewed for prompt injection and unsafe behavior
- **Seller:** [growthbook](https://agentstack.voostack.com/s/growthbook)
- **Installs:** 0
- **Category:** [Finance & Payments](https://agentstack.voostack.com/c/finance-and-payments)
- **Latest version:** 0.1.0
- **License:** MIT
- **Upstream author:** [growthbook](https://github.com/growthbook)
- **Source:** https://github.com/growthbook/skills/tree/main/skills/flag-metadata

## Install

```sh
agentstack add skill-growthbook-skills-flag-metadata
```

Requires the [AgentStack CLI](https://agentstack.voostack.com/docs/cli). Works with Claude Code, Cursor, and any MCP-compatible agent.

## 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

```bash
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:

```bash
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

```bash
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:

```json
{
  "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.

- **Author:** [growthbook](https://github.com/growthbook)
- **Source:** [growthbook/skills](https://github.com/growthbook/skills)
- **License:** MIT

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

## Pricing

- **Free** — Free

## Security capabilities

Automated source analysis of v0.1.0 — what this tool can access:

- **Network access:** no
- **Filesystem access:** no
- **Shell / process execution:** no
- **Environment & secrets:** yes
- **Dynamic code execution:** no

*"Yes" means the capability is present in the source — more access means more to trust, not that it is unsafe.*


## Versions

- **0.1.0** — security scan: passed — Imported from the upstream source.

## Links

- Listing page: https://agentstack.voostack.com/l/skill-growthbook-skills-flag-metadata
- Seller: https://agentstack.voostack.com/s/growthbook
- Browse the marketplace: https://agentstack.voostack.com/browse

---
Listed on AgentStack — the marketplace for AI agent skills and MCP servers. Every listing is security-reviewed. Creators keep 70%.
