@vibgrate/cli 2026.717.1 → 2026.720.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/DOCS.md +2 -0
- package/README.md +26 -0
- package/dist/baseline-5QPV6API.js +6 -0
- package/dist/{baseline-YWGSHCKW.js.map → baseline-5QPV6API.js.map} +1 -1
- package/dist/{chunk-M62BGJMK.js → chunk-AJDUMRVI.js} +3 -3
- package/dist/{chunk-M62BGJMK.js.map → chunk-AJDUMRVI.js.map} +1 -1
- package/dist/{chunk-L42NVMD6.js → chunk-VQLOVQZP.js} +76 -28
- package/dist/chunk-VQLOVQZP.js.map +1 -0
- package/dist/{chunk-WZNIDXZP.js → chunk-VYSTOEAK.js} +3 -3
- package/dist/{chunk-WZNIDXZP.js.map → chunk-VYSTOEAK.js.map} +1 -1
- package/dist/cli.js +444 -38
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +115 -45
- package/dist/index.js +2 -2
- package/package.json +3 -1
- package/dist/baseline-YWGSHCKW.js +0 -6
- package/dist/chunk-L42NVMD6.js.map +0 -1
package/DOCS.md
CHANGED
|
@@ -874,6 +874,8 @@ vg serve
|
|
|
874
874
|
|
|
875
875
|
Via stdio (default), your AI assistant spawns the server. Via `--http`, it runs as a local HTTP endpoint for browser or shared access.
|
|
876
876
|
|
|
877
|
+
**A live status display shows what the server is doing for you.** While `vg serve` runs in a terminal, a status block on stderr updates in place: uptime, which AI clients are connected (detected from the MCP handshake), calls and average response time per tool, and — for the navigation tools with a grep/read baseline — the context tokens served vs the estimated tokens a grep-and-read agent would have burned instead, with the estimated saving labelled as such. Outside a terminal (when your assistant spawns the server) it degrades to a quiet one-line heartbeat in the server logs every 15 minutes, and only when there has been activity. The display is in-memory only and always on — nothing is written to disk or uploaded (recording and sharing below stay opt-in) — and `--quiet` turns it off.
|
|
878
|
+
|
|
877
879
|
**Usage stats — local by default, sharing is opt-in.** `--savings` records a *counts-only* ledger under `.vibgrate/` — per navigation call: which tool, how it resolved (complete/partial/miss), the vg-vs-grep token figures, whether it came over the MCP (`mcp`) or the `vg` CLI (`cli`), and a coarse client label (which AI). `vg savings` reports it locally; nothing leaves your machine. `--share-stats` additionally uploads that same counts-only ledger to Vibgrate periodically, so we can see how the local MCP is used and improve it. It **never** sends code, file paths, question text, repo identity, or any credential — only counts, outcomes, token figures, the vg version, your OS/arch, and a random per-install id. It's off unless you pass the flag, is disabled entirely under `--local`, and the endpoint can be overridden with `VIBGRATE_STATS_ENDPOINT`.
|
|
878
880
|
|
|
879
881
|
**Attributing CLI calls.** The MCP path detects the calling client automatically from the connection handshake. For CLI calls, pass `--client=<ai>` (e.g. `vg "how does auth work" --client=claude`) so the call is attributed in `vg savings` and any shared stats — this is what `vg install` writes into each assistant's skill. Without `--client`, a bare `vg ask` records nothing.
|
package/README.md
CHANGED
|
@@ -89,6 +89,32 @@ This writes the MCP config for your chosen tool(s) and installs a skill that tea
|
|
|
89
89
|
|
|
90
90
|
Browse all 21+ supported assistants and their skill descriptions at **[vibgrate.com/skills](https://vibgrate.com/skills)**.
|
|
91
91
|
|
|
92
|
+
## Tools
|
|
93
|
+
|
|
94
|
+
`vg serve` exposes 19 MCP tools:
|
|
95
|
+
|
|
96
|
+
- **orient** — start here: project overview, entry points, where to look first.
|
|
97
|
+
- **search_symbols** — find a symbol by name or literal string.
|
|
98
|
+
- **query_graph** — find code by meaning: symptoms, relationships, what-breaks-if.
|
|
99
|
+
- **get_node** — inspect one symbol: signature, callers, callees, area.
|
|
100
|
+
- **find_path** — shortest connection between two symbols.
|
|
101
|
+
- **impact_of** — blast radius of a change: dependents, files, covering tests, risk.
|
|
102
|
+
- **tests_for** — which tests cover a symbol.
|
|
103
|
+
- **get_graph_summary** — code map overview: counts, languages, top areas and hubs.
|
|
104
|
+
- **list_areas** — code areas (communities) by size.
|
|
105
|
+
- **list_hubs** — most-depended-on symbols.
|
|
106
|
+
- **get_facts** — deterministic facts for a node (contract/invariant; needs a `--deep` build).
|
|
107
|
+
- **guide_node** — cited standards and practices for a node (OWASP/CWE).
|
|
108
|
+
- **check_drift** — offline dependency inventory with optional git who-added attribution.
|
|
109
|
+
- **vuln_attribution** — who introduced each open vulnerability, exposure windows, CRA remediation metrics.
|
|
110
|
+
- **list_vulnerabilities** — known vulnerabilities from the last `vg scan --vulns`: CVE, severity, CVSS, fixed version.
|
|
111
|
+
- **upgrade_impact** — what breaks if you upgrade a package: major distance, import blast radius, vulns fixed.
|
|
112
|
+
- **list_models** — local models on disk (Ollama / LM Studio / gguf).
|
|
113
|
+
- **resolve_library** — resolve a library to its canonical id and the version your project uses.
|
|
114
|
+
- **library_docs** — version-correct usage docs for a library, sliced to a token budget.
|
|
115
|
+
|
|
116
|
+
Prefer the hosted server over your team's scan data? **[Vibgrate MCP](https://vibgrate.com/mcp)** connects your assistant to Vibgrate Cloud (OAuth 2.1, 51 tools).
|
|
117
|
+
|
|
92
118
|
---
|
|
93
119
|
|
|
94
120
|
## Understand any codebase
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":[],"names":[],"mappings":"","file":"baseline-
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":"","file":"baseline-5QPV6API.js"}
|
|
@@ -19,7 +19,7 @@ import * as zlib from 'zlib';
|
|
|
19
19
|
import { promisify } from 'util';
|
|
20
20
|
|
|
21
21
|
// src/version.ts
|
|
22
|
-
var VERSION = "2026.
|
|
22
|
+
var VERSION = "2026.720.1";
|
|
23
23
|
var TOP_LEVEL_NODE_MODULES = /^node_modules\/((?:@[^/]+\/)?[^/]+)$/;
|
|
24
24
|
function parsePackageLock(json) {
|
|
25
25
|
const out = /* @__PURE__ */ new Map();
|
|
@@ -11686,5 +11686,5 @@ async function writeTextFile2(filePath, content) {
|
|
|
11686
11686
|
}
|
|
11687
11687
|
|
|
11688
11688
|
export { PROJECT_TYPE_TO_OSV_ECOSYSTEM, VERSION, brandProgressBar, buildVersionTimelines, compactUiPurpose, computeDriftScore, computeRepoFingerprint, computeUpgradeImpact, detectVcs, driftBar, ensureDir2 as ensureDir, fetchRiskySymbols, fetchScanPreflight, findPackageAnyEcosystem, findPackageTimeline, findVersionCrossings, getChangelogSignals, gitHistoryAvailable, loadConfig, normalizeConstraint, parseDsn, pathExists2 as pathExists, prepareCompressedUpload, projectTypeToVulnEcosystem, readJsonFile2 as readJsonFile, resolveHead, resolveRepositoryName, runCoreScan, severityRank, titleBox, versionSatisfies, workingTreeDirty, writeDefaultConfig, writeJsonFile2 as writeJsonFile, writeTextFile2 as writeTextFile };
|
|
11689
|
-
//# sourceMappingURL=chunk-
|
|
11690
|
-
//# sourceMappingURL=chunk-
|
|
11689
|
+
//# sourceMappingURL=chunk-AJDUMRVI.js.map
|
|
11690
|
+
//# sourceMappingURL=chunk-AJDUMRVI.js.map
|