@vovy-ai/host-detect 0.1.0 → 0.1.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.
- package/README.md +11 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/README.md
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# @vovy-ai/host-detect
|
|
2
|
+
|
|
3
|
+
Per-host detection and safe config writing for [Vovy](https://github.com/Vovy-AI/vovy-cli) — a free, forever, drop-in skill pack for vibe coding safely with AI coding assistants.
|
|
4
|
+
|
|
5
|
+
You normally don't install this directly — run `npx @vovy-ai/go install` instead. This package detects which AI coding tools are installed on your machine (Claude Code, Codex CLI, Cursor, Cline, Windsurf) and safely reads/writes their skill files and MCP config — idempotently, and never touching any key it doesn't own.
|
|
6
|
+
|
|
7
|
+
It's the main extension point for contributing new host support to Vovy: see [`CONTRIBUTING.md`](https://github.com/Vovy-AI/vovy-cli/blob/main/CONTRIBUTING.md) and the current [host support matrix](https://github.com/Vovy-AI/vovy-cli/blob/main/docs/host-support-matrix.md).
|
|
8
|
+
|
|
9
|
+
## License
|
|
10
|
+
|
|
11
|
+
MIT
|
package/dist/index.js
CHANGED
|
@@ -13,7 +13,7 @@ function mergeJsonMcpConfig(existing, entry) {
|
|
|
13
13
|
}
|
|
14
14
|
} catch {
|
|
15
15
|
throw new Error(
|
|
16
|
-
"Existing MCP config is not valid JSON \u2014 refusing to overwrite it. Please fix or remove it and re-run `vovy install`."
|
|
16
|
+
"Existing MCP config is not valid JSON \u2014 refusing to overwrite it. Please fix or remove it and re-run `npx @vovy-ai/go install`."
|
|
17
17
|
);
|
|
18
18
|
}
|
|
19
19
|
}
|
package/package.json
CHANGED