diagnose-missing-conversions

diagnose-missing-conversions is a skill for Claude Code, Codex from converlyio/converly-mcp. It costs 45 tokens per session (677 once invoked), scanned B, original, MIT.

A guided troubleshooting procedure for Converly conversion tracking, which records website actions and sends them to advertising platforms. It checks whether the website snippet is running, a tracking flow is published, and the destination connection works.

In plain words
What is it for?
Use it when form submissions or other conversions are missing, tracking is not working, or an advertising platform is not receiving conversion data.
Why use it?
It narrows down whether missing conversions come from the website installation, an unpublished flow, a domain mismatch, or a broken destination connection.

Skill for Claude CodeCodex

Written for Claude Code and Codex: shipped in a Claude Code plugin, but also agents/openai.yaml present.

Part of the converly plugin — 2 skills, 1 MCP server shipped together

Good fit Use it when form submissions or other conversions are missing, tracking is not working, or an advertising platform is not receiving conversion data.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/converlyio/converly-mcp/diagnose-missing-conversions
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add converlyio/converly-mcp --skill diagnose-missing-conversions
Clone the repo
git clone --depth 1 https://github.com/converlyio/converly-mcp

Made for: Claude Code, Codex.

Or install converly, the plugin that ships this one along with the rest of its 2 skills, 1 MCP server.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for diagnose-missing-conversions

README.md
[![agentmods](https://agentmods.dev/badge/skills/converlyio/converly-mcp/diagnose-missing-conversions/github.svg)](https://agentmods.dev/skills/converlyio/converly-mcp/diagnose-missing-conversions)
Your own site
<a href="https://agentmods.dev/skills/converlyio/converly-mcp/diagnose-missing-conversions"><img src="https://agentmods.dev/badge/skills/converlyio/converly-mcp/diagnose-missing-conversions/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for diagnose-missing-conversions

Your own site · 80×15
<a href="https://agentmods.dev/skills/converlyio/converly-mcp/diagnose-missing-conversions"><img src="https://agentmods.dev/badge/skills/converlyio/converly-mcp/diagnose-missing-conversions.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 45 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 677 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00045 $0.00677
Opus 5 $0.00023 $0.00338
Sonnet 5 $0.00009 $0.00135
Haiku 4.5 $0.00005 $0.00068

Measured 9d ago against content hash 7b58cfb9146c, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade B, and why

diagnose-missing-conversions scanned grade B with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Subtle steeringmediumPrompt injection

Instructions that bias recommendations or shape behaviour without the user noticing.

- Never tell the user to "submit a form and wait" unless step 1 confirmed data has been captured before or the user has confirmed the snippet is installed.
skills/diagnose-missing-conversions/SKILL.md · 28 lines

How it starts

The opening of the file, as written. The whole thing — 28 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Diagnose missing conversions in Converly

Work through the funnel in order. Each step rules out one layer, so report what you confirmed at each one.

Steps

  1. Is anything being captured at all? Call get_install_status for the site. If detection is "never_seen", the loader has never phoned home. The most likely cause is that the Converly snippet isn't installed. Give the user the script tag from get_install_snippet, then have them open any page of their site and re-check, the loader phones home on page load. If detection is "confirmed", note last_seen_at, and if the response carries origin_authorized: false, you have likely found the fault: the loader runs but the site's domain does not match, so every conversion is rejected. Fix the domain with update_site. Otherwise continue.

  2. Is a flow live? Call list_flows. A flow only tracks while its status is "published". If the relevant flow is a draft, run validate_flow, fix any problems, and publish it with publish_flow.

  3. Is the destination healthy? Call list_destinations. A destination with connected false, or a status like "connection_broken", means deliveries fail even though capture works. Reconnect it with connect_destination.

  4. Did the events arrive but fail to deliver? Call list_events, filtering by site, flow, status or the person's email if the user mentioned a specific lead. For anything that looks wrong, call get_event_detail and read the per destination delivery result. Report the platform's error plainly.

  5. Nothing wrong anywhere? Consider quieter causes. The submission may have come from the user's own team (internal traffic rules exclude those, and add_internal_traffic_rule can add an exclusion), the form may not be one of the detected form tools (check list_trigger_types), or the flow's trigger may be limited to specific pages that don't include the one being tested.

  6. Prove the destination pipe. send_test_event checks the destination-forwarding path only — it does NOT appear in the conversion log, and for any server-side ad destination without a valid sandbox test code (google-ads, chatgpt-ads, linkedin-ads, google-analytics, and meta/reddit/tiktok) it creates a REAL reported conversion, so it's refused unless you set allow_real_conversion (confirm with the user first). If the test is accepted but real submissions don't show in list_events, the problem is on the capture side (snippet/origin/trigger). If the test itself is rejected, the problem is the destination connection or its configuration.

Read the full file on GitHub · 28 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 28 lines · 45 tokens per session scan B 7b58cfb9146c

Subscribe to this mod's changes

diagnose-missing-conversions is a skill published in the GitHub repository converlyio/converly-mcp (0 stars, last pushed 23d ago), licensed MIT. It adds 45 tokens to every session and 677 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it B with 1 finding (subtle steering). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

adcp-advertising

Automate advertising campaigns with AI. Create ads, buy media, manage ad budgets, discover ad inventory, run display ads, video ads, CTV campaigns, and optimize ad performance. Perfect for marketing automation, programmatic advertising, media buying, ad management, campaign optimization, creative management, and…

LeoYeAI/openclaw-master-skills · 103 tokens

adspirer-ads-agent

Adspirer — AI-powered advertising and performance marketing agent. Manage Google Ads, Meta Ads (Facebook & Instagram), LinkedIn Ads, and TikTok Ads via natural language. 100+ tools for paid media campaign creation, live performance analysis, PPC keyword research with real CPC data, budget optimization, ad creative…

LeoYeAI/openclaw-master-skills · 141 tokens

_mureo-shared

Skill "_mureo-shared" from logly/mureo, covering mureo shared patterns, installation, setup, claude code (recommended) and manual configuration.

logly/mureo · 22 tokens

_mureo-strategy

Strategy Context: Manage business strategy files (STRATEGY.md, STATE.json) for strategy-driven ad operations.

logly/mureo · 28 tokens

daily-check

Run a daily health check on all configured ad accounts (Google Ads, Meta Ads, Amazon Ads, TikTok Ads, Search Console, GA4, and any configured plugin platform). Use when the user asks for a daily review, health check, status update, anomaly detection, or 'how are my campaigns doing today'. Reads STRATEGY.md and…

logly/mureo · 145 tokens

_mureo-google-ads

Google Ads: Manage campaigns, ad groups, ads, keywords, budgets, and performance analysis.

logly/mureo · 26 tokens