codebase-context 1.5.1 → 1.6.1

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.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "codebase-context",
3
- "version": "1.5.1",
4
- "description": "MCP server for codebase intelligence patterns, conventions, architecture, and rationale for AI coding agents",
3
+ "version": "1.6.1",
4
+ "description": "Local-first MCP server that gives AI agents team context: patterns and conventions, memory to remember decisions and failures, preflight checks, and hybrid search with evidence quality scoring",
5
5
  "type": "module",
6
6
  "main": "./dist/lib.js",
7
7
  "types": "./dist/lib.d.ts",
@@ -37,7 +37,8 @@
37
37
  "files": [
38
38
  "dist",
39
39
  "README.md",
40
- "LICENSE"
40
+ "LICENSE",
41
+ "docs"
41
42
  ],
42
43
  "engines": {
43
44
  "node": ">=18.0.0"
@@ -46,23 +47,43 @@
46
47
  "mcp",
47
48
  "mcp-server",
48
49
  "model-context-protocol",
49
- "codebase",
50
+ "codebase-context",
50
51
  "code-intelligence",
51
52
  "code-patterns",
52
- "code-conventions",
53
+ "team-conventions",
54
+ "pattern-detection",
53
55
  "semantic-search",
54
56
  "vector-search",
57
+ "hybrid-search",
58
+ "retrieval",
59
+ "reranking",
60
+ "rrf",
61
+ "cross-encoder",
62
+ "context-engineering",
63
+ "local-first",
64
+ "privacy-first",
55
65
  "embeddings",
56
- "ai",
66
+ "preflight",
67
+ "evidence-scoring",
68
+ "golden-files",
69
+ "ai-coding",
70
+ "ai-agents",
57
71
  "llm",
58
72
  "claude",
73
+ "claude-code",
59
74
  "cursor",
60
75
  "copilot",
76
+ "windsurf",
61
77
  "angular",
62
78
  "react",
79
+ "typescript",
63
80
  "developer-tools",
64
81
  "static-analysis",
65
- "code-quality"
82
+ "code-quality",
83
+ "team-memory",
84
+ "second-brain",
85
+ "code-search",
86
+ "codebase-intelligence"
66
87
  ],
67
88
  "repository": {
68
89
  "type": "git",
@@ -79,10 +100,10 @@
79
100
  },
80
101
  "license": "MIT",
81
102
  "dependencies": {
103
+ "@huggingface/transformers": "^3.8.1",
82
104
  "@lancedb/lancedb": "^0.4.0",
83
105
  "@modelcontextprotocol/sdk": "^1.25.2",
84
106
  "@typescript-eslint/typescript-estree": "^7.0.0",
85
- "@xenova/transformers": "^2.17.0",
86
107
  "fuse.js": "^7.0.0",
87
108
  "glob": "^10.3.10",
88
109
  "hono": "4.11.7",
@@ -118,6 +139,7 @@
118
139
  "lint": "eslint \"src/**/*.ts\"",
119
140
  "format": "prettier --write \"src/**/*.ts\"",
120
141
  "format:check": "prettier --check \"src/**/*.ts\"",
121
- "type-check": "tsc --noEmit"
142
+ "type-check": "tsc --noEmit",
143
+ "mcp:inspect": "npx -y @modelcontextprotocol/inspector node dist/index.js ."
122
144
  }
123
145
  }