OpenObscure: Open-Source On-Device Privacy Firewall for AI Agents

What OpenObscure Does
OpenObscure is an open-source, on-device privacy firewall for AI agents that sits between your AI agent and the LLM provider. Unlike tools that redact PII by replacing it with placeholders (which breaks LLM reasoning), OpenObscure uses FF1 Format-Preserving Encryption (AES-256) to encrypt PII values before the request leaves your device. The LLM receives realistic-looking ciphertext with the same format but fake values. On the response side, values are automatically decrypted before your agent sees them. Integration requires just changing the base_url to the local proxy.
Key Features
- PII detection: Uses regex + CRF + TinyBERT NER ensemble with 99.7% recall across 15+ PII types
- FF1/AES-256 FPE: Keys stored in OS keychain, nothing transmitted
- Cognitive firewall: Scans every LLM response for persuasion techniques across 7 categories using a 250-phrase dictionary + TinyBERT cascade, aligning with EU AI Act Article 5 requirements on prohibited manipulation
- Image pipeline: Face redaction (SCRFD + BlazeFace), OCR text scrubbing, NSFW filter
- Voice processing: Keyword spotting in transcripts for PII trigger phrases
- Platform support: Rust core, runs as Gateway sidecar on macOS/Linux/Windows or embedded in iOS/Android via UniFFI Swift/Kotlin bindings
- Auto hardware tier detection: Full/Standard/Lite modes depending on device capabilities
Technical Details
The project is licensed under MIT/Apache-2.0 with no telemetry and no cloud dependency. It was developed with Claude AI assistant. The repository is available at https://github.com/openobscure/openobscure, with a demo at https://youtu.be/wVy_6CIHT7A and website at https://openobscure.ai.
📖 Read the full source: r/ClaudeAI
👀 See Also

Multi-provider LLM fallback chain with Ollama support in production AI IDE
Resonant Genesis AI IDE integrates local LLM support as a first-class provider alongside Groq, OpenAI, Anthropic, and Gemini across 30+ microservices using a shared UnifiedLLMClient library with automatic fallback chain.

120 Prompt Patterns Tested: 8 That Actually Work for Claude Code
A 3-month empirical test of 120 prompt patterns for Claude Code yields 8 actionable commands and 5 validation prompts. Key patterns: L99 (cuts hedging), /ghost (removes AI voice), OODA (structured reasoning), ULTRATHINK (deep reasoning), HARDMODE (constraint debugging).

AgentSwarms: Free Hands-On Playground for Learning Agentic AI
AgentSwarms offers 5 tracks, 40+ lessons, and 30+ runnable agents for free — no setup or API keys required to start. Learn by building from prompts to multi-agent swarms.

OpenClaw CoreBrain Plugin: Persistent Memory for AI Coding Agents
A new plugin called CoreBrain addresses OpenClaw's memory issues by storing information outside the context window in a knowledge graph and auto-injecting it before every query, eliminating the need for tool calls and optional memory invocation.