Bring your own agent
This is a live preview of the whole architecture, built for Claude Code (other MCP-capable agent harnesses can often figure out the flow too). You bring the agent and drive the full lifecycle yourself — author a policy, propose a product, and read back a cryptographically verified verdict — against the real Shopify catalog over UCP.
Prerequisites
Section titled “Prerequisites”- The Claude Code CLI.
- Shopify UCP (the
ucpskill + CLI), for product discovery — set up below.
1. Install
Section titled “1. Install”curl -fsSL -X POST https://delta-mandate-mcp.repyhlabs.dev/install | shMints your identity and wires the MCP into Claude Code. Re-running /install
creates a fresh identity.
Then run claude and type /mcp — you should see delta-mandate connected with
5 tools.
2. Set up Shopify UCP tools
Section titled “2. Set up Shopify UCP tools”You need the ucp CLI for product
discovery. If it isn’t installed yet, Claude Code can set it up autonomously when
needed.
The agent uses it to find products in Shopify’s Global catalog via UCP and propose a variant — delta mandate extracts the evidence straight from that exact variant.
The ucp skill mentioned in the link above isn’t strictly necessary, but it improves the agent’s efficiency
at catalog search.
3. Use it
Section titled “3. Use it”In Claude Code, type:
use delta-mandate to find me a black leather wallet under $50What happens behind the scenes?
The agent drives it by calling the delta-mandate MCP’s tools (step 3 is the
separate Shopify ucp CLI):
get_language_guide+search_taxonomy— learn the DSL, find the product’s taxonomy category.submit_policy— author and validate the policy →policy_id.- Search Shopify UCP (the
ucpCLI) for a matching variant → its ProductVariant GID. submit_proposal(policy_id+ GID) — signs and submits the intent →intent_id.get_outcome(intent_id) — read the verified verdict.