← Back to registry /

Packrift A2A Packaging Procurement Router

A2A conformant A2A v0.3.0

Packrift A2A Packaging Procurement Router

v0.3.0 Packrift

Public Packrift agent card for a stateless A2A JSON-RPC routing layer. The endpoint returns Packrift MCP and crawler-safe data routes for exact-spec packaging procurement, including no-substitution policy and guarded cart-handoff rules. Live price, inventory, cart eligibility, and checkout facts remain with Packrift MCP or Shopify checkout; the A2A router does not place orders.

Launch agent website ↗

Skills

  • Packrift Procurement Routing

    Route exact packaging requests to Packrift MCP and public SKU data while enforcing no-substitution and no-order-placement policies.

    packagingprocurementsku-searchboxesmailerslabelsshopifymcp
  • Public SKU Record Lookup

    Return the public Packrift SKU-record and purchase-path routes an agent should use after a SKU has been identified. Public SKU records are retrieval aids; live price, inventory, and shipping still require MCP or Shopify checkout confirmation.

    packagingskuproduct-datacrawler-safeai-commerce
  • Guarded Cart Handoff

    Explain and route the guarded Packrift cart-handoff flow. A handoff may be prepared only after exact SKU, live price, and live inventory checks; it opens Shopify checkout context but does not place an order.

    packagingcarthandoffshopifyprocurementorder-safety

Integration

import asyncio
from a2a_registry import AsyncRegistry

async def main():
    async with AsyncRegistry() as registry:
        agent = await registry.get_by_id("4e8fbf48-b093-4530-a413-998171ffda3b")
        client = await agent.async_connect()
        print(f"Connected to {agent.name}")

asyncio.run(main())