# Adform Taxonomy Governance

> >-

- **Type:** Skill
- **Install:** `agentstack add skill-adform-agentic-skills-adform-taxonomy-governance`
- **Verified:** Yes — security-reviewed for prompt injection and unsafe behavior
- **Seller:** [adform](https://agentstack.voostack.com/s/adform)
- **Installs:** 0
- **Category:** [Agent Skills](https://agentstack.voostack.com/c/agent-skills)
- **Latest version:** 0.1.0
- **License:** MIT
- **Upstream author:** [adform](https://github.com/adform)
- **Source:** https://github.com/adform/agentic-skills/tree/main/dist/claude/adform-agentic-skills/skills/adform-taxonomy-governance
- **Website:** https://site.adform.com

## Install

```sh
agentstack add skill-adform-agentic-skills-adform-taxonomy-governance
```

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

## About

# Adform naming and label taxonomy governance

Validates entity names against a convention pattern and flags missing or wrong label taxonomy
across campaigns. Read-only — it reports; the trafficker fixes.

## Connection & tooling

Runs on the Adform GraphQL MCP. Use `graphql_execute` to run queries. Keep calls sequential
(~1–2s apart).

---

## Naming convention audit

### List campaigns to audit

```graphql
{
  campaigns(
    advertisers: "71883"
    status: Active
    offset: 0
    limit: 50
  ) {
    campaigns { id name status type subType advertiserId startDate endDate }
    totalCount
  }
}
```

Apply the naming convention as a regex client-side — for example
`^[A-Za-z]+_\d{4}_Q[1-4]_[A-Za-z]+$` for a `Brand_Year_Quarter_Objective` pattern. Flag any
name that does not match and any case-insensitive duplicate within the advertiser scope.

---

## Label taxonomy audit

### Get label group definitions for an advertiser

```graphql
{ advertiserLabels(id: "71883") { labelGroups { id name labels { id name } } } }
```

### Get labels applied to a campaign

```graphql
{ campaignLabels(id: "3993873") { labelGroups { id name labels { id name } } } }
```

For each campaign, compare the applied label groups against the required set (e.g. Market,
Product, Funnel Stage) and flag any campaign missing a required group.

---

## Method

1. Pull the entity list for the advertiser in scope
2. Names: apply the agreed regex; collect mismatches and duplicates; suggest a corrected name
   where the intent is clear from the existing name
3. Labels: for each campaign, list which required label groups have no value applied

## Presenting

Two compliance tables. Naming: entity type, ID, name, PASS or FLAG, reason, suggested fix.
Labels: campaign, missing required label groups. Lead with the non-compliant count and the
items that need the most immediate attention. Every flagged row should be a clear action item
for the trafficking or operations owner.

## Source & license

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

- **Author:** [adform](https://github.com/adform)
- **Source:** [adform/agentic-skills](https://github.com/adform/agentic-skills)
- **License:** MIT
- **Homepage:** https://site.adform.com

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:** no
- **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-adform-agentic-skills-adform-taxonomy-governance
- Seller: https://agentstack.voostack.com/s/adform
- 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%.
