project-compass 3.9.1 → 3.9.2

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/README.md +12 -10
  2. package/package.json +1 -1
  3. package/src/cli.js +1 -1
package/README.md CHANGED
@@ -19,17 +19,19 @@ npm install -g project-compass
19
19
  ## 🌟 Premium Features
20
20
 
21
21
  ### 🌌 The Navigator (Main Interface)
22
- - **Automatic Discovery**: Instantly identifies **Node.js (Next.js, React, Vue, NestJS, Angular, SvelteKit, Nuxt, Astro)**, **Python (Django, Flask, FastAPI)**, **Rust (Rocket, Actix)**, **Go**, **Java (Spring Boot)**, **.NET (ASP.NET Core)**, **PHP (Laravel)**, and **Ruby**.
23
- - **Package Manager Intelligence**: Context-aware detection of `pnpm`, `bun`, `yarn`, and `npm`. No hardcoded commands—Compass uses your project's preferred tool.
24
- - **Deep Detail View**: Press `Enter` to reveal project manifests, detected frameworks, and available scripts.
25
- - **Custom Actions**: Save persistent, project-specific commands with `Shift+C` (e.g., `deploy|npm run deploy --prod`).
26
- - **Macro Commands**: High-speed access to core workflows:
27
- - `B`: Build
28
- - `T`: Test
29
- - `R`: Run / Start
30
- - `I`: Install Dependencies (New!)
31
- - **Live Output Panel**: Stream real-time logs from active processes with dedicated scrolling (`Shift+↑/↓`).
22
+ - **Automatic Discovery**: Instantly identifies **Node.js, Python, Rust, Go, Java, PHP, Ruby, .NET, and Shell/Make**.
23
+ - **Paginated Control**: Optimized for massive workspaces. View projects in clean, manageable pages with **Page Up / Page Down** support.
24
+ - **Configurable UI**: Customize your view with `maxVisibleProjects` and toggleable Art Boards and Help Cards.
32
25
 
26
+ ### 📦 Package Registry (`Shift+P`)
27
+ - **Native Logic**: Automatically uses your project's preferred package manager (**npm, pnpm, yarn, bun, pip, cargo, composer, dotnet**). No more "command not found" errors.
28
+ - **Internal Switcher**: Quick-swap between detected projects directly inside the registry.
29
+
30
+ ### 🏗️ Project Architect (`Shift+N`)
31
+ - **Modern Templates**: Scaffold high-performance projects with built-in support for **Bun, Next.js, Vite, Rust, and Django**.
32
+
33
+ ### 🤖 AI Horizon (`Shift+O`) - [BETA]
34
+ - **Coming Soon**: Connect to **Ollama, Gemini, or Claude** to analyze custom projects and generate intelligent build/deploy commands automatically.
33
35
  ### 🛰️ Orbit Task Manager (`Shift+T`)
34
36
  - **Background Orchestration**: Keep tasks running while you navigate the rest of your workspace.
35
37
  - **Process Management**: Monitor status (Running, Finished, Failed, Killed) and forcefully terminate processes with `Shift+K`.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "project-compass",
3
- "version": "3.9.1",
3
+ "version": "3.9.2",
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
@@ -375,7 +375,7 @@ function Compass({rootPath, initialView = 'navigator'}) {
375
375
  if (shiftCombo('s')) { console.clear(); setConfig(prev => { const next = {...prev, showStructureGuide: !prev.showStructureGuide}; saveConfig(next); return next; }); return; }
376
376
  if (shiftCombo('a')) { clearAndSwitch(mainView === 'navigator' ? 'studio' : 'navigator'); return; }
377
377
  if (shiftCombo('p')) { clearAndSwitch(mainView === 'navigator' ? 'registry' : 'navigator'); return; }
378
- if (shiftCombo('n')) { clearAndSwitch(mainView === 'navigator' ? 'architect' : 'navigator'); return; }
378
+ if (shiftCombo('n')) { clearAndSwitch(mainView === 'navigator' ? 'architect' : 'navigator'); return; }\n if (shiftCombo('o')) { clearAndSwitch(mainView === 'navigator' ? 'ai' : 'navigator'); return; }
379
379
  if (shiftCombo('x')) { console.clear(); setTasks(prev => prev.map(t => t.id === activeTaskId ? {...t, logs: []} : t)); setLogOffset(0); return; }
380
380
  if (shiftCombo('e')) { exportLogs(); return; }
381
381
  if (shiftCombo('d')) { console.clear(); setActiveTaskId(null); return; }