πΊοΈ Roadmap β
Fire Shield development roadmap and upcoming features.
This roadmap outlines our vision for Fire Shield. Features and timelines may change based on community feedback and priorities.
Want to contribute? Check out our GitHub Issues or join the discussion!
β Recently Completed β
v3.0.0 - Plugin System & Platform Independence (January 2026) β
Core Features - β 100% Complete
- β
Plugin System - Extensible architecture for custom logic (NEW!)
RBACPlugininterface with 3 hooksPluginManagerclass for plugin lifecycle managementonPermissionCheck()- Triggered on every permission checkonRoleAdded()- Triggered when role is createdonPermissionRegistered()- Triggered when permission is registeredregisterPlugin()/unregisterPlugin()methodsgetPlugin()/getAllPlugins()methods
- β
Platform Independence - Removed fs module dependency (BREAKING CHANGE!)
- β
Config Loading -
RBAC.fromJSONConfig()- Platform-independent (Node.js, Browser, Edge) - β
Removed Methods -
RBAC.fromFile()andRBAC.fromFileSync()- Use loader packages instead
- β
Config Loading -
Plugin Hooks Examples
- β Audit Database Plugin - Log permission checks to database
- β Analytics Plugin - Track permission check events
- β Rate Limit Plugin - Prevent excessive permission checks
- β Validator Plugin - Custom permission validation logic
Documentation Updates
- β Updated README.md - v3.0.0 features, breaking changes, migration guide
- β Updated docs/index.md - Homepage with plugin system info
- β Plugin Examples - Database loader, analytics, rate limiting examples
- β Migration Guide - From v2.x to v3.0.0 (fromFile removal, plugin system)
Breaking Changes
- β οΈ
RBAC.fromFile()- REMOVED (Use@fire-shield/node-loaderpackage) - β οΈ
RBAC.fromFileSync()- REMOVED (Use@fire-shield/node-loaderpackage) - β
RBAC.fromJSONConfig()- Still works, unchanged (cross-platform) - β
RBAC.validateConfig()- Still works, unchanged
Migration Path
// Before (v2.x)
import { RBAC } from '@fire-shield/core';
const rbac = await RBAC.fromFile('./rbac.config.json');
// After (v3.0.0) - Browser/Edge (works same)
import { RBAC } from '@fire-shield/core';
const json = require('./rbac.config.json');
const rbac = RBAC.fromJSONConfig(json);
// After (v3.0.0) - Node.js (loader package - coming soon)
import { NodeLoader } from '@fire-shield/node-loader';
const rbac = await NodeLoader.load('./rbac.config.json');Statistics
- 310+ passing tests (up from 460, after removing fromFile tests)
- Plugin system with 3 hooks
- 0 runtime dependencies (unchanged)
- ~25KB bundle size (unchanged)
- Platform-independent core (tree-shakeable for browser)
π§ In Progress β
v3.1 - Loader Packages & Plugin Ecosystem (Q1 2026) β
Loader Packages
π§ Node Loader - File system access for Node.js backends
NodeLoader.load()- Async file loadingNodeLoader.loadSync()- Synchronous file loadingNodeLoader.loadFromDirectory()- Load multiple config files- Validation and error handling
π§ Web Loader - Browser-compatible config loading
WebLoader.fromFetch()- Load from HTTP/HTTPS endpointsWebLoader.fromLocalStorage()- Load from browser storageWebLoader.fromURL()- Load from CDN URLs- CORS and security handling
Plugin Examples
π§ Database Loader Plugin - Load config from database
- PostgreSQL, MySQL, MongoDB support
- Prisma, Drizzle ORM integration
- Connection pooling and caching
π§ Redis Cache Plugin - Distributed permission caching
- Redis-based permission cache
- Cache invalidation and expiration
- Cluster support
π§ Elasticsearch Audit Plugin - Log events to Elasticsearch
- Structured audit logs
- Search and analytics support
- Index management
Documentation
π§ Plugin System Guide - How to create custom plugins
- Plugin lifecycle and best practices
- Hook reference and examples
- Testing plugins
π§ Loader Package Guide - How to use loader packages
- Installation and configuration
- Migration examples
- Troubleshooting
π Planned β
v3.2 - Advanced Plugin Features (Q2 2026) β
Plugin Enhancements
- π Plugin Dependencies - Plugins can depend on other plugins
- π Plugin Middleware - Transform plugin hooks before/after execution
- π Plugin Events - Pub/sub event system for plugins
- π Plugin Configuration - Configurable plugin options
Built-in Plugins
- π Analytics Plugin - Built-in analytics and metrics
- π Cache Plugin - Redis/memcached integration
- π Audit Plugin - Elasticsearch/Logstash integration
- π Webhook Plugin - Send events to webhooks
- π Notification Plugin - Send alerts on permission changes
v3.3 - Enterprise Features (Q3 2026) β
Enterprise Plugins
- π LDAP Plugin - Integrate with LDAP/Active Directory
- π OAuth2 Plugin - OAuth2 token validation
- π SAML Plugin - SAML SSO integration
- π SCIM Plugin - User provisioning and sync
Security Plugins
- π IP Whitelist Plugin - IP-based access control
- π Geo-Fencing Plugin - Geographic access restrictions
- π Time-Based Plugin - Temporal access control
- π MFA Plugin - Multi-factor authentication integration
Admin Plugins
- π Admin Dashboard Plugin - Web-based RBAC admin panel
- π Visualization Plugin - Graphical role/permission viewer
- π Reporting Plugin - Compliance reports and analytics
- π Audit Log Plugin - Advanced audit log querying
v3.4 - Ecosystem Expansion (Q4 2026) β
Framework Adapters
- π NestJS adapter - Native NestJS integration
- π Remix adapter - Remix framework support
- π Astro adapter - Astro framework support
- π SolidJS adapter - SolidJS framework support
- π Qwik adapter - Qwik framework support
Developer Tools
- π VS Code Extension - RBAC language support and tools
- π CLI Enhancements - Better CLI commands and interactive mode
- π Admin UI - Web-based admin panel
- π Migration Tool - Automated migration from other RBAC libraries
π‘ Future Ideas β
Long-term Vision (2027+) β
Advanced Permission Models
- π‘ Conditional Permissions - If-then rules for dynamic evaluation
- π‘ Permission Templates - Reusable permission schemas
- π‘ Permission Marketplace - Share common permission schemas
- π‘ Policy Engine - Complex policy evaluation (OPA, XACML)
- π‘ Attribute-Based Access Control (ABAC) - Full ABAC support
Enterprise Features
- π‘ Multi-Tenancy - Advanced multi-tenant RBAC
- π‘ Distributed RBAC - Cross-microservice RBAC sync
- π‘ RBAC-as-a-Service - Cloud-hosted RBAC solution
- π‘ SSO Integration - SAML, OIDC, CAS integration
- π‘ Compliance Framework - SOC2, HIPAA, GDPR compliance
Developer Experience
- π‘ Visual Builder - Drag-and-drop RBAC builder
- π‘ Auto-Discovery - Auto-discover roles/permissions from codebase
- π‘ Testing Tools - RBAC testing and validation tools
- π‘ IDE Extensions - VS Code, WebStorm, IntelliJ plugins
- π‘ DevOps Integration - Kubernetes, Docker, CI/CD integrations
Infrastructure
- π‘ Edge Deployment - Cloudflare Workers, Vercel Edge, Deno Deploy
- π‘ Serverless Functions - AWS Lambda, Azure Functions, GCP Functions
- π‘ Microservices Support - Service mesh integration, gRPC support
- π‘ Database Integrations - Native database drivers, ORM plugins
- π‘ Caching Layer - Redis, Memcached, Varnish integration
π― Community Priorities β
Based on GitHub issues and community feedback, these features are most requested:
High Priority β
- Plugin System - Extensible architecture for custom logic β (v3.0.0)
- Node Loader Package - File system access for Node.js (v3.1.0)
- Web Loader Package - Browser-compatible config loading (v3.1.0)
- Plugin Examples - Database, analytics, rate limiting plugins (v3.1.0)
- Migration Guide v2.x β v3.0.0 - Upgrade documentation (v3.0.0)
Medium Priority β
- Redis Cache Plugin - Distributed permission caching (v3.2.0)
- Database Loader Plugin - Load config from database (v3.1.0)
- Admin Dashboard - Web-based RBAC admin panel (v3.3.0)
- NestJS Adapter - Native NestJS integration (v3.4.0)
- VS Code Extension - IDE support and tools (v3.4.0)
Under Consideration β
- Conditional Permissions - If-then rules for dynamic evaluation
- Permission Marketplace - Share common permission schemas
- Federated RBAC - Cross-organization permissions
- ABAC Support - Attribute-Based Access Control
π Release Cycle β
Major Versions (x.0.0)
- Released yearly
- May include breaking changes
- Extensive migration guides provided
Minor Versions (3.x.0)
- Released quarterly
- New features, backward compatible
- Performance improvements
Patch Versions (3.0.x)
- Released as needed
- Bug fixes and security updates
- No breaking changes
π€ How to Contribute β
We welcome contributions to help achieve this roadmap!
Ways to Contribute β
Code Contributions
- Pick an issue from our GitHub Issues
- Submit pull requests for roadmap features
- Write tests and improve coverage
Documentation
- Improve existing documentation
- Write tutorials and guides
- Translate documentation to other languages
Community
- Answer questions in discussions
- Share your Fire Shield use cases
- Write blog posts about Fire Shield
Feedback
- Report bugs and issues
- Suggest new features
- Vote on existing feature requests
Feature Requests β
Have an idea not on this roadmap? We'd love to hear it!
- Check existing issues
- Create a new feature request
- Describe your use case
- Explain why it would benefit to community
π’ Stay Updated β
- GitHub: Star and watch khapu2906/fire-shield
- NPM: Follow @fire-shield/core
- Changelog: Check releases
β Support β Project β
If you find Fire Shield helpful and want to support its development:
Your support helps maintain and improve Fire Shield! π
π‘ Future Ideas β
Long-term Vision (2027+) β
Advanced Permission Models
- π‘ Delegation chains (A delegates to B delegates to C)
- π‘ Conditional permissions (if-then rules)
- π‘ Permission templates and inheritance
- π‘ Geographic-based permissions
- π‘ Device-based access control
Enterprise Features
- π‘ Distributed RBAC across microservices
- π‘ Real-time permission sync
- π‘ RBAC-as-a-Service cloud offering
- π‘ Multi-region permission replication
- π‘ Advanced audit log querying and analytics
Developer Tools
- π‘ Web-based RBAC admin dashboard
- π‘ Browser DevTools extension
- π‘ Terraform/Pulumi providers
- π‘ OpenAPI/Swagger integration
- π‘ GraphQL schema generator
Standards & Compliance
- π‘ OAuth2/OIDC integration
- π‘ SAML support
- π‘ XACML compatibility
- π‘ ISO 27001 compliance toolkit
π― Community Priorities β
Based on GitHub issues and community feedback, these features are most requested:
High Priority β
- Permission Caching - Reduce redundant permission calculations
- GraphQL Adapter - First-class GraphQL support
- Interactive Playground - Try Fire Shield directly in browser
- Migration Guides - Easy migration from Casbin, CASL, etc.
Medium Priority β
- Temporal Permissions - Time-based access control
- Audit Log Analytics - Built-in reporting and dashboards
- NestJS Decorators - Native NestJS integration
- Permission Visualization - Graphical role/permission viewer
Under Consideration β
- Dynamic Permissions - Runtime permission definition
- Permission Marketplace - Share common permission schemas
- Federated RBAC - Cross-organization permissions
- Blockchain Audit Trail - Immutable audit logs
π Release Cycle β
Major Versions (x.0.0)
- Released yearly
- May include breaking changes
- Extensive migration guides provided
Minor Versions (2.x.0)
- Released quarterly
- New features, backward compatible
- Performance improvements
Patch Versions (2.1.x)
- Released as needed
- Bug fixes and security updates
- No breaking changes
π€ How to Contribute β
We welcome contributions to help achieve this roadmap!
Ways to Contribute β
Code Contributions
- Pick an issue from our GitHub Issues
- Submit pull requests for roadmap features
- Write tests and improve coverage
Documentation
- Improve existing documentation
- Write tutorials and guides
- Translate documentation to other languages
Community
- Answer questions in discussions
- Share your Fire Shield use cases
- Write blog posts about Fire Shield
Feedback
- Report bugs and issues
- Suggest new features
- Vote on existing feature requests
Feature Requests β
Have an idea not on this roadmap? We'd love to hear it!
- Check existing issues
- Create a new feature request
- Describe your use case
- Explain why it would benefit the community
π’ Stay Updated β
- GitHub: Star and watch khapu2906/fire-shield
- NPM: Follow @fire-shield/core
- Changelog: Check releases
β Support the Project β
If you find Fire Shield helpful and want to support its development:
Your support helps maintain and improve Fire Shield! π
