project-compass 3.5.7 โ 3.5.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/cli.js +25 -28
package/package.json
CHANGED
package/src/cli.js
CHANGED
|
@@ -629,43 +629,40 @@ async function main() {
|
|
|
629
629
|
return;
|
|
630
630
|
}
|
|
631
631
|
if (args.help) {
|
|
632
|
-
console.
|
|
632
|
+
console.clear();
|
|
633
|
+
console.log(kleur.magenta.bold('๐งญ Project Compass ยท Premium Developer Cockpit'));
|
|
634
|
+
console.log(kleur.dim('โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ'));
|
|
633
635
|
console.log('');
|
|
634
636
|
console.log(kleur.bold('Usage:'));
|
|
635
637
|
console.log(' project-compass [--dir <path>] [--studio]');
|
|
636
638
|
console.log('');
|
|
637
|
-
console.log(kleur.bold('
|
|
638
|
-
console.log('
|
|
639
|
-
console.log('
|
|
640
|
-
console.log('
|
|
639
|
+
console.log(kleur.cyan.bold('๐ Core Views:'));
|
|
640
|
+
console.log(' Shift+T ' + kleur.bold('Orbit Task Manager') + ' - Manage background processes & stream logs');
|
|
641
|
+
console.log(' Shift+P ' + kleur.bold('Package Registry') + ' - Direct dependency management (add/remove)');
|
|
642
|
+
console.log(' Shift+N ' + kleur.bold('Project Architect') + ' - Scaffold new projects from templates');
|
|
643
|
+
console.log(' Shift+A ' + kleur.bold('Omni-Studio') + ' - Environment & runtime health audit');
|
|
641
644
|
console.log('');
|
|
642
|
-
console.log(kleur.bold('
|
|
643
|
-
console.log(' โ / โ
|
|
644
|
-
console.log(' Enter
|
|
645
|
-
console.log(' Shift+
|
|
646
|
-
console.log('
|
|
647
|
-
console.log('
|
|
648
|
-
console.log(' Shift+N Open Project Architect (Scaffold new projects)');
|
|
649
|
-
console.log(' Shift+D Detach from active task (Keep it running in background)');
|
|
650
|
-
console.log(' Shift+B Toggle Art Board visibility');
|
|
651
|
-
console.log(' Shift+H Toggle Help Cards visibility');
|
|
652
|
-
console.log(' Shift+S Toggle Structure Guide visibility');
|
|
653
|
-
console.log(' Shift+X Clear active task output log');
|
|
654
|
-
console.log(' Shift+E Export current logs to a .txt file');
|
|
655
|
-
console.log(' Shift+โ / โ Scroll the output logs');
|
|
656
|
-
console.log(' Shift+Q Quit application (with confirmation if tasks run)');
|
|
645
|
+
console.log(kleur.yellow.bold('๐ฎ Navigation & Details:'));
|
|
646
|
+
console.log(' โ / โ Move focus through discovered projects');
|
|
647
|
+
console.log(' Enter Toggle deep detail view (manifests, scripts, frameworks)');
|
|
648
|
+
console.log(' Shift+C Add a persistent custom command to the focused project');
|
|
649
|
+
console.log(' 1-9 Quick-run numbered scripts in detail view');
|
|
650
|
+
console.log(' B/T/R Macro run: Build / Test / Run');
|
|
657
651
|
console.log('');
|
|
658
|
-
console.log(kleur.bold('
|
|
659
|
-
console.log(' Shift+
|
|
660
|
-
console.log(' Shift+
|
|
652
|
+
console.log(kleur.green.bold('๐ ๏ธ Workspace Tools:'));
|
|
653
|
+
console.log(' Shift+B Toggle Art-coded Build Atlas');
|
|
654
|
+
console.log(' Shift+S Toggle Directory Structure Guide');
|
|
655
|
+
console.log(' Shift+H Toggle Navigation Help Cards');
|
|
656
|
+
console.log(' Shift+โ/โ Scroll the live output log window');
|
|
657
|
+
console.log(' Shift+X Clear active log buffer');
|
|
658
|
+
console.log(' Shift+E Export current session logs to .txt');
|
|
661
659
|
console.log('');
|
|
662
|
-
console.log(kleur.bold('
|
|
663
|
-
console.log('
|
|
664
|
-
console.log('
|
|
665
|
-
console.log(' Shift+L Rerun the last executed command');
|
|
666
|
-
console.log(' Shift+C Add a custom command (in detail view)');
|
|
660
|
+
console.log(kleur.red.bold('๐ช System:'));
|
|
661
|
+
console.log(' Shift+Q Quit application (triggers confirmation if tasks are running)');
|
|
662
|
+
console.log(' Esc Global "Back" key to return to Main Navigator');
|
|
667
663
|
console.log('');
|
|
668
664
|
console.log(kleur.dim('Documentation: https://github.com/CrimsonDevil333333/project-compass'));
|
|
665
|
+
console.log(kleur.magenta('Crafted for performance by Satyaa & Clawdy'));
|
|
669
666
|
return;
|
|
670
667
|
}
|
|
671
668
|
const rootPath = args.root ? path.resolve(args.root) : process.cwd();
|