Update beads metadata

Fix Form_Utils bugs and unify error handling documentation
Protect framework files from auto-modification when not in developer mode

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

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
root
2025-12-03 22:44:48 +00:00
parent 8d92b287be
commit 45cf44edeb
355 changed files with 82 additions and 71 deletions

View File

@@ -88,6 +88,12 @@ class Document_Models_Command extends FrameworkDeveloperCommand
continue;
}
// Skip framework files (app/RSpade/) unless in framework developer mode
// This prevents end users from accidentally modifying framework source
if (str_starts_with($filePath, 'app/RSpade/') && !config('rsx.code_quality.is_framework_developer', false)) {
continue;
}
$models[$className] = $fullPath;
}