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

Adform Taxonomy Governance

skill-adform-agentic-skills-adform-taxonomy-governance · by adform

>-

No reviews yet
0 installs
0 views
view→install

Install

$ agentstack add skill-adform-agentic-skills-adform-taxonomy-governance

✓ 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 No
  • 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-adform-agentic-skills-adform-taxonomy-governance)

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 Adform Taxonomy Governance? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

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

{
  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

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

Get labels applied to a campaign

{ 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

  1. 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.

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.