Claim Merchants — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Claim Merchants (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.
Claim is a social commerce and rewards operating system (acquired by Grubhub's parent company, Wonder) that enables local and online merchants (especially restaurants and retailers) to run risk-free, pay-per-acquisition marketing drops. This skill enables GenPark AI agents to construct, manage, and analyze Claim campaigns, matching high-intent customers with products/venues using transactional card-linked mechanics.
sequenceDiagram
autonumber
actor Customer
participant App as Claim Consumer App
participant Plaid as Plaid API
participant Merchant as Claim Merchant OS
participant Venmo as Venmo API
Customer->>App: Link debit/credit card via Plaid
Merchant->>Merchant: Create "Thursday Drop" offer ($5 cash back)
App->>Customer: Delivers offer to user's wallet
Customer->>Merchant: Swipes physical credit card at check-out
Plaid->>Merchant: POST /v1/merchant/webhooks/transaction (Matches linked card swipe)
Merchant->>Venmo: POST /v1/payouts (Trigger cashback payment)
Venmo-->>Customer: $5 cash back deposited to customer VenmoPOST https://api.claim.co/v1/merchant/campaigns
Request Headers:
Authorization: Bearer <your_claim_merchant_token>
Content-Type: application/jsonRequest Payload:
{
"name": "Thursday Diner Drop - May 2026",
"campaign_type": "ACQUISITION_DROP",
"cashback_amount": 5.00,
"start_date": "2026-05-21T00:00:00Z",
"end_date": "2026-05-28T23:59:59Z",
"target_criteria": {
"geographic_radius_miles": 5.0,
"competitor_categories": ["casual_dining", "coffee_shops"]
},
"max_budget": 500.00
}Response Payload:
{
"campaign_id": "camp_88910243",
"status": "SCHEDULED",
"cashback_amount": 5.00,
"targeted_users_estimate": 4500,
"created_at": "2026-05-18T18:56:00Z"
}POST https://api.claim.co/v1/merchant/webhooks/transaction
Request Payload (Sent by Plaid/Claim to Merchant):
{
"event_id": "evt_9981240a2",
"event_type": "transaction.matched",
"timestamp": "2026-05-18T18:56:46Z",
"data": {
"merchant_id": "merch_770123",
"customer_id": "cust_44901",
"campaign_id": "camp_88910243",
"transaction": {
"amount": 24.50,
"currency": "USD",
"timestamp": "2026-05-18T18:55:00Z",
"masked_card_last_four": "1024"
}
}
}Response Payload:
{
"status": "PROCESSED",
"payout_status": "VENMO_QUEUED",
"cashback_awarded": 5.00,
"fee_charged": 1.50
}AI agents should model Claim campaigns using these strategic guidelines:
max_budget. Since fees are pay-per-acquisition, the maximum financial liability is bounded by this budget.RETENTION_CAMPAIGN targeting those same customers to secure double visits within 14 days.~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.