<?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: T C</title>
    <description>The latest articles on DEV Community by T C (@trustboostai).</description>
    <link>https://dev.to/trustboostai</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%2Fb72da7c8-fefd-453a-b352-3d8acc93448d.png</url>
      <title>DEV Community: T C</title>
      <link>https://dev.to/trustboostai</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/trustboostai"/>
    <language>en</language>
    <item>
      <title>Building an Information Firewall for AI Agents</title>
      <dc:creator>T C</dc:creator>
      <pubDate>Fri, 17 Apr 2026 15:07:56 +0000</pubDate>
      <link>https://dev.to/trustboostai/building-an-information-firewall-for-ai-agents-2gca</link>
      <guid>https://dev.to/trustboostai/building-an-information-firewall-for-ai-agents-2gca</guid>
      <description>&lt;p&gt;Published: true&lt;/p&gt;

&lt;p&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 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;br&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;br&gt;
What It Does&lt;br&gt;
TrustBoost sits between your agent and the LLM. It acts as an information firewall with three layers:&lt;br&gt;
LayerFunctionPayment verificationChecks Solana Network transactions (149 USDC for 10,000 sanitizations) — no human approvalPII redactionUses GPT-4o-mini to detect and redact emails, passwords, private keys, national IDs, crypto walletsAudit loggingSaves every operation to Supabase PostgreSQL for traceability&lt;br&gt;
Why Solana?&lt;br&gt;
Agents transact with each other without humans. Solana is fast, cheap, and Helius API makes verification simple.&lt;br&gt;
How to Test It (50 Free Requests Per Wallet)&lt;br&gt;
bashcurl -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;br&gt;
Response:&lt;br&gt;
json{&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;
    "usage_metrics": {&lt;br&gt;
      "quota_remaining": 49,&lt;br&gt;
      "quota_limit": 50&lt;br&gt;
    }&lt;br&gt;
  }&lt;br&gt;
}&lt;br&gt;
Multilingual Support&lt;br&gt;
TrustBoost v2.0 detects PII in 5 languages automatically:&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;/p&gt;

&lt;p&gt;For AI Agents (MoltBook Compatible)&lt;br&gt;
TrustBoost exposes a molt.json schema so agents can discover and use the service autonomously.&lt;/p&gt;

&lt;p&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;
Trial: "tx_hash": "TRIAL" — 50 free requests per wallet_address&lt;br&gt;
Paid: real Solana tx_hash (149 USDC for 10,000 sanitizations)&lt;br&gt;
Anti-replay: automatic via Supabase PRIMARY KEY&lt;/p&gt;

&lt;p&gt;v2.0 Infrastructure — Open Source&lt;br&gt;
TrustBoost v2.0 runs on:&lt;br&gt;
ComponentTechnologyAPI FrameworkFastAPI (Python)DatabaseSupabase PostgreSQLHostingRender (AWS)Payment OracleHelius on SolanaPrivacy EngineOpenAI GPT-4o-mini&lt;br&gt;
Full server code auditable at:&lt;br&gt;
github.com/teodorofodocrispin-cmyk/trustboost-api&lt;br&gt;
Important Limitations&lt;/p&gt;

&lt;p&gt;Not suitable for HIPAA zero-transmission environments — text is sent to a remote API&lt;br&gt;
Payments are irreversible — test with TRIAL before paying&lt;br&gt;
TRIAL is trust-based — not cryptographically verified (paid mode uses on-chain verification)&lt;br&gt;
This is a prototype — not a certified enterprise product&lt;/p&gt;

&lt;p&gt;Open Source&lt;br&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;
Feedback Welcome&lt;br&gt;
This is a prototype built in public.&lt;br&gt;
What would make you trust this for production use?&lt;/p&gt;

&lt;p&gt;Integration with LangChain? Firecrawl? OpenClaw?&lt;br&gt;
Solana payment model — yay or nay?&lt;/p&gt;

&lt;p&gt;Leave a comment or open an issue on GitHub.&lt;br&gt;
Thanks for reading.&lt;/p&gt;

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