basemind 0.1.1 → 0.2.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.
Files changed (2) hide show
  1. package/README.md +10 -28
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -1,14 +1,9 @@
1
1
  # basemind
2
2
 
3
- **Give your AI coding agent a brain for your repo.**
4
-
5
- basemind is a code-map MCP server: it indexes your codebase into a queryable map
6
- so AI coding agents — Claude Code, Cursor, Continue, anything that speaks
7
- [MCP](https://modelcontextprotocol.io) — get instant semantic answers about your
8
- code. Where is this defined? Who calls it? When did it change? What's churning?
9
-
10
- Sub-millisecond queries. 300+ languages out of the box. Local-only. Built in Rust.
3
+ Full AI context layer for coding agents code-map, document RAG, shared memory, web crawl,
4
+ git history. 300+ languages, one MCP server.
11
5
 
6
+ <!-- markdownlint-disable-next-line MD013 -->
12
7
  [![License: MIT](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/Goldziher/basemind/blob/main/LICENSE)
13
8
  [![npm](https://img.shields.io/npm/v/basemind.svg)](https://www.npmjs.com/package/basemind)
14
9
 
@@ -18,10 +13,9 @@ Sub-millisecond queries. 300+ languages out of the box. Local-only. Built in Rus
18
13
  npm install -g basemind
19
14
  ```
20
15
 
21
- The installer downloads the appropriate pre-compiled Rust binary for your
22
- platform (macOS, Linux, Windows; x86_64 + arm64) from
23
- [GitHub Releases](https://github.com/Goldziher/basemind/releases) on first
24
- install.
16
+ The installer downloads the appropriate pre-compiled Rust binary for your platform (macOS,
17
+ Linux, Windows; x86_64 + arm64) from
18
+ [GitHub Releases](https://github.com/Goldziher/basemind/releases) on first install.
25
19
 
26
20
  ## Quickstart
27
21
 
@@ -31,24 +25,12 @@ basemind scan # index the working tree
31
25
  basemind serve # run the MCP stdio server
32
26
  ```
33
27
 
34
- Wire `basemind serve` into Claude Code (`~/.claude.json`) or any MCP client:
35
-
36
- ```json
37
- {
38
- "mcpServers": {
39
- "basemind": {
40
- "command": "basemind",
41
- "args": ["serve"],
42
- "cwd": "/abs/path/to/your/repo"
43
- }
44
- }
45
- }
46
- ```
28
+ Wire `basemind serve` into Claude Code or any MCP client.
47
29
 
48
- ## Documentation
30
+ ## Full documentation
49
31
 
50
- Full docs, architecture, and the complete MCP tool table at
51
- [github.com/Goldziher/basemind](https://github.com/Goldziher/basemind).
32
+ See the [main README](https://github.com/Goldziher/basemind#readme) for complete docs,
33
+ architecture, MCP tool reference, and per-harness setup instructions.
52
34
 
53
35
  ## License
54
36
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "basemind",
3
- "version": "0.1.1",
4
- "description": "Tree-sitter code-map + git context MCP server. Use for navigating large or unfamiliar codebases: outline files, find references/callers, search symbols, walk recent history, blame and diff at the symbol level.",
3
+ "version": "0.2.1",
4
+ "description": "Full AI context layer over MCP tree-sitter code-map, document RAG (PDF/Office/HTML/email + OCR + reranker), shared agent memory, on-demand web crawl, git history + blame + per-symbol diff. 300+ languages, 8 coding-agent harnesses, content-addressed Fjall + LanceDB.",
5
5
  "main": "index.js",
6
6
  "bin": {
7
7
  "basemind": "bin/basemind.js"
@@ -11,10 +11,10 @@
11
11
  },
12
12
  "keywords": [
13
13
  "mcp",
14
- "tree-sitter",
14
+ "agent-context",
15
+ "rag",
15
16
  "code-map",
16
- "scanner",
17
- "indexer"
17
+ "tree-sitter"
18
18
  ],
19
19
  "author": "Na'aman Hirschfeld",
20
20
  "license": "MIT",