@aroman22/codegraph-vba 1.6.2 → 1.6.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 +5 -5
- package/dist/upgrade/index.d.ts +1 -1
- package/npm-shim.js +1 -1
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -51,11 +51,11 @@ This repository is a fork of [`colbymchenry/codegraph`](https://github.com/colby
|
|
|
51
51
|
|
|
52
52
|
**Why fork?** To add VBA / Access language support that does not exist upstream, so agents can navigate Microsoft Access projects managed by Dysflow the same way they navigate TypeScript or Python today. See the [VBA / Access + Dysflow integration](#vba--access--dysflow-integration) section below for the feature spec, the pattern table, and the hard invariants.
|
|
53
53
|
|
|
54
|
-
**The fork is published to npm as
|
|
54
|
+
**The fork is published to npm as `@aroman22/codegraph-vba`.** The upstream package `@colbymchenry/codegraph` does **not** have VBA / Access support — install `@aroman22/codegraph-vba` to get it:
|
|
55
55
|
|
|
56
56
|
```bash
|
|
57
57
|
# Option A — install from npm (easiest; gets you the codegraph-vba CLI on PATH):
|
|
58
|
-
npm i -g codegraph-vba
|
|
58
|
+
npm i -g @aroman22/codegraph-vba
|
|
59
59
|
# or with pnpm:
|
|
60
60
|
pnpm add -g codegraph-vba
|
|
61
61
|
# or the one-line OS installer (no Node required) — see Get Started below.
|
|
@@ -96,7 +96,7 @@ irm https://raw.githubusercontent.com/ardelperal/codegraph-vba/main/install.ps1
|
|
|
96
96
|
<summary><b>Already have Node? Use npm instead (works on any version)</b></summary>
|
|
97
97
|
|
|
98
98
|
```bash
|
|
99
|
-
npm i -g codegraph-vba
|
|
99
|
+
npm i -g @aroman22/codegraph-vba
|
|
100
100
|
```
|
|
101
101
|
|
|
102
102
|
<sub>CodeGraph bundles its own runtime — nothing to compile, no native build, works the same everywhere. The installer puts `codegraph-vba` on your PATH but **doesn't change your current shell** — open a new terminal before the next step so the command resolves.</sub>
|
|
@@ -470,7 +470,7 @@ That's it — your agent will use CodeGraph tools automatically when a `.codegra
|
|
|
470
470
|
|
|
471
471
|
**Install globally:**
|
|
472
472
|
```bash
|
|
473
|
-
npm i -g codegraph-vba
|
|
473
|
+
npm i -g @aroman22/codegraph-vba
|
|
474
474
|
```
|
|
475
475
|
|
|
476
476
|
**Add to `~/.claude.json`:**
|
|
@@ -837,7 +837,7 @@ Framework routing is validated the same way, on a canonical app per framework: E
|
|
|
837
837
|
|
|
838
838
|
**MCP hits `database is locked`** — current builds shouldn't: CodeGraph bundles its own Node runtime and uses Node's built-in `node:sqlite` in WAL mode, where concurrent reads never block on a writer. If you still see it:
|
|
839
839
|
|
|
840
|
-
- **You're on an old (pre-0.9) install.** Reinstall to get the bundled runtime — `curl -fsSL https://raw.githubusercontent.com/ardelperal/codegraph-vba/main/install.sh | sh` (macOS/Linux), `irm https://raw.githubusercontent.com/ardelperal/codegraph-vba/main/install.ps1 | iex` (Windows), or `npm i -g codegraph-vba@latest`.
|
|
840
|
+
- **You're on an old (pre-0.9) install.** Reinstall to get the bundled runtime — `curl -fsSL https://raw.githubusercontent.com/ardelperal/codegraph-vba/main/install.sh | sh` (macOS/Linux), `irm https://raw.githubusercontent.com/ardelperal/codegraph-vba/main/install.ps1 | iex` (Windows), or `npm i -g @aroman22/codegraph-vba@latest`.
|
|
841
841
|
- **`codegraph-vba status` shows `Journal:` other than `wal`** — WAL couldn't be enabled on this filesystem (common on network shares and WSL2 `/mnt`), so reads can block on writes. Move the project (with its `.codegraph-vba/` folder) onto a local disk.
|
|
842
842
|
|
|
843
843
|
**MCP server not connecting** — Your agent starts the server itself, so you don't launch it by hand. Make sure the project is initialized and indexed (`codegraph-vba status`) and that the path in your MCP config is correct. If it still won't connect, re-run `codegraph-vba install` to rewrite the config.
|
package/dist/upgrade/index.d.ts
CHANGED
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
* conventional Windows self-update dance (rustup/nvm-windows do the same).
|
|
25
25
|
*/
|
|
26
26
|
export declare const REPO = "ardelperal/codegraph-vba";
|
|
27
|
-
export declare const NPM_PACKAGE = "codegraph-vba";
|
|
27
|
+
export declare const NPM_PACKAGE = "@aroman22/codegraph-vba";
|
|
28
28
|
export declare const INSTALL_SH_URL = "https://raw.githubusercontent.com/ardelperal/codegraph-vba/main/install.sh";
|
|
29
29
|
export type InstallMethod = {
|
|
30
30
|
kind: 'bundle';
|
package/npm-shim.js
CHANGED
|
@@ -267,7 +267,7 @@ function fail(reason) {
|
|
|
267
267
|
'A registry mirror (e.g. npmmirror/cnpm) that did not mirror the per-platform\n' +
|
|
268
268
|
'package is the usual cause. Fixes:\n' +
|
|
269
269
|
' - install from the official registry:\n' +
|
|
270
|
-
' npm i -g codegraph-vba --registry=https://registry.npmjs.org\n' +
|
|
270
|
+
' npm i -g @aroman22/codegraph-vba --registry=https://registry.npmjs.org\n' +
|
|
271
271
|
' - or use the standalone installer (no Node required):\n' +
|
|
272
272
|
' curl -fsSL https://raw.githubusercontent.com/' + REPO + '/main/install.sh | sh\n'
|
|
273
273
|
);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aroman22/codegraph-vba",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.3",
|
|
4
4
|
"description": "Local-first code intelligence for AI agents (MCP). Self-contained — bundles its own runtime.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"codegraph-vba": "npm-shim.js"
|
|
@@ -15,12 +15,12 @@
|
|
|
15
15
|
"./package.json": "./package.json"
|
|
16
16
|
},
|
|
17
17
|
"optionalDependencies": {
|
|
18
|
-
"@aroman22/codegraph-vba-darwin-arm64": "1.6.
|
|
19
|
-
"@aroman22/codegraph-vba-darwin-x64": "1.6.
|
|
20
|
-
"@aroman22/codegraph-vba-linux-arm64": "1.6.
|
|
21
|
-
"@aroman22/codegraph-vba-linux-x64": "1.6.
|
|
22
|
-
"@aroman22/codegraph-vba-win32-arm64": "1.6.
|
|
23
|
-
"@aroman22/codegraph-vba-win32-x64": "1.6.
|
|
18
|
+
"@aroman22/codegraph-vba-darwin-arm64": "1.6.3",
|
|
19
|
+
"@aroman22/codegraph-vba-darwin-x64": "1.6.3",
|
|
20
|
+
"@aroman22/codegraph-vba-linux-arm64": "1.6.3",
|
|
21
|
+
"@aroman22/codegraph-vba-linux-x64": "1.6.3",
|
|
22
|
+
"@aroman22/codegraph-vba-win32-arm64": "1.6.3",
|
|
23
|
+
"@aroman22/codegraph-vba-win32-x64": "1.6.3"
|
|
24
24
|
},
|
|
25
25
|
"files": [
|
|
26
26
|
"npm-shim.js",
|