project-compass 4.3.7 → 4.3.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/README.md CHANGED
@@ -21,6 +21,12 @@ npm start
21
21
 
22
22
  ---
23
23
 
24
+ ## 📸 Screenshot
25
+
26
+ ![Project Compass Navigator](https://raw.githubusercontent.com/CrimsonDevil333333/project-compass/master/assets/screenshots/home.png)
27
+
28
+ ---
29
+
24
30
  ## 🔗 Links
25
31
 
26
32
  - **NPM Package**: [npmjs.com/package/project-compass](https://www.npmjs.com/package/project-compass)
@@ -61,6 +67,8 @@ npm start
61
67
  - **Log Management**: Clear logs (`Shift+X`) or export to file (`Shift+E`)
62
68
  - **Multi-Task Support**: Run multiple commands simultaneously
63
69
 
70
+ ![Orbit Task Manager](https://raw.githubusercontent.com/CrimsonDevil333333/project-compass/master/assets/screenshots/task_manager.png)
71
+
64
72
  ---
65
73
 
66
74
  ## 📦 Package Registry (`Shift+P`)
@@ -120,6 +128,8 @@ project-compass --scaffold python-basic --name my-script --dir /tmp
120
128
  | **Anthropic Claude** | `https://api.anthropic.com/v1/messages` | Requires API key |
121
129
  | **Ollama (Local)** | `http://localhost:11434/api/generate` | Local installation required |
122
130
 
131
+ ![AI Horizon](https://raw.githubusercontent.com/CrimsonDevil333333/project-compass/master/assets/screenshots/ai_mode.png)
132
+
123
133
  ---
124
134
 
125
135
  ## 🔌 Infrastructure Control (`Shift+R`)
@@ -142,6 +152,12 @@ project-compass --scaffold python-basic --name my-script --dir /tmp
142
152
  - **Build Atlas**: Visual representation of your workspace
143
153
  - **Toggle Visibility**: Saved to config (`showArtBoard`)
144
154
 
155
+ ![Omni-Studio](https://raw.githubusercontent.com/CrimsonDevil333333/project-compass/master/assets/screenshots/languages_checker_omni_studio.png)
156
+
157
+ ![Art Board](https://raw.githubusercontent.com/CrimsonDevil333333/project-compass/master/assets/screenshots/art_bar.png)
158
+
159
+ ![Help & Structure](https://raw.githubusercontent.com/CrimsonDevil333333/project-compass/master/assets/screenshots/help_structure.png)
160
+
145
161
  ---
146
162
 
147
163
  ## ⌨️ Complete Command Reference
@@ -532,6 +548,33 @@ This file is automatically loaded during project detection and merged into proje
532
548
 
533
549
  ---
534
550
 
551
+ ## 🎯 Recent Fixes (v4.3.7)
552
+
553
+ ### 1. Python Binary Detection Bug FIXED
554
+ **Problem**: `python.js` checked if ALL of `['python3', 'python', 'uv']` binaries existed, causing false "Runtime missing" warnings when only `python` or `python3` was available.
555
+
556
+ **Root Cause**: `binaries.filter(b => !checkBinary(b))` treats alternate Python binary names as separate requirements.
557
+
558
+ **Fix Applied**:
559
+ - Now checks if AT LEAST ONE Python runtime exists
560
+ - Only shows "Runtime missing" when no Python runtime is found
561
+
562
+ ### 2. Removed Unused Store
563
+ **Problem**: `src/store/useProjectStore.js` existed but was never imported anywhere.
564
+
565
+ **Fix Applied**:
566
+ - Removed dead code file
567
+ - Updated all documentation
568
+
569
+ ### 4. Added Screenshots to README
570
+ **Problem**: README had no images, and package wouldn't show screenshots on npmjs.com because of relative paths.
571
+
572
+ **Fix Applied**:
573
+ - Added 6 screenshots using raw GitHub URLs
574
+ - Navigator Home, Task Manager, AI Horizon, Omni-Studio, Art Board, Help Structure
575
+
576
+ ---
577
+
535
578
  ## 🚀 Performance
536
579
 
537
580
  - **Fast Scanning**: Uses `fast-glob` for high-speed project discovery
Binary file
Binary file
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "project-compass",
3
- "version": "4.3.7",
3
+ "version": "4.3.8",
4
4
  "description": "🧭 Futuristic TUI workspace navigator & runner - AI-powered project detection for Node, Python, Rust, Go, Java, PHP, Ruby, .NET",
5
5
  "main": "src/cli.js",
6
6
  "bin": {
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file