pando-ai 0.2.0 → 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 +29 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,8 +1,12 @@
1
1
  # pandō CLI
2
2
 
3
- `pando-ai` is the standalone MCP CLI for the shared pandō engine runtime.
3
+ `pando-ai` is the standalone CLI for `pandō`, a code indexing and semantic code editing engine exposed over MCP.
4
4
 
5
- It starts the same core indexing and tool runtime used by the VS Code extension, but runs headlessly for terminal agents and local MCP clients.
5
+ `pandō` scans a repository, builds a structured index of code and symbols, and serves tools that let agents search code, follow references, inspect callers, and make targeted edits using syntax-aware operations instead of raw text matching.
6
+
7
+ For example, an MCP client can use `pandō` to find a function definition, list every caller across a large codebase, and then add a parameter with `change-signature`, updating the function and its call sites together.
8
+
9
+ `pando-ai` starts the same core indexing and tool runtime used by the VS Code extension, but runs headlessly for terminal agents and local MCP clients. We have tested it on codebases as large as Metabase and Visual Studio Code.
6
10
 
7
11
  ## Install
8
12
 
@@ -43,6 +47,29 @@ pando-ai --help
43
47
 
44
48
  At startup, the CLI detects common MCP clients and prints a matching configuration snippet when possible.
45
49
 
50
+ You can also install `pando-ai` manually as an MCP server:
51
+
52
+ ```bash
53
+ # Claude Code
54
+ claude mcp add pando-ai -- npx -y pando-ai
55
+
56
+ # Codex CLI
57
+ codex mcp add pando-ai -- npx -y pando-ai
58
+ ```
59
+
60
+ Cursor uses `mcp.json` instead of an `add` command. Add this to `.cursor/mcp.json` in your project, or `~/.cursor/mcp.json` for a global install:
61
+
62
+ ```json
63
+ {
64
+ "mcpServers": {
65
+ "pando-ai": {
66
+ "command": "npx",
67
+ "args": ["-y", "pando-ai"]
68
+ }
69
+ }
70
+ }
71
+ ```
72
+
46
73
  Current detection targets:
47
74
 
48
75
  - Claude Code
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pando-ai",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Standalone pando MCP CLI",
5
5
  "bin": {
6
6
  "pando-ai": "bin/pando-ai.js"