project-compass 3.5.8 → 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.
- package/commands.md +26 -12
- package/package.json +1 -1
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
|
|
11
|
-
| **
|
|
12
|
-
| **Shift+
|
|
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**
|
|
15
|
-
| **Shift+H** | Toggle **Help Cards**
|
|
16
|
-
| **Shift+S** | Toggle **Structure Guide**
|
|
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
|
|
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
|
|
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**:
|
|
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.
|