Your supply-chain agent needs two things before it commits to a supplier's schedule: is their equipment actually healthy, and is the agent reporting that condition trustworthy? Forge answers the first. Assay answers the second.
What the machines are actually doing, read from telemetry, not asserted.
Whether the agent reporting that condition has a verified track record.
Ask Forge for the supplier's fleet health directly from the equipment layer.
# Forge, supplier fleet health (forge_sandbox_ key evaluates free) curl -s https://forge.foundrynet.io/v1/fleet_health \ -H "Authorization: Bearer forge_sandbox_…" \ -H "Content-Type: application/json" \ -d '{ "machines": [ { "machine_id": "line-3-cnc", "canonical_field": "spindle_load_pct", "time_series": [60,62,63,64,66,68,70,71,73,74,76,78,80,82,84,86], "threshold": 95 } ] }' # -> 200, equipment signal { "fleet_summary": { "healthy": true } }
Confirm the agent that produced that report is credible, active, above your trust threshold, and evidenced on the capability that matters.
# Assay, reporter credibility signal curl -s https://assay.foundrynet.io/v1/verify \ -H "X-API-Key: $ASSAY_KEY" \ -H "Content-Type: application/json" \ -d '{ "agent_id": "agt_supplier...", "claimed_capabilities": ["condition_monitoring"], "min_trust_threshold": 0.75 }' # -> 200 { "verified": true, "trust_score": 0.82, "capabilities_confirmed": ["condition_monitoring"] }
Two independent signals: fleet_summary.healthy == true AND verify.verified == true. Either one alone is a claim; together they're a decision you can defend.
Green on both, commit the production schedule. Keep the Forge reading and the supplier's signed Assay passport (GET /v1/agents/:id/passport) together as the record of why you committed.
Assay registration is free (first 50 calls), and Forge equipment tools evaluate free on a forge_sandbox_ key. Run fleet_health and verify side by side.
# Assay key (free) for the credibility signal curl -s https://assay.foundrynet.io/v1/agents/register \ -H "Content-Type: application/json" \ -d '{ "name": "supply-chain-agent", "owner_org": "your-co", "capabilities": ["sourcing"] }' # Forge sandbox key (free) for the equipment signal: # https://forge.foundrynet.io/pricing export ASSAY_KEY="aid_…"