project-compass 3.5.9 → 3.6.0

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/README.md CHANGED
@@ -1,58 +1,71 @@
1
- # Project Compass (v3.5.1)
1
+ # 🧭 Project Compass
2
2
 
3
- Project Compass is a futuristic CLI navigator and lifecycle orchestrator built with [Ink](https://github.com/vadimdemedes/ink). It scans your folder tree for code projects and provides a unified interface to install, build, test, and manage them.
3
+ **Futuristic Project Navigator & Runner for the Modern Developer**
4
4
 
5
- ## Highlights
5
+ Project Compass is a high-performance, TUI (Terminal User Interface) workspace orchestrator built with Ink and React. It transforms your terminal into a command center for managing complex, multi-stack environments with a focus on speed, safety, and visual clarity.
6
6
 
7
- - 🔍 **Omni-Scanner**: Deep-scans directories for Node.js, Python, Rust, Go, Java, Scala, PHP, Ruby, and .NET projects.
8
- - 🏗️ **Project Architect (Shift+N)**: Scaffold new projects from industry-standard templates (Next.js, Vite, Rust, Go) into any target path.
9
- - 📦 **Package Registry (Shift+P)**: Interactively add/remove dependencies and manage environments (like Python `.venv`) without leaving the CLI.
10
- - 🛰️ **Orbit Task Manager (Shift+T)**: Run multiple commands in parallel, detach them to the background (**Shift+D**), and manage them (Rename/Kill).
11
- - 💀 **Atomic Kill (Ctrl+C)**: Forcefully wipe out entire process trees and zombie servers using kernel-level signal forwarding.
12
- - 💎 **Omni-Studio (Shift+A)**: Real-time environment intelligence dashboard showing all installed runtimes and versions.
13
- - 💾 **Global Persistence**: Remembers your UI preferences (Art Board, Help, Structure Guide) via `~/.project-compass/config.json`.
14
- - 🎨 **Flicker-Free UI**: Isolated rendering architecture ensures zero UI jitter even during high-velocity log streaming.
7
+ ![Navigator View](./assets/screenshots/navigator.jpg)
15
8
 
16
- ## Installation
9
+ ## 🌟 Premium Features
17
10
 
18
- ```bash
19
- npm install -g project-compass
20
- ```
11
+ ### 🌌 The Navigator (Main Interface)
12
+ - **Automatic Discovery**: Instantly scans and identifies Node.js, Python, Rust, Go, Java, Scala, PHP, and Ruby projects.
13
+ - **Deep Detail View**: Press `Enter` to reveal project manifests, detected frameworks, and available scripts.
14
+ - **Custom Actions**: Save persistent, project-specific commands with `Shift+C` (e.g., `deploy|npm run deploy --prod`).
15
+ - **Live Output Panel**: Stream real-time logs from active processes with dedicated scrolling (`Shift+↑/↓`).
16
+
17
+ ### 🛰️ Orbit Task Manager (`Shift+T`)
18
+ - **Background Orchestration**: Keep tasks running while you navigate the rest of your workspace.
19
+ - **Process Management**: Monitor status (Running, Finished, Failed, Killed) and forcefully terminate processes with `Shift+K`.
20
+ - **Task Identity**: Rename tasks on the fly with `Shift+R` to keep your workspace organized.
21
+
22
+ ![Task Manager](./assets/screenshots/taskmanager.jpg)
23
+
24
+ ### 📦 Package Registry (`Shift+P`)
25
+ - **Context-Aware Management**: Add or remove dependencies without leaving the app.
26
+ - **Internal Switcher**: Quick-swap projects within the registry view using `S`.
27
+ - **Multi-Runtime Support**: Handles `npm`, `pip`, and more based on project type.
28
+
29
+ ![Package Registry](./assets/screenshots/registry.jpg)
30
+
31
+ ### 🏗️ Project Architect (`Shift+N`)
32
+ - **Rapid Scaffolding**: Create new projects from scratch using industry-standard templates.
33
+ - **Interactive Prompts**: Safe, guided setup for directory structure and initial manifests.
21
34
 
22
- ## Usage
35
+ ![Project Architect](./assets/screenshots/architect.jpg)
36
+
37
+ ### 🎨 Omni-Studio & Art Board
38
+ - **Environment Health (`Shift+A`)**: Audit your system dependencies and runtime versions.
39
+ - **Build Atlas (`Shift+B`)**: A visual, art-coded representation of your project landscape.
40
+
41
+ ![Omni-Studio](./assets/screenshots/studio.jpg)
42
+ ![Art Board](./assets/screenshots/artboard.jpg)
43
+
44
+ ## ⌨️ Command Reference
45
+
46
+ | Shortcut | Action |
47
+ | :--- | :--- |
48
+ | `↑ / ↓` | Move project focus |
49
+ | `Enter` | Toggle project Detail View |
50
+ | `Shift + T` | **Orbit**: Task Manager |
51
+ | `Shift + P` | **Registry**: Package Manager |
52
+ | `Shift + N` | **Architect**: Project Creator |
53
+ | `Shift + A` | **Studio**: Environment Health |
54
+ | `Shift + B` | Toggle **Art Board** visibility |
55
+ | `Shift + H` | Toggle **Help Cards** |
56
+ | `Shift + S` | Toggle **Structure Guide** |
57
+ | `Shift + Q` | Quit (with safe-exit confirmation) |
58
+ | `?` | Toggle Help Overlay |
59
+
60
+ ## 🛠️ Installation
23
61
 
24
62
  ```bash
25
- project-compass [--dir /path/to/workspace] [--studio] [--version]
63
+ npm install -g project-compass
26
64
  ```
27
65
 
28
- ### Keyboard Master Guide
29
-
30
- | Key | Action |
31
- | --- | --- |
32
- | / | Move focus between projects |
33
- | **Enter** | Toggle Detail View / Return from Tasks |
34
- | **Shift+N** | Open **Project Architect** (Create new project) |
35
- | **Shift+P** | Open **Package Registry** (Manage dependencies) |
36
- | **Shift+T** | Open **Orbit Task Manager** |
37
- | **Shift+D** | **Detach** active task to background |
38
- | **Shift+A** | Open **Omni-Studio** (Environment intelligence) |
39
- | **Shift+B** | Toggle **Art Board** visibility |
40
- | **Shift+H** | Toggle **Help Cards** visibility |
41
- | **Shift+S** | Toggle **Structure Guide** |
42
- | **Shift+X** | **Clear** log buffer for active task |
43
- | **Shift+E** | **Export** current logs to `.txt` |
44
- | **Shift+L** | **Rerun** last executed command |
45
- | **Shift+Q** | **Quit** (Confirms if tasks are running) |
46
- | **Ctrl+C** | **Force Kill** all background tasks and exit |
47
- | Shift+↑ / ↓ | Scroll output logs (Intuitive direction) |
48
- | **?** | Toggle help overlay |
49
-
50
- ## Framework Support
51
-
52
- Compass provides specialized intelligence for 20+ stacks including **Next.js, React, Vue, NestJS, Spring Boot, ASP.NET Core, Laravel, Rocket, Actix, Prisma, and Tailwind**.
53
-
54
- For a full list of framework-specific commands and shortcuts, see [commands.md](./commands.md).
55
-
56
- ## License
57
-
58
- MIT © 2026 Satyaa & Clawdy
66
+ ## 🚀 Vision
67
+ Project Compass is designed to be the "Last Terminal Tool" you ever need to open. It bridges the gap between raw CLI commands and full IDEs, giving you a professional, reactive cockpit for all your development work.
68
+
69
+ ---
70
+ **Crafted with ❤️ by Satyaa & Clawdy**
71
+ *MIT License*
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "project-compass",
3
- "version": "3.5.9",
3
+ "version": "3.6.0",
4
4
  "description": "Futuristic project navigator and runner for Node, Python, Rust, and Go",
5
5
  "main": "src/cli.js",
6
6
  "bin": {