v0.2.0: broaden tools, ship neovim MCP server, namespace agent

- agents/companion.md: expand tools to full editor + filesystem + web set
  and grant mcp__neovim__* so the agent can drive nvim directly
- skills/*: each skill's allowed-tools also gains mcp__neovim__*
- .mcp.json: ship the mcp-neovim-server config with the plugin so
  installing the plugin auto-wires the editor MCP (uses default socket
  /run/user/1000/nvim.sock — adjust if your uid differs)
This commit is contained in:
oleks
2026-05-21 00:29:23 +03:00
parent acf207e53b
commit 6de5cec0e4
6 changed files with 16 additions and 5 deletions
+11
View File
@@ -0,0 +1,11 @@
{
"mcpServers": {
"neovim": {
"command": "npx",
"args": ["-y", "mcp-neovim-server"],
"env": {
"NVIM_SOCKET_PATH": "/run/user/1000/nvim.sock"
}
}
}
}