@senoldogann/context-manager 0.1.2 → 0.1.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 +34 -0
  2. package/package.json +1 -1
package/README.md ADDED
@@ -0,0 +1,34 @@
1
+ # @senoldogann/context-manager
2
+
3
+ > 🧠 The Neural Backbone for Autonomous AI Agents
4
+
5
+ This is the Node.js wrapper for the **Cognitive Codebase Matrix (CCM)**. It allows you to run the CCM CLI and MCP server without manually installing Rust or building from source.
6
+
7
+ ## 🚀 Quick Start
8
+
9
+ Run the indexer via `npx`:
10
+ ```bash
11
+ npx @senoldogann/context-manager index --path .
12
+ ```
13
+
14
+ ## 🤖 AI Editor Integration (MCP)
15
+
16
+ Add this to your `mcp_config.json`:
17
+
18
+ ```json
19
+ "context-manager": {
20
+ "command": "npx",
21
+ "args": ["-y", "@senoldogann/context-manager", "mcp"],
22
+ "env": {
23
+ "RUST_LOG": "info"
24
+ }
25
+ }
26
+ ```
27
+
28
+ ## 📦 What this package does
29
+ This package is a lightweight wrapper that:
30
+ 1. Detects your OS and CPU architecture.
31
+ 2. Downloads the pre-built Rust binaries from GitHub Releases if not already present.
32
+ 3. Automatically manages your global index and persistence in `~/.ccm`.
33
+
34
+ For more details, visit the [Main Repository](https://github.com/senoldogann/LLM-Context-Manager).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@senoldogann/context-manager",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "LLM Context Manager MCP Server & CLI wrapper using npx",
5
5
  "main": "bin/ccm.js",
6
6
  "bin": {