DEV Community

Manuel Felipe Arias Pineda
Manuel Felipe Arias Pineda

Posted on

๐Ÿ‡จ๐Ÿ‡ฆ Canada devs: Add Social Insurance Number (SIN) to the AI identity standard โ€” Soulprint open source (30 min PR)

Every day, AI agents make decisions on our behalf โ€” buying, sending emails, signing documents โ€” and nobody verifies there's a real human behind them.

Soulprint solves this with Zero-Knowledge Proofs: 100% on-device, open source (MIT), free to run. soulprint.digital

๐Ÿ‡จ๐Ÿ‡ฆ Canada's Social Insurance Number (SIN) is not in Soulprint yet. You can add it in ~30 minutes with one PR.


What Soulprint does

npx soulprint verify-me       # scan ID + face match โ€” all local
# โ†’ SPT token (score 0-100)

# AI agent includes token in every call
# X-Soulprint: eyJ... (score: 84)

# API verifies in 3 lines:
import { requireSoulprint } from "soulprint-mcp";
server.tool("premium", requireSoulprint({ minScore: 80 }), handler);
Enter fullscreen mode Exit fullscreen mode

ZK proof: Circom 2.1.8 ยท Groth16 ยท 844 constraints ยท 564ms prove ยท 25ms verify.


๐Ÿ‡จ๐Ÿ‡ฆ Canada: Social Insurance Number (SIN)

SIN: 9 digits with Luhn algorithm validation (e.g. 046 454 286). Provincial health card numbers also available.


The code โ€” fill in the blanks and open a PR

// packages/verify-local/src/document/countries/CA.ts
import { CountryVerifier, DocumentResult, NumberValidation } from "../verifier.interface";

const CA: CountryVerifier = {
  countryCode:   "CA",
  countryName:   "Canada",
  documentTypes: ["sin"],

  parse(ocrText: string): DocumentResult {
    // Social Insurance Number (SIN) format: SIN 9 digits, Luhn-validated
    const doc_number = ocrText.match(/(\d{9})/)?.[1] ?? "";
    return { valid: !!doc_number, doc_number, country: "CA" };
  },

  validate(docNumber: string): NumberValidation {
    // Luhn mod-10 algorithm
    return { valid: luhnCheck(docNumber) };
  },
};

export default CA;
Enter fullscreen mode Exit fullscreen mode

Then add one line in registry.ts:

import CA from "./countries/CA";
// add to registry map: "CA": CA,
Enter fullscreen mode Exit fullscreen mode

Open a PR โ†’ your country joins the global AI identity standard. ๐ŸŒ


Why contribute?

  • Canada joins the AI age โ€” local developers can verify their AI agents
  • Permanent git credit โ€” you're in the history forever
  • Decentralized identity โ€” no Big Tech as gatekeeper
  • Fast โ€” 30 min partial, 2-3h full with MRZ

Resources

One PR. One country. The future of AI identity is open source.

Top comments (0)