XAIP seeded demo

Before Payment Evidence Demo

Before an agent pays for a closed-source skill, it should see more than a listing.
XAIP makes available execution evidence visible before delegation.

Seeded snapshot โ€” see fixtures below.

An agent is asked to translate a document. Three candidate skills are available on a paid marketplace. Their internals are not inspectable.

Listing metadata only

Skill slug Listing rating Price/call One-line description

With execution evidence

Skill slug Receipts Success rate Risk flags Eligible
selected
skill:translator-alpha
reason
Selected using available execution evidence.
decision
allow

Seeded snapshot. Not live aggregator data.

All candidates, listings, prices, and receipt data on this page are fictional fixtures for a static demo.

Illustrative SDK call

import { precheck } from "xaip-sdk";

const result = await precheck({
  task: "Translate a document into Japanese",
  candidates: ["skill:translator-alpha", "skill:translator-beta", "skill:translator-gamma"],
  policy: { minReceipts: 10, excludeRiskFlags: ["repeated_timeout"] },
  includeDecision: true,
});