@senoldogann/context-manager 0.1.6 → 0.1.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.
Files changed (3) hide show
  1. package/README.md +5 -0
  2. package/bin/ccm.js +2 -2
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -43,3 +43,8 @@ This package is a lightweight wrapper that:
43
43
  3. Automatically manages your global index and persistence in `~/.ccm`.
44
44
 
45
45
  For more details, visit the [Main Repository](https://github.com/senoldogann/LLM-Context-Manager).
46
+
47
+ ### 🆕 v0.1.7 Updates
48
+ * **Zero-Config:** Automatically detects project root.
49
+ * **Fixes:** Resolved context retrieval issues with absolute paths.
50
+
package/bin/ccm.js CHANGED
@@ -6,7 +6,7 @@ const fs = require('fs');
6
6
  const os = require('os');
7
7
  const https = require('https');
8
8
 
9
- const VERSION = '0.1.6';
9
+ const VERSION = '0.1.7';
10
10
  const REPO = 'senoldogann/LLM-Context-Manager';
11
11
  const BIN_DIR = path.join(os.homedir(), '.ccm', 'bin');
12
12
 
@@ -103,7 +103,7 @@ async function getBinary() {
103
103
  process.exit(0);
104
104
  }
105
105
 
106
- const binFilename = `${commandName}-${target}`;
106
+ const binFilename = `${commandName}-v${VERSION}-${target}`;
107
107
  const binPath = path.join(BIN_DIR, binFilename);
108
108
 
109
109
  if (fs.existsSync(binPath)) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@senoldogann/context-manager",
3
- "version": "0.1.6",
3
+ "version": "0.1.8",
4
4
  "description": "LLM Context Manager MCP Server & CLI wrapper using npx",
5
5
  "main": "bin/ccm.js",
6
6
  "bin": {