SIFR-0 Protocol — Skill Marketplace
Turn a Replit prototype into a production-ready Cloudflare deployment with deterministic audits and DJZS trust receipts.
// DEVOPS SKILL
Move a Replit app to Cloudflare with a deterministic deployment checklist, environment audit, DNS checklist, and production-readiness report.
npx -y @sifr0/mcp skill sifr0-replit-to-cloudflare
Free preview available. Paid execution generates a DJZS Protocol audit receipt.
| Offer | Price | What You Get |
|---|---|---|
| Free Preview | $0 | Requirements, install command, sample checklist, typical findings |
| Deployment Audit | $5 USDC | Risk score, blocking issues, warnings, checklist, DJZS receipt |
| Full Migration Plan | $25 USDC | wrangler.jsonc, D1 schema, DNS steps, rollback, estimated time |
| Verified Receipt | $10 add-on | DJZS Protocol cryptographic receipt with verification link |
| Done-With-You Setup | $99–$299 | Manual help, premium tier, custom configuration |
Every paid execution generates a cryptographically verifiable receipt:
Can I deploy this app? → SIFR-0
Can I trust the deployment plan? → DJZS Protocol
# 1. Request audit (returns 402 Payment Required)
curl -X POST https://api.sifr0.dev/v1/skills/replit-to-cloudflare/audit \\
-H "Content-Type: application/json" \\
-d '{ "replit_url": "https://replit.com/@user/app", "cloudflare_account": true }'
# Response: 402 with x402 headers
{
"error": "Payment Required",
"x402": {
"amount": "5.00",
"currency": "USDC",
"network": "base",
"recipient": "0xTreasury...",
"description": "SIFR-0 Deployment Audit"
}
}
# 2. Client pays USDC on Base (x402)
# 3. Resend request with payment header
curl -X POST ... -H "X-Payment: x402:..."
# 3. Returns audit + DJZS receipt
{
"verdict": "NOT_READY",
"risk_score": 72,
"blocking_issues": ["better-sqlite3 → D1", "No wrangler.toml"],
"djzs_receipt": { "audit_id": "audit_2026_06_09_abc123", "receipt_hash": "0x..." }
}