Skip to content

Commit 07890df

Browse files
BrainSlugs83Copilot
andcommitted
chore: improve discoverability — keywords, badges, engines
- Add npm keywords: model-context-protocol, copilot, long-term-memory, llm-memory, rag, ai, llm, sqlite, local-ai, privacy, offline - Add engines.node >= 18 (enables node version badge) - Add README badges: npm downloads, license, node version Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent f8e8ecf commit 07890df

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
[![CI](https://github.com/BrainSlugs83/GithubCopilotCLI-VectorMemoryMCP/actions/workflows/ci.yml/badge.svg)](https://github.com/BrainSlugs83/GithubCopilotCLI-VectorMemoryMCP/actions/workflows/ci.yml)
44
[![npm version](https://img.shields.io/npm/v/ghcp-cli-vector-memory-mcp)](https://www.npmjs.com/package/ghcp-cli-vector-memory-mcp)
5+
[![npm downloads](https://img.shields.io/npm/dm/ghcp-cli-vector-memory-mcp)](https://www.npmjs.com/package/ghcp-cli-vector-memory-mcp)
6+
[![license](https://img.shields.io/npm/l/ghcp-cli-vector-memory-mcp)](LICENSE)
7+
[![node](https://img.shields.io/node/v/ghcp-cli-vector-memory-mcp)](package.json)
58

69
An [MCP](https://modelcontextprotocol.io/) server that adds **persistent long-term memory** to [**GitHub Copilot CLI**](https://docs.github.com/en/copilot/github-copilot-in-the-cli) via local semantic vector search. Copilot can recall past conversations, code changes, and decisions across all sessions — by meaning, not just keywords.
710

package.json

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@
1515
"LICENSE",
1616
"README.md"
1717
],
18+
"engines": {
19+
"node": ">=18"
20+
},
1821
"type": "module",
1922
"license": "MIT",
2023
"homepage": "https://github.com/BrainSlugs83/GithubCopilotCLI-VectorMemoryMCP#installation",
@@ -25,16 +28,26 @@
2528
"keywords": [
2629
"mcp",
2730
"mcp-server",
31+
"model-context-protocol",
2832
"github-copilot",
2933
"github-copilot-cli",
3034
"copilot-cli",
35+
"copilot",
3136
"vector-search",
3237
"semantic-search",
3338
"memory",
39+
"long-term-memory",
40+
"llm-memory",
3441
"embeddings",
3542
"session-history",
3643
"onnx",
37-
"model-context-protocol"
44+
"rag",
45+
"ai",
46+
"llm",
47+
"sqlite",
48+
"local-ai",
49+
"privacy",
50+
"offline"
3851
],
3952
"scripts": {
4053
"lint": "eslint index.js vector-memory-server.js embed-worker.js lib.js",

0 commit comments

Comments
 (0)