Files
rspade_system/app/RSpade/man
root d523f0f600 Fix code quality violations and exclude Manifest from checks
Document application modes (development/debug/production)
Add global file drop handler, order column normalization, SPA hash fix
Serve CDN assets via /_vendor/ URLs instead of merging into bundles
Add production minification with license preservation
Improve JSON formatting for debugging and production optimization
Add CDN asset caching with CSS URL inlining for production builds
Add three-mode system (development, debug, production)
Update Manifest CLAUDE.md to reflect helper class architecture
Refactor Manifest.php into helper classes for better organization
Pre-manifest-refactor checkpoint: Add app_mode documentation

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2026-01-14 10:38:22 +00:00
..
2025-12-03 22:44:48 +00:00
2025-12-18 18:18:05 +00:00
2026-01-12 17:25:07 +00:00
2026-01-06 06:03:05 +00:00

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 metadata
  • manifest_build.txt - Manifest compilation process and extension system
  • bundle_api.txt - Bundle system for asset compilation and management
  • controller.txt - Controllers, routing, and Ajax endpoints
  • jqhtml.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:

  1. Use .txt extension with underscores in filename
  2. Follow existing format structure
  3. Focus on API reference, not education
  4. Include real examples from codebase
  5. Keep descriptions terse but complete

Future Documentation

Planned additions:

  • model.txt - ORM and database models
  • auth.txt - Authentication system
  • middleware.txt - Request middleware
  • testing.txt - Testing framework
  • commands.txt - Artisan commands
  • debugging.txt - Debug tools and techniques