seer-mcp 0.1.7 → 0.1.8

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 CHANGED
@@ -36,33 +36,39 @@ Oh, and Seer can absolutely help agents find their way inside large, messy repos
36
36
 
37
37
  ---
38
38
 
39
- ## Quick Start
40
-
41
- One command, from inside the repo you want indexed (needs Node 24+):
42
-
43
- ```bash
44
- npx seer-mcp init
45
- ```
46
-
47
- If you use **Google Antigravity** or **Windsurf** (user-level MCP config), run this instead:
39
+ ## Quick Start
40
+
41
+ From inside the repo you want indexed (Node 24+):
42
+
48
43
  ```bash
49
- npx seer-mcp init --client all
44
+ npx seer-mcp init --auto
50
45
  ```
51
46
 
52
- Reload your agent/extensions and you are connected. (Want to confirm it? Ask the agent to call `seer_health`.) The init command also writes the agent guidance files each tool reads, including `AGENTS.md`, `CLAUDE.md`, and `GEMINI.md` where applicable.
53
-
54
- Seer indexes your workspace automatically on the first query.
55
-
56
- > [!TIP]
57
- > **Optional Pre-indexing:** Avoid any first-query latency by manually pre-indexing:
58
- > ```bash
59
- > npx seer-mcp index .
60
- > ```
61
-
62
- Want user-level config? Read the [MCP Setup](docs/mcp.md) guide.
63
-
64
- → [Full Quick Start](docs/quickstart.md)
65
-
47
+ That writes repo-local MCP config, adds detected editor-global clients such as Antigravity/Windsurf, and pins global launchers to this repo with `--workspace`.
48
+
49
+ Prefer zero global changes?
50
+
51
+ ```bash
52
+ npx seer-mcp init
53
+ ```
54
+
55
+ Reload your agent and ask it to call `seer_health`. Seer indexes this repo on the first query.
56
+
57
+ Update existing installs:
58
+
59
+ ```bash
60
+ npx seer-mcp update
61
+ ```
62
+
63
+ Avoid first-query latency:
64
+
65
+ ```bash
66
+ npx seer-mcp index .
67
+ ```
68
+
69
+ More clients and uninstall details: [MCP Setup](docs/mcp.md).
70
+
71
+ -> [Full Quick Start](docs/quickstart.md)
66
72
  ---
67
73
 
68
74
  ## Docs