syndicate-fire-conversion — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited syndicate-fire-conversion (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
When a purchase (or equivalent conversion event) completes and you need to attribute it to the publisher who referred the customer.
tracking_code (required) — the short code from the tracking link (e.g., GY7i_Nc6)amount_cents (required) — sale amount in integer centsorder_id (optional) — your order identifier. Providing this makes the call idempotent — duplicate POSTs return the original conversion, they don't double-count.currency (optional, default "usd")metadata (optional) — freeform JSON, returned on conversion lookup{
"id": "cv_...",
"status": "pending",
"amount_cents": 10000,
"commission_cents": 1000,
"publisher_id": "pub_...",
"program_id": "p_...",
"tracking_link_code": "GY7i_Nc6",
"order_id": "order_456",
"created_at": "2026-04-18T..."
}POST /merchant/conversions with body above, Authorization: Bearer mk_live_...status — pending is the initial state; it flips to approved after the program's review window (default 7 days) unless you refund or dispute it via POST /merchant/refunds.Requires conversions:write scope (or a wildcard * key).
order_id + tracking_code is the dedup key. Replaying the same request returns 200 with the original conversion body. Different order_id = different conversion, even for the same tracking code.
404 tracking code not found → the publisher link may have been revoked, or the code is wrong. Do not retry blindly.409 duplicate order → idempotent hit; treat as success, log the returned conversion id.422 partnership not approved → the publisher/merchant partnership is in pending state. Conversion is queued; no action needed.Full API: https://syndicatelinks.co/docs/agent-integration
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.