|
| 1 | +# RAG Integrity Firewall Roadmap |
| 2 | + |
| 3 | +This roadmap outlines where the project is headed. |
| 4 | +It covers **open-source milestones** as well as **enterprise features** we plan to explore for organizations with stricter requirements. |
| 5 | + |
| 6 | +--- |
| 7 | + |
| 8 | +## Open Source (Community Edition) |
| 9 | + |
| 10 | +These features will remain free and open: |
| 11 | + |
| 12 | +- **Core scanners** |
| 13 | + - Prompt injection (regex) |
| 14 | + - Secrets & API keys |
| 15 | + - PII (emails, phones, SSNs) |
| 16 | + - Encoded/Base64 detection |
| 17 | + - URL/domain allow & deny lists |
| 18 | + - Conflict/staleness detection |
| 19 | + |
| 20 | +- **Policy engine** |
| 21 | + - Allow, deny, rerank decisions |
| 22 | + - Weighting for recency, provenance, relevance |
| 23 | + |
| 24 | +- **Provenance** |
| 25 | + - SHA256 hashing of chunks |
| 26 | + - Optional SQLite store |
| 27 | + |
| 28 | +- **Audit logs** |
| 29 | + - JSONL audit trail for each decision |
| 30 | + |
| 31 | +- **Integrations** |
| 32 | + - LangChain retrievers (`FirewallRetriever`) |
| 33 | + - LlamaIndex retrievers (`TrustyRetriever`) |
| 34 | + |
| 35 | +- **CLI** |
| 36 | + - `ragfw index` — index and hash documents |
| 37 | + - `ragfw query` — run queries with firewall checks |
| 38 | + |
| 39 | +--- |
| 40 | + |
| 41 | +## Short-Term Enhancements (OSS) |
| 42 | + |
| 43 | +- Additional regex/signature patterns (prompt injection & secrets) |
| 44 | +- Expanded test suite and benchmarks |
| 45 | +- Config schema validation |
| 46 | +- Examples with more frameworks (Haystack, OpenAI RAG SDK) |
| 47 | + |
| 48 | +--- |
| 49 | + |
| 50 | +## Enterprise Features (Planned) |
| 51 | + |
| 52 | +These are under active design and may be offered as part of a **paid Enterprise Edition**: |
| 53 | + |
| 54 | +- **Policy Management Dashboard** |
| 55 | + Web UI for managing firewall policies, roles, and configs without YAML editing. |
| 56 | + |
| 57 | +- **Centralized Audit & Alerts** |
| 58 | + Aggregated audit logs with dashboards, Slack/email/SIEM integration for high-severity findings. |
| 59 | + |
| 60 | +- **Threat Intelligence Feeds** |
| 61 | + Regular updates with new prompt injection patterns, API key formats, and risk signatures. |
| 62 | + |
| 63 | +- **Enterprise Connectors** |
| 64 | + Pre-built ingestion + firewall adapters for platforms like SharePoint, Confluence, and Google Workspace. |
| 65 | + |
| 66 | +- **Compliance Mapping** |
| 67 | + Exportable reports mapping firewall policies to frameworks such as: |
| 68 | + - EU AI Act |
| 69 | + - NIST AI Risk Management Framework |
| 70 | + - ISO/IEC 42001 |
| 71 | + |
| 72 | +--- |
| 73 | + |
| 74 | +## Longer-Term Ideas |
| 75 | + |
| 76 | +- ML-based classifiers for sophisticated prompt injection patterns (optional, local-only). |
| 77 | +- Policy simulation mode (dry-run audits without enforcement). |
| 78 | +- “Red team” testing harness to evaluate RAG pipelines automatically. |
| 79 | +- Multi-tenant support for large organizations. |
| 80 | + |
| 81 | +--- |
| 82 | + |
| 83 | +## How to Contribute |
| 84 | + |
| 85 | +- Use the [Issues](https://github.com/taladari/rag-firewall/issues) tab for bug reports and feature requests. |
| 86 | +- Pull requests are welcome — especially for new scanners, policy examples, or framework integrations. |
| 87 | +- For enterprise features, please [contact us ](mailto:[email protected]) if you’d like to be an early design partner. |
| 88 | + |
| 89 | +--- |
0 commit comments