@vovy-ai/go 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 +4 -3
  2. package/package.json +34 -3
package/README.md CHANGED
@@ -15,19 +15,20 @@ npx @vovy-ai/go uninstall # remove everything Vovy wrote, cleanly
15
15
 
16
16
  Installed globally (`npm i -g @vovy-ai/go`), the command is just `vovy`.
17
17
 
18
- ## Why this is free, forever
18
+ `npx @vovy-ai/go doctor` also reports a deterministic "always-on token footprint" — every installed skill file plus every registered MCP tool definition, the tokens a session pays whether or not any of it ever fires.
19
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.
20
+ It's MIT-licensed and runs entirely on your machine no account, no API key, nothing phoning home.
21
21
 
22
22
  ## What it installs
23
23
 
24
- Three skills that make AI coding assistants safer and better-scoped for non-technical founders:
24
+ Four skills plus a local MCP server that give AI coding assistants deterministic project context and safety rails:
25
25
 
26
26
  | Skill | What it does |
27
27
  |---|---|
28
28
  | **Prompt Rescoper** | Rewrites vague, oversized requests into a small, reviewable spec before any code is written. |
29
29
  | **Project Skill Drafter** | Analyzes your actual project and drafts a project-specific skill so future requests already know your stack. |
30
30
  | **Founder Explainer** | Explains destructive/high-stakes actions in plain English before they happen, and flags common vibe-coding security mistakes. |
31
+ | **Context Scoper** | Calls a tree-sitter-backed Context Engine to find the exact symbol or file before reading whole files — fewer tokens spent, fewer same-named false matches. |
31
32
 
32
33
  Full docs, architecture, and source: **[github.com/Vovy-AI/vovy-cli](https://github.com/Vovy-AI/vovy-cli)**
33
34
 
package/package.json CHANGED
@@ -1,8 +1,39 @@
1
1
  {
2
2
  "name": "@vovy-ai/go",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
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
+ "keywords": [
6
+ "vibe-coding",
7
+ "ai-coding-assistant",
8
+ "claude-code",
9
+ "codex-cli",
10
+ "cursor",
11
+ "cline",
12
+ "windsurf",
13
+ "mcp",
14
+ "mcp-server",
15
+ "model-context-protocol",
16
+ "claude",
17
+ "llm-agent",
18
+ "ai-agent",
19
+ "coding-agent",
20
+ "prompt-engineering",
21
+ "tree-sitter",
22
+ "code-search",
23
+ "developer-tools",
24
+ "cli"
25
+ ],
5
26
  "license": "MIT",
27
+ "homepage": "https://github.com/Vovy-AI/vovy-cli#readme",
28
+ "repository": {
29
+ "type": "git",
30
+ "url": "git+https://github.com/Vovy-AI/vovy-cli.git",
31
+ "directory": "packages/cli"
32
+ },
33
+ "bugs": {
34
+ "url": "https://github.com/Vovy-AI/vovy-cli/issues"
35
+ },
36
+ "author": "Vovy AI",
6
37
  "type": "module",
7
38
  "bin": {
8
39
  "vovy": "./dist/index.js"
@@ -11,8 +42,8 @@
11
42
  "dist"
12
43
  ],
13
44
  "dependencies": {
14
- "@vovy-ai/skills": "0.3.0",
15
- "@vovy-ai/host-detect": "0.1.1"
45
+ "@vovy-ai/host-detect": "0.1.1",
46
+ "@vovy-ai/skills": "0.3.1"
16
47
  },
17
48
  "devDependencies": {
18
49
  "tsup": "^8.3.5",