project-compass 3.6.3 → 3.6.4

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 (2) hide show
  1. package/README.md +33 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -72,6 +72,39 @@ npm install -g project-compass
72
72
 
73
73
  ![Exit Confirmation](https://raw.githubusercontent.com/CrimsonDevil333333/project-compass/master/assets/screenshots/exit-confirm.jpg)
74
74
 
75
+ ## ⚙️ Configuration & Customization
76
+
77
+ Project Compass is designed to be personalized. All settings and custom commands are stored in a local JSON file.
78
+
79
+ - **Location**: `~/.project-compass/config.json` (Automatically created on first run)
80
+
81
+ ### 🛠️ Adding Custom Commands
82
+ You can add your own project-specific commands directly within the app by pressing **Shift+C** in the Detail View. Use the format `Label|Command` (e.g., `Deploy|npm run deploy`).
83
+
84
+ ### 📁 Manual Config Structure
85
+ If you prefer manual editing, the `config.json` follows this structure:
86
+
87
+ ```json
88
+ {
89
+ "showArtBoard": true,
90
+ "showHelpCards": false,
91
+ "showStructureGuide": false,
92
+ "customCommands": {
93
+ "/path/to/your/project": [
94
+ {
95
+ "label": "Build Production",
96
+ "command": ["npm", "run", "build", "--prod"]
97
+ }
98
+ ]
99
+ }
100
+ }
101
+ ```
102
+
103
+ - `showArtBoard/HelpCards/Structure`: Persistence for your UI visibility preferences.
104
+ - `customCommands`: A map of absolute project paths to arrays of command objects.
105
+
106
+ ---
107
+
75
108
  ## 🚀 Vision
76
109
  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.
77
110
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "project-compass",
3
- "version": "3.6.3",
3
+ "version": "3.6.4",
4
4
  "description": "Futuristic project navigator and runner for Node, Python, Rust, and Go",
5
5
  "main": "src/cli.js",
6
6
  "bin": {