@imransiddique/cpla 1.0.1 → 1.0.3

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 +5 -2
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -35,6 +35,9 @@ An MCP server that gives GitHub Copilot self-awareness about YOUR personal codin
35
35
 
36
36
  ## 📦 Quick Install
37
37
 
38
+ **No installation required!** Just configure Copilot and it will use `npx` to run the server.
39
+
40
+ For global command line use (optional):
38
41
  ```bash
39
42
  npm install -g @imransiddique/cpla
40
43
  ```
@@ -115,9 +118,9 @@ Copilot: "Based on your patterns, add these to copilot-instructions.md:
115
118
  | `suggest_skills` | Personal skill suggestions | "What should I automate?", "Improve my workflow" |
116
119
  | `should_i_automate` | Check if action is auto-worthy | "Should I auto-run tests?" |
117
120
 
118
- ## 📦 Installation
121
+ ## 📦 From Source (Development)
119
122
 
120
- ### 1. Install dependencies
123
+ If you're developing CPLA locally:
121
124
 
122
125
  ```bash
123
126
  cd mcp-server
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@imransiddique/cpla",
3
- "version": "1.0.1",
3
+ "version": "1.0.3",
4
4
  "description": "Copilot Personal Learning Agent - Secure, private AI self-awareness. Part of the Agent-OS ecosystem.",
5
5
  "main": "./dist/index.js",
6
6
  "type": "module",
7
7
  "bin": {
8
- "cpla-server": "./dist/index.js"
8
+ "cpla-server": "dist/index.js"
9
9
  },
10
10
  "files": [
11
11
  "dist/**/*",