@vovy-ai/go 0.3.0 → 0.3.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  # @vovy-ai/go
2
2
 
3
- Free, forever, drop-in skills for vibe coding safely the `vovy` CLI installer.
3
+ The `vovy` CLI — one command drops project-aware skills, scope-aware code search, and git-committed project memory into the AI coding tool you already use. Free forever.
4
4
 
5
5
  ```
6
6
  npx @vovy-ai/go install
@@ -11,24 +11,28 @@ That's it. It detects which AI coding tool you have installed — [Claude Code](
11
11
  ```
12
12
  npx @vovy-ai/go doctor # check everything is installed correctly
13
13
  npx @vovy-ai/go uninstall # remove everything Vovy wrote, cleanly
14
+ npx @vovy-ai/go statusline # one-line badge for your tool's status bar
14
15
  ```
15
16
 
16
17
  Installed globally (`npm i -g @vovy-ai/go`), the command is just `vovy`.
17
18
 
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
+ `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 — and tells you which Context Engine backend your project gets: `typescript` (scope-aware, resolved through your project's own TypeScript) or `tree-sitter` (name-matching fallback), with the one-line upgrade if you're on the fallback.
19
20
 
20
21
  It's MIT-licensed and runs entirely on your machine — no account, no API key, nothing phoning home.
21
22
 
22
23
  ## What it installs
23
24
 
24
- Four skills plus a local MCP server that give AI coding assistants deterministic project context and safety rails:
25
+ Five skills plus a local MCP server that give AI coding assistants deterministic project context, durable memory, and safety rails:
25
26
 
26
27
  | Skill | What it does |
27
28
  |---|---|
28
- | **Prompt Rescoper** | Rewrites vague, oversized requests into a small, reviewable spec before any code is written. |
29
+ | **Prompt Rescoper** | Rewrites vague, oversized requests into a small, reviewable spec — including how the change will be verified and what imperfections are acceptable — before any code is written. |
29
30
  | **Project Skill Drafter** | Analyzes your actual project and drafts a project-specific skill so future requests already know your stack. |
30
31
  | **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. |
32
+ | **Context Scoper** | Finds the exact symbol, method, or file before reading whole files — via your project's own TypeScript when available (scope-aware, so two same-named functions don't get confused), tree-sitter otherwise. Includes `impact`: "what breaks if I change this", walked transitively. |
33
+ | **Memory Keeper** | Records decisions (with what was rejected and why), mistakes (with how to avoid repeating them), and constraints (with the why) into `.vovy/memory/` — plain markdown, committed to git, so rationale survives across sessions, machines, teammates, and AI tools. |
34
+
35
+ With `--scope project`, skill descriptions are tailored to your detected stack (a Next.js + TypeScript project gets descriptions that say so), which helps them trigger at the right moments at zero extra token cost.
32
36
 
33
37
  Full docs, architecture, and source: **[github.com/Vovy-AI/vovy-cli](https://github.com/Vovy-AI/vovy-cli)**
34
38
 
package/dist/index.js CHANGED
@@ -206,7 +206,7 @@ function realEnv() {
206
206
  }
207
207
 
208
208
  // src/index.ts
209
- var HELP = `Vovy \u2014 free, forever, drop-in skills for vibe coding safely. Run via \`npx @vovy-ai/go\` (or \`vovy\` if installed globally).
209
+ var HELP = `Vovy \u2014 drop-in skills for vibe coding safely with the AI tool you already use. Run via \`npx @vovy-ai/go\` (or \`vovy\` if installed globally).
210
210
 
211
211
  Usage:
212
212
  npx @vovy-ai/go install [options] Write Vovy's skills into detected (or specified) host tools
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@vovy-ai/go",
3
- "version": "0.3.0",
4
- "description": "Free, forever, drop-in MCP server + skill pack that teaches non-technical founders to vibe code safely. npx @vovy-ai/go install",
3
+ "version": "0.3.1",
4
+ "description": "Drop-in MCP server + skill pack that teaches non-technical founders to vibe code safely — free forever. npx @vovy-ai/go install",
5
5
  "keywords": [
6
6
  "vibe-coding",
7
7
  "ai-coding-assistant",
@@ -42,14 +42,14 @@
42
42
  "dist"
43
43
  ],
44
44
  "dependencies": {
45
- "@vovy-ai/host-detect": "0.1.1",
46
- "@vovy-ai/skills": "0.4.0"
45
+ "@vovy-ai/host-detect": "0.1.2",
46
+ "@vovy-ai/skills": "0.4.1"
47
47
  },
48
48
  "devDependencies": {
49
49
  "tsup": "^8.3.5",
50
50
  "typescript": "^5.7.2",
51
51
  "vitest": "^2.1.8",
52
- "@vovy-ai/mcp-server": "0.3.0"
52
+ "@vovy-ai/mcp-server": "0.3.1"
53
53
  },
54
54
  "scripts": {
55
55
  "build": "tsup src/index.ts --format esm --dts --clean",