feat(scripts): Add community scripts subsystem: script index, runner, and CLI commands with background refresh; update docs and paths

This commit is contained in:
2025-10-27 17:29:52 +00:00
parent a289bcc413
commit fc22e1dd88
9 changed files with 819 additions and 17 deletions
+2 -1
View File
@@ -18,8 +18,9 @@ async function main() {
}
// Run the main function and handle any errors
// Note: This file is only used as the Node.js entry point
main().catch((error) => {
logger.error(`Error: ${error}`);
logger.log('error', `Error: ${error}`);
process.exit(1);
});