<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: TrustBoost-PII-Sanitizer</title>
    <description>The latest articles on DEV Community by TrustBoost-PII-Sanitizer (@trustboost).</description>
    <link>https://dev.to/trustboost</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3884720%2F7124ecf0-abde-4aad-b50b-cda312cc4947.png</url>
      <title>DEV Community: TrustBoost-PII-Sanitizer</title>
      <link>https://dev.to/trustboost</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/trustboost"/>
    <language>en</language>
    <item>
      <title>Building an Information Firewall for AI Agents</title>
      <dc:creator>TrustBoost-PII-Sanitizer</dc:creator>
      <pubDate>Fri, 17 Apr 2026 15:07:56 +0000</pubDate>
      <link>https://dev.to/trustboost/building-an-information-firewall-for-ai-agents-2gca</link>
      <guid>https://dev.to/trustboost/building-an-information-firewall-for-ai-agents-2gca</guid>
      <description>&lt;p&gt;Published: true&lt;br&gt;
Description: TrustBoost is an open source middleware that redacts PII and verifies payments on Solana for autonomous AI agents.&lt;br&gt;
tags: aiagents, opensource, privacy, solana.&lt;/p&gt;

&lt;p&gt;⚠️ UPDATE May 20, 2026 — TrustBoost v2.6.0 is live.&lt;/p&gt;

&lt;p&gt;New in v2.6.0:&lt;br&gt;
→ Proof of Sanitization on Solana — every paid sanitization&lt;br&gt;
  is anchored on-chain via Helius. Verifiable by anyone:&lt;br&gt;
  GET api.trustboost.dev/verify/{anchor_tx}&lt;br&gt;
→ 8 languages verified in production: EN, ES-LATAM,&lt;br&gt;
  PT-BR, DE, JA, FR, IT, KO&lt;br&gt;
→ Live demo (no registration):&lt;br&gt;
  huggingface.co/spaces/TrustBoost/pii-sanitizer&lt;br&gt;
→ Launching on Product Hunt today&lt;/p&gt;

&lt;p&gt;⚠️ UPDATE May 18, 2026 — TrustBoost v2.5.0 is live.&lt;/p&gt;

&lt;p&gt;New in v2.5.0:&lt;br&gt;
→ Context-Aware Sanitization — field context in /sanitize&lt;br&gt;
  accepts: legal/financial/medical/code/general&lt;br&gt;
→ Privacy Budget per Agent — operators configure daily&lt;br&gt;
  limits once, agents operate autonomously within them&lt;br&gt;
→ TrustBoost Score — GET /score/{wallet} for M2M trust&lt;br&gt;
  verification: TRUSTED/VERIFIED/ACTIVE/NEW tiers&lt;br&gt;
→ MCP Server: api.trustboost.dev/mcp&lt;br&gt;
  Claude Code · Cursor · Windsurf · Glama compatible&lt;br&gt;
→ GitHub Action: github.com/marketplace/actions/trustboost-pii-scanner&lt;br&gt;
→ 8 languages: EN, ES-LATAM, PT-BR, DE, JA, FR, IT, KO&lt;br&gt;
400+ installs on ClawHub. All examples below remain valid.&lt;/p&gt;

&lt;p&gt;⚠️ UPDATE April 27, 2026 — TrustBoost v2.0 is live.&lt;br&gt;
Migrated from Make.com to FastAPI + Supabase + Render (AWS).&lt;br&gt;
New endpoint: &lt;a href="https://api.trustboost.dev/sanitize" rel="noopener noreferrer"&gt;https://api.trustboost.dev/sanitize&lt;/a&gt;&lt;br&gt;
Open source server: github.com/teodorofodocrispin-cmyk/trustboost-api&lt;br&gt;
All examples below have been updated to reflect v2.0.&lt;/p&gt;

&lt;p&gt;🛡️ TrustBoost: Information Firewall for AI Agents&lt;/p&gt;

&lt;p&gt;I've been building AI agents (local and cloud-based) and noticed a recurring problem: agents leak sensitive data.&lt;br&gt;
Emails, passwords, private keys, internal hostnames — all sent directly to LLMs without any control.&lt;br&gt;
So I built TrustBoost.&lt;/p&gt;

&lt;p&gt;What It Does&lt;/p&gt;

&lt;p&gt;TrustBoost sits between your agent and the LLM. It acts as an information firewall with three layers:&lt;/p&gt;

&lt;p&gt;Layer | Function&lt;br&gt;
Payment verification | Checks Solana Network transactions (149 USDC for 10,000 sanitizations) — no human approval&lt;br&gt;
PII redaction | Uses GPT-4o-mini to detect and redact emails, passwords, private keys, national IDs, crypto wallets&lt;br&gt;
Audit logging | Saves every operation to Supabase PostgreSQL for traceability&lt;/p&gt;

&lt;p&gt;Why Solana?&lt;/p&gt;

&lt;p&gt;Agents transact with each other without humans. Solana is fast, cheap, and Helius API makes verification simple. And now — every paid sanitization is anchored on-chain. Proof that cannot be falsified.&lt;/p&gt;

&lt;p&gt;How to Test It (50 Free Requests Per Wallet)&lt;/p&gt;

&lt;p&gt;curl -X POST "&lt;a href="https://api.trustboost.dev/sanitize" rel="noopener noreferrer"&gt;https://api.trustboost.dev/sanitize&lt;/a&gt;" \&lt;br&gt;
-H "Content-Type: application/json" \&lt;br&gt;
-d '{&lt;br&gt;
  "tx_hash": "TRIAL",&lt;br&gt;
  "wallet_address": "your_wallet",&lt;br&gt;
  "text": "My email is &lt;a href="mailto:john@doe.com"&gt;john@doe.com&lt;/a&gt; and my AWS key is AKIAIOSFODNN7EXAMPLE"&lt;br&gt;
}'&lt;/p&gt;

&lt;p&gt;Response:&lt;/p&gt;

&lt;p&gt;{&lt;br&gt;
  "status": "success",&lt;br&gt;
  "data": {&lt;br&gt;
    "sanitized_content": "My email is [REDACTED] and my AWS key is [REDACTED]",&lt;br&gt;
    "safety_score": 0.85,&lt;br&gt;
    "risk_category": "CRITICAL",&lt;br&gt;
    "context_applied": "general",&lt;br&gt;
    "usage_metrics": {&lt;br&gt;
      "quota_remaining": 49,&lt;br&gt;
      "quota_limit": 50&lt;br&gt;
    }&lt;br&gt;
  }&lt;br&gt;
}&lt;/p&gt;

&lt;p&gt;Proof of Sanitization on Solana (NEW in v2.6.0)&lt;/p&gt;

&lt;p&gt;Every paid sanitization returns an immutable on-chain proof:&lt;/p&gt;

&lt;p&gt;{&lt;br&gt;
  "proof_of_sanitization": {&lt;br&gt;
    "solana_tx": "abc123...",&lt;br&gt;
    "verify_url": "&lt;a href="https://solscan.io/tx/abc123.." rel="noopener noreferrer"&gt;https://solscan.io/tx/abc123..&lt;/a&gt;.",&lt;br&gt;
    "description": "Immutable proof anchored on Solana mainnet"&lt;br&gt;
  }&lt;br&gt;
}&lt;/p&gt;

&lt;p&gt;Verify any sanitization independently:&lt;br&gt;
GET &lt;a href="https://api.trustboost.dev/verify/%7Banchor_tx%7D" rel="noopener noreferrer"&gt;https://api.trustboost.dev/verify/{anchor_tx}&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Context-Aware Sanitization (NEW in v2.5.0)&lt;/p&gt;

&lt;p&gt;curl -X POST "&lt;a href="https://api.trustboost.dev/sanitize" rel="noopener noreferrer"&gt;https://api.trustboost.dev/sanitize&lt;/a&gt;" \&lt;br&gt;
-H "Content-Type: application/json" \&lt;br&gt;
-d '{&lt;br&gt;
  "tx_hash": "TRIAL",&lt;br&gt;
  "wallet_address": "your_wallet",&lt;br&gt;
  "text": "RFC: LOPJ850101ABC, monto: $50,000",&lt;br&gt;
  "context": "financial"&lt;br&gt;
}'&lt;/p&gt;

&lt;p&gt;Multilingual Support — 8 Languages&lt;/p&gt;

&lt;p&gt;🇺🇸 English — SSN, API keys, credit cards, passwords&lt;br&gt;
🇲🇽🇨🇴 Spanish LATAM — RFC, CUIT, DNI, CURP, Cédula&lt;br&gt;
🇧🇷🇵🇹 Portuguese — CPF, CNPJ, RG, NIF&lt;br&gt;
🇩🇪 German — Personalausweis, Steuernummer, IBAN DE&lt;br&gt;
🇯🇵 Japanese — マイナンバー, 運転免許証, 住所&lt;br&gt;
🇫🇷🇧🇪🇨🇦 French — NIR (Sécurité Sociale), SIRET, Carte Vitale, IBAN FR&lt;br&gt;
🇮🇹 Italian — Codice Fiscale, Partita IVA, Tessera Sanitaria&lt;br&gt;
🇰🇷 Korean — 주민등록번호 (RRN), 사업자등록번호, 여권번호&lt;/p&gt;

&lt;p&gt;For AI Agents (MCP + MoltBook Compatible)&lt;/p&gt;

&lt;p&gt;MCP Server: &lt;a href="https://api.trustboost.dev/mcp" rel="noopener noreferrer"&gt;https://api.trustboost.dev/mcp&lt;/a&gt;&lt;br&gt;
Endpoint: &lt;a href="https://api.trustboost.dev/sanitize" rel="noopener noreferrer"&gt;https://api.trustboost.dev/sanitize&lt;/a&gt;&lt;br&gt;
Health: &lt;a href="https://api.trustboost.dev/health" rel="noopener noreferrer"&gt;https://api.trustboost.dev/health&lt;/a&gt;&lt;br&gt;
Verify: &lt;a href="https://api.trustboost.dev/verify/%7Banchor_tx%7D" rel="noopener noreferrer"&gt;https://api.trustboost.dev/verify/{anchor_tx}&lt;/a&gt;&lt;br&gt;
Trial: tx_hash=TRIAL — 50 free requests per wallet_address&lt;br&gt;
Paid: 149 USDC → 10,000 sanitizations + on-chain proof&lt;/p&gt;

&lt;p&gt;v2.6.0 Infrastructure — Open Source&lt;/p&gt;

&lt;p&gt;Component | Technology&lt;br&gt;
API Framework | FastAPI (Python)&lt;br&gt;
Database | Supabase PostgreSQL&lt;br&gt;
Hosting | Render (AWS)&lt;br&gt;
Payment Oracle | Helius on Solana&lt;br&gt;
Privacy Engine | OpenAI GPT-4o-mini&lt;br&gt;
MCP Server | JSON-RPC 2.0&lt;br&gt;
Proof Layer | Solana via Helius Memo transactions&lt;/p&gt;

&lt;p&gt;Full server code auditable at:&lt;br&gt;
github.com/teodorofodocrispin-cmyk/trustboost-api&lt;/p&gt;

&lt;p&gt;Important Limitations&lt;/p&gt;

&lt;p&gt;Not suitable for HIPAA zero-transmission environments&lt;br&gt;
Payments are irreversible — test with TRIAL before paying&lt;br&gt;
TRIAL is trust-based — paid mode uses on-chain verification&lt;br&gt;
Prototype stage — not yet SOC2 certified&lt;/p&gt;

&lt;p&gt;Open Source&lt;/p&gt;

&lt;p&gt;MIT licensed. Full source code available.&lt;br&gt;
🔗 GitHub: github.com/teodorofodocrispin-cmyk/TrustBoost-PII-Sanitizer&lt;br&gt;
🔗 Server: github.com/teodorofodocrispin-cmyk/trustboost-api&lt;br&gt;
🔗 Live Demo: huggingface.co/spaces/TrustBoost/pii-sanitizer&lt;br&gt;
🔗 ClawHub: clawhub.ai/teodorofodocrispin-cmyk/trustboost-pii-sanitizer&lt;br&gt;
🔗 Glama: glama.ai/mcp/servers/teodorofodocrispin-cmyk/trustboost-api&lt;br&gt;
🔗 GitHub Action: github.com/marketplace/actions/trustboost-pii-scanner&lt;br&gt;
🔗 Product Hunt: producthunt.com/products/trustboost-pii-sanitizer&lt;/p&gt;

&lt;p&gt;Feedback Welcome&lt;/p&gt;

&lt;p&gt;EU AI Act enforcement is August 2, 2026 — 74 days away.&lt;br&gt;
What would make you trust TrustBoost for production compliance?&lt;br&gt;
Leave a comment or open an issue on GitHub.&lt;br&gt;
Thanks for reading.&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
