project-compass 3.5.7 → 3.5.9

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.
Files changed (3) hide show
  1. package/commands.md +26 -12
  2. package/package.json +1 -1
  3. package/src/cli.js +25 -28
package/commands.md CHANGED
@@ -7,19 +7,22 @@ This document lists all supported languages, frameworks, and their built-in comm
7
7
  | Key | Action |
8
8
  | --- | --- |
9
9
  | ↑ / ↓ | Move project focus |
10
- | Enter | Toggle detail view for selected project / Switch back from Tasks |
11
- | **Shift+A** | Open **Omni-Studio** (Environment intelligence) |
12
- | **Shift+T** | Open **Orbit Task Manager** |
10
+ | Enter | Toggle deep detail view / Switch back from sub-views |
11
+ | **Esc** | **Global Back**: Return to Main Navigator from any view |
12
+ | **Shift+A** | Open **Omni-Studio** (Environment & Runtime audit) |
13
+ | **Shift+T** | Open **Orbit Task Manager** (Manage background processes) |
14
+ | **Shift+P** | Open **Package Registry** (Manage dependencies) |
15
+ | **Shift+N** | Open **Project Architect** (Scaffold new projects) |
13
16
  | **Shift+D** | **Detach** from active task (runs in background) |
14
- | **Shift+B** | Toggle **Art Board** visibility (Saved to config) |
15
- | **Shift+H** | Toggle **Help Cards** visibility (Saved to config) |
16
- | **Shift+S** | Toggle **Structure Guide** visibility (Saved to config) |
17
+ | **Shift+B** | Toggle **Art Board** Build Atlas (Saved to config) |
18
+ | **Shift+H** | Toggle **Help Cards** UI (Saved to config) |
19
+ | **Shift+S** | Toggle **Structure Guide** (Saved to config) |
17
20
  | **Shift+X** | **Clear** active task output logs |
18
21
  | **Shift+E** | **Export** logs to a timestamped `.txt` file |
19
22
  | **Shift+L** | **Rerun** the last executed command |
20
23
  | **Shift+C** | Add a **Custom Command** (`label|cmd`) in detail view |
21
24
  | **Shift+Q** | **Quit** application (Confirms if tasks are running) |
22
- | Shift+↑ / ↓ | Scroll output logs (Intuitive direction) |
25
+ | Shift+↑ / ↓ | Scroll output logs |
23
26
  | ? | Toggle help overlay |
24
27
  | Ctrl+C | Interrupt running command |
25
28
 
@@ -40,8 +43,6 @@ Compass scans for the following manifests and requires their binaries in your PA
40
43
 
41
44
  ## Built-in Framework Intelligence
42
45
 
43
- When a framework is detected, specialized commands are injected automatically:
44
-
45
46
  | Framework | Icon | Commands |
46
47
  | --- | --- | --- |
47
48
  | **Next.js** | 🧭 | install, dev, build, test, start |
@@ -64,9 +65,22 @@ When a framework is detected, specialized commands are injected automatically:
64
65
  | **Prisma** | ◮ | install, generate, studio |
65
66
  | **Tailwind** | 🎨 | install |
66
67
 
67
- ## Task Manager Shortcuts (Shift+T)
68
+ ## Orbit Task Manager Shortcuts (Shift+T)
68
69
 
69
- - **Shift+K**: Kill a running process or remove a finished task from history.
70
+ - **Shift+K**: Kill a running process or remove a finished task.
70
71
  - **Shift+R**: Rename a task for better organization.
71
72
  - **Arrows**: Move focus between tasks.
72
- - **Enter**: Jump to the selected task's logs in Navigator.
73
+ - **Enter / Shift+T**: Return to Navigator.
74
+
75
+ ## Package Registry Shortcuts (Shift+P)
76
+
77
+ - **A**: Add a new package to the project.
78
+ - **R**: Remove an existing package.
79
+ - **S**: **Internal Switcher**: Quick-swap between detected projects.
80
+ - **Esc / Shift+P**: Return to Navigator.
81
+
82
+ ## Project Architect Shortcuts (Shift+N)
83
+
84
+ - **↑ / ↓**: Select a project template (Next.js, Vite, Rust, Go, etc.).
85
+ - **Enter**: Confirm selection and move to next step.
86
+ - **Esc / Shift+N**: Exit architect mode.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "project-compass",
3
- "version": "3.5.7",
3
+ "version": "3.5.9",
4
4
  "description": "Futuristic project navigator and runner for Node, Python, Rust, and Go",
5
5
  "main": "src/cli.js",
6
6
  "bin": {
package/src/cli.js CHANGED
@@ -629,43 +629,40 @@ async function main() {
629
629
  return;
630
630
  }
631
631
  if (args.help) {
632
- console.log(kleur.cyan('Project Compass · Ink project navigator/runner'));
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('Arguments:'));
638
- console.log(' --dir, --path <path> Specify root workspace directory to scan');
639
- console.log(' --studio Launch directly into Omni-Studio mode');
640
- console.log(' --help, -h Show this help menu');
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('Core Keybinds:'));
643
- console.log(' ↑ / ↓ Move project focus');
644
- console.log(' Enter Toggle detail view for selected project');
645
- console.log(' Shift+A Switch to Omni-Studio (Environment Health)');
646
- console.log(' Shift+T Open Orbit Task Manager (Manage background processes)');
647
- console.log(' Shift+P Open Package Registry (Add/Remove packages)');
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('Task Manager (Shift+T):'));
659
- console.log(' Shift+K Kill active/selected task');
660
- console.log(' Shift+R Rename selected task');
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('Execution shortcuts:'));
663
- console.log(' B / T / R Quick run: Build / Test / Run');
664
- console.log(' 1-9 / S+A-Z Run numbered commands in detail view');
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();