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

Adform Channel Conflict Audit

skill-adform-agentic-skills-adform-channel-conflict-audit · by adform

>-

No reviews yet
0 installs
0 views
view→install

Install

$ agentstack add skill-adform-agentic-skills-adform-channel-conflict-audit

✓ 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-channel-conflict-audit)

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

About

Adform direct-versus-RTB channel conflict audit

Compares the targeting of direct and RTB line items under a campaign to surface overlap on the same domains, audiences, or placements where both types are delivering simultaneously. Read-only.

Connection & tooling

Runs on the Adform GraphQL MCP. Use graphql_execute to run queries. Use graphql_introspect on RtbLineItemAudience and DirectLineItem to discover targeting field shapes. Keep calls sequential (~1–2s apart).


Step 1 — List RTB line items under the order

{
  rtbLineItems(
    orderIds: ["67890"]
    offset: 0
    limit: 20
  ) {
    lineItems { id name environments orderId campaignId paused }
    totalCount
  }
}

Step 2 — List direct line items under the order

{
  directLineItems(
    orderId: "67890"
    pagination: { offset: 0, limit: 20 }
  ) {
    directLineItems { id name status }
    totalCount
  }
}

Step 3 — Get targeting detail for each

For RTB line items, use graphql_introspect on RtbLineItemAudience to select targeting rules including domains, audience segments, and locations:

The id is the RTB setup ID returned by rtbLineItems(), not the placement ID.

{ rtbLineItem(id: "99999") { id targetings { id name bidMultiplier } inventories { id buyingType } } }

Resolve domain targeting list IDs to actual domains:

{ rtbTargetingListDomains(id: "12345", pagination: { offset: 0, limit: 100 }) { domains { name bidMultiplier } totalCount } }

Step 4 — Delivery confirmation

Only flag as a conflict when both sides are actively delivering in the same time window. Check delivery indications for each line item:

{ rtbLineItemDeliveryIndications(id: "99999") { status effectiveFlightDailyCost } }

Step 5 — Quantify conflict with mcpStats domain breakdown

Step 4 confirms both sides are live. Use mcpStats to pull actual impression volume by domain for the RTB line item to measure how much inventory is being won on the conflicting domains. Validated query:

{
  mcpStats {
    totalRowCount
    totals
    columns {
      dimensions { rtbDomain { name } }
      metrics {
        impressions
        clicks
        cost
        ecpm
        rtbBids
        rtbWinRate
      }
    }
    rows(
      filter: {
        date: { from: "2026-06-01", to: "2026-06-30" }
        advertiser: { ids: ["2133936"] }
      }
      paging: { offset: 0, limit: 100 }
      sort: [{ column: 1, direction: desc }]
    )
  }
}

Filter the result client-side to only the domains identified as overlapping in Step 3. The impression volume on those domains is the quantity of inventory where self-competition is occurring. Include this in the conflict table as "impressions at risk" alongside the cost figure to communicate business impact.


Method

  1. Gather direct and RTB line items under the order; retain only those currently delivering
  2. Compare targeting: shared domains (resolve both lists), overlapping audience segment IDs,

overlapping placements

  1. Flag only intersections where both sides show active delivery — that is the real conflict

Presenting

Conflict table: the direct line item, the RTB line item, the overlap dimension (domains, audience, or placement), whether both are currently live, impressions at risk (from mcpStats domain breakdown), and cost at risk. Lead with overlaps where both sides are delivering. Quantify the scale of self-competition using the mcpStats impression count on conflicting domains. Recommend de-duplicating targeting to eliminate self-competition.

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.