Framework Capabilities
FW is designed from the ground up for high performance, asynchronous execution, and excellent developer/agent experience.
Core Capabilities
| Feature | FW (v1.0) |
|---|---|
| Philosophy | Lean Core, Deterministic |
| Runtime | Swoole / RoadRunner |
| Async Support | Native (Event Loop) |
| Routing | Compiled Static |
| Dependency Injection | Compiled No-Reflection |
| ORM / Database | Typed Repositories |
| Cold Start Performance | High (Pre-compiled) |
| Throughput (RPS) | Extreme (~20k+) |
| Standard Core Size | Minimal (< 1MB) |
| CSRF / Session | Opt-in |
Principles
- Deterministic YAML: The entire API and database schema are defined in YAML, allowing rapid understanding of the system structure.
- MCP Server: Built-in Model Context Protocol support allows context-aware tools to "handshake" with the framework and receive a live JSON map of routes, dependencies, and metadata.
- Strict Typing: Compilation-time DTOs and Repository generation ensure precise data contracts.
- Zero Bloat: Developers and agents don't have to navigate through legacy features or mandatory stateful sessions unless explicitly enabled.