@vovy-ai/go 0.1.2 → 0.1.3
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 +36 -0
- package/package.json +3 -3
package/README.md
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
# @vovy-ai/go
|
|
2
|
+
|
|
3
|
+
Free, forever, drop-in skills for vibe coding safely — the `vovy` CLI installer.
|
|
4
|
+
|
|
5
|
+
```
|
|
6
|
+
npx @vovy-ai/go install
|
|
7
|
+
```
|
|
8
|
+
|
|
9
|
+
That's it. It detects which AI coding tool you have installed — [Claude Code](https://claude.com/claude-code), [Codex CLI](https://developers.openai.com/codex), [Cursor](https://cursor.com), [Cline](https://cline.bot), or [Windsurf](https://windsurf.com) — and writes Vovy's skills there. Your very next prompt gets the benefit.
|
|
10
|
+
|
|
11
|
+
```
|
|
12
|
+
npx @vovy-ai/go doctor # check everything is installed correctly
|
|
13
|
+
npx @vovy-ai/go uninstall # remove everything Vovy wrote, cleanly
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
Installed globally (`npm i -g @vovy-ai/go`), the command is just `vovy`.
|
|
17
|
+
|
|
18
|
+
## Why this is free, forever
|
|
19
|
+
|
|
20
|
+
Vovy never runs its own AI model and never calls a Vovy-hosted server. It only writes markdown skill files that your existing AI coding tool reads for free, using the model you already pay for. No account, no API key, no cost, ever.
|
|
21
|
+
|
|
22
|
+
## What it installs
|
|
23
|
+
|
|
24
|
+
Three skills that make AI coding assistants safer and better-scoped for non-technical founders:
|
|
25
|
+
|
|
26
|
+
| Skill | What it does |
|
|
27
|
+
|---|---|
|
|
28
|
+
| **Prompt Rescoper** | Rewrites vague, oversized requests into a small, reviewable spec before any code is written. |
|
|
29
|
+
| **Project Skill Drafter** | Analyzes your actual project and drafts a project-specific skill so future requests already know your stack. |
|
|
30
|
+
| **Founder Explainer** | Explains destructive/high-stakes actions in plain English before they happen, and flags common vibe-coding security mistakes. |
|
|
31
|
+
|
|
32
|
+
Full docs, architecture, and source: **[github.com/Vovy-AI/vovy-cli](https://github.com/Vovy-AI/vovy-cli)**
|
|
33
|
+
|
|
34
|
+
## License
|
|
35
|
+
|
|
36
|
+
MIT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vovy-ai/go",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "Free, forever, drop-in MCP server + skill pack that teaches non-technical founders to vibe code safely. npx @vovy-ai/go install",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -11,8 +11,8 @@
|
|
|
11
11
|
"dist"
|
|
12
12
|
],
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@vovy-ai/host-detect": "0.1.
|
|
15
|
-
"@vovy-ai/skills": "0.2.
|
|
14
|
+
"@vovy-ai/host-detect": "0.1.1",
|
|
15
|
+
"@vovy-ai/skills": "0.2.1"
|
|
16
16
|
},
|
|
17
17
|
"devDependencies": {
|
|
18
18
|
"tsup": "^8.3.5",
|