Developer starter kits
Instrument an existing workflow in an afternoon.
Four integration patterns — each showing the before state, the minimal code change, and what the proof-card output looks like. Node.js and Python snippets included.
Before and after, side by side
Every kit shows the manual process you have today and the Patchr-instrumented version — so you can see exactly what changes.
Node.js and Python
Copy-paste integration snippets in both languages using the Patchr SDK and the raw HTTP API.
Proof card output included
See the exact JSON shape your integration returns — evidence status, confidence, open questions, and a citable proof ref.
Live sandbox link per kit
Each kit links to the sandbox pre-loaded with an entity-complete request so you can run it immediately.
From user complaint to sealed proof card
Drop-in audit layer for any support or claims workflow.
View kitPolicy-scored vendor approval with a sealed record
Replace the email-thread onboarding loop with one API call.
View kitMandate-gated procurement with a finance-ready receipt
Hunt, verify, pay — with a proof-gated receipt at the end.
View kitVerify capabilities and delegation before granting access
Proof-gated access decisions for any agent requesting elevated permissions.
View kitBefore you start
You need one token and two env vars.
Every kit uses the same setup. Get a starter token from the developer page or the SDK, set two environment variables, and you're ready to run any kit.
Developer quickstart# Install
npm install @patchr-core/sdk
# Set env vars
export PATCHR_API_BASE_URL="https://api.patchr.co"
export PATCHR_API_TOKEN="your_patchr_api_token"
# Verify
node -e "
const { PatchrClient } = require('@patchr-core/sdk');
PatchrClient.fromEnv().health().then(console.log);
"
# → { ok: true, version: '...' }Python: pip install patchr-core — same env vars.
Want to see the trace before you code?
The workflow gallery has inspectable sample traces for every domain — payments, disputes, fulfillment, onboarding, and exception handling.