codebase-context 1.8.1 → 1.8.2
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/README.md +21 -2
- package/package.json +1 -2
package/README.md
CHANGED
|
@@ -22,8 +22,27 @@ One tool call returns all of it. Local-first - your code never leaves your machi
|
|
|
22
22
|
|
|
23
23
|
The index auto-refreshes as you edit - a file watcher triggers incremental reindex in the background when the MCP server is running. No stale context between tool calls.
|
|
24
24
|
|
|
25
|
-
|
|
26
|
-
|
|
25
|
+
### What it looks like
|
|
26
|
+
|
|
27
|
+
Real CLI output against `angular-spotify`, the repo used for the launch screenshots.
|
|
28
|
+
|
|
29
|
+
**Lead signal: pattern drift and golden files**
|
|
30
|
+
|
|
31
|
+

|
|
32
|
+
|
|
33
|
+
This is the part most tools miss: what the team is doing now, what it is moving away from, and which files are the best examples to follow.
|
|
34
|
+
|
|
35
|
+
**Before editing: preflight and impact**
|
|
36
|
+
|
|
37
|
+

|
|
38
|
+
|
|
39
|
+
When the agent searches with edit intent, it gets a compact decision card: confidence, whether it's safe to proceed, which patterns apply, the best example, and which files are likely to be affected.
|
|
40
|
+
|
|
41
|
+
More CLI examples:
|
|
42
|
+
|
|
43
|
+
- `refs --symbol "ComponentStore"` for concrete static references
|
|
44
|
+
- `metadata` for a quick codebase overview
|
|
45
|
+
- Full gallery in `docs/cli.md`
|
|
27
46
|
|
|
28
47
|
## Quick Start
|
|
29
48
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codebase-context",
|
|
3
|
-
"version": "1.8.
|
|
3
|
+
"version": "1.8.2",
|
|
4
4
|
"description": "Second brain for AI agents working on your codebase - team coding patterns detection, persistent memory, edit readiness checks, and hybrid search with evidence scoring. Local-first MCP server",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/lib.js",
|
|
@@ -135,7 +135,6 @@
|
|
|
135
135
|
"vitest": "^4.0.18"
|
|
136
136
|
},
|
|
137
137
|
"scripts": {
|
|
138
|
-
"preinstall": "npx only-allow pnpm",
|
|
139
138
|
"sync:grammars": "node scripts/sync-grammars.mjs",
|
|
140
139
|
"prebuild": "pnpm run sync:grammars",
|
|
141
140
|
"build": "tsc",
|