Implement JQHTML function cache ID system and fix bundle compilation Implement underscore prefix for system tables Fix JS syntax linter to support decorators and grant exception to Task system SPA: Update planning docs and wishlists with remaining features SPA: Document Navigation API abandonment and future enhancements Implement SPA browser integration with History API (Phase 1) Convert contacts view page to SPA action Convert clients pages to SPA actions and document conversion procedure SPA: Merge GET parameters and update documentation Implement SPA route URL generation in JavaScript and PHP Implement SPA bootstrap controller architecture Add SPA routing manual page (rsx:man spa) Add SPA routing documentation to CLAUDE.md Phase 4 Complete: Client-side SPA routing implementation Update get_routes() consumers for unified route structure Complete SPA Phase 3: PHP-side route type detection and is_spa flag Restore unified routes structure and Manifest_Query class Refactor route indexing and add SPA infrastructure Phase 3 Complete: SPA route registration in manifest Implement SPA Phase 2: Extract router code and test decorators Rename Jqhtml_Component to Component and complete SPA foundation setup 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
RSX Framework Manual Pages
Overview
This directory contains technical documentation for the RSX Framework, formatted as traditional Unix manual pages from the late 1990s. Plain text format ensures easy copying and pasting of examples.
Design Philosophy
- Plain text format - No fancy formatting or special characters
- Laravel comparisons - Explicit differences from Laravel equivalents
- Framework philosophy - Explains the "why" behind RSX design choices
- Practical examples - Real-world usage patterns
- LLM-optimized - Structured for easy parsing
Available Documentation
Core Systems
manifest_api.txt- Manifest class API for file discovery and metadatamanifest_build.txt- Manifest compilation process and extension systembundle_api.txt- Bundle system for asset compilation and managementcontroller.txt- Controllers, routing, and Ajax endpointsjqhtml.txt- JQHTML component system and jQuery integration
Naming Convention
Files use alphanumeric_underscore.txt format for consistency with RSX conventions.
Usage
Read directly or access via rsx:man command:
php artisan rsx:man manifest_api
php artisan rsx:man controller
Format
Each manual page follows standard sections:
- NAME - Component and brief description
- SYNOPSIS - Quick usage examples
- DESCRIPTION - Overview of functionality
- Subsections for specific features
- EXAMPLES - Practical code samples
- TROUBLESHOOTING - Common issues
- SEE ALSO - Related documentation
Contributing
When adding new documentation:
- Use
.txtextension with underscores in filename - Follow existing format structure
- Focus on API reference, not education
- Include real examples from codebase
- Keep descriptions terse but complete
Future Documentation
Planned additions:
model.txt- ORM and database modelsauth.txt- Authentication systemmiddleware.txt- Request middlewaretesting.txt- Testing frameworkcommands.txt- Artisan commandsdebugging.txt- Debug tools and techniques