@vibgrate/cli 2026.708.3 → 2026.709.2
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 +451 -295
- package/README.md +26 -19
- package/dist/baseline-VGDQ33ZE.js +6 -0
- package/dist/{baseline-AUC3HAXW.js.map → baseline-VGDQ33ZE.js.map} +1 -1
- package/dist/{chunk-2DJ3UXG7.js → chunk-3TCE6IGZ.js} +721 -437
- package/dist/chunk-3TCE6IGZ.js.map +1 -0
- package/dist/chunk-FU4MOQTC.js +3735 -0
- package/dist/chunk-FU4MOQTC.js.map +1 -0
- package/dist/{chunk-QUELGOCR.js → chunk-PIWHQSAR.js} +4 -4
- package/dist/{chunk-QUELGOCR.js.map → chunk-PIWHQSAR.js.map} +1 -1
- package/dist/cli.d.ts +8 -0
- package/dist/cli.js +845 -532
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +21 -1
- package/dist/index.js +2 -2
- package/package.json +4 -3
- package/skills/vg/SKILL.md +26 -15
- package/dist/baseline-AUC3HAXW.js +0 -6
- package/dist/chunk-2DJ3UXG7.js.map +0 -1
- package/dist/chunk-JXGVMXYE.js +0 -31
- package/dist/chunk-JXGVMXYE.js.map +0 -1
package/dist/cli.d.ts
CHANGED
|
@@ -19,6 +19,14 @@ interface GlobalOpts {
|
|
|
19
19
|
local?: boolean;
|
|
20
20
|
/** --quiet */
|
|
21
21
|
quiet?: boolean;
|
|
22
|
+
/**
|
|
23
|
+
* --client <name> — the AI on the other end (e.g. `claude`, `cursor`). When an
|
|
24
|
+
* AI host runs `vg`, passing this lets navigation calls be counted in the local
|
|
25
|
+
* savings ledger with the command-vs-MCP split, so `vg savings` and the opt-in
|
|
26
|
+
* share-stats upload can attribute usage. Counts only; a coarse label, not
|
|
27
|
+
* identity (sanitized before it's recorded). Absent for human-run commands.
|
|
28
|
+
*/
|
|
29
|
+
client?: string;
|
|
22
30
|
}
|
|
23
31
|
|
|
24
32
|
interface BuildCmdOpts {
|