@aroman22/codegraph-vba 1.6.0 → 1.6.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
@@ -47,7 +47,7 @@ Follow [@getcodegraph](https://x.com/getcodegraph) on X for updates.
47
47
 
48
48
  ## This is a fork — VBA / Access + Dysflow
49
49
 
50
- This repository is a fork of [`colbymchenry/codegraph`](https://github.com/colbymchenry/codegraph), maintained at [`ardelperal/codegraph`](https://github.com/ardelperal/codegraph). It is **identical to the upstream for every language except VBA / Access** — the fork adds nothing new to TypeScript, Python, Go, Rust, Java, etc., and is kept rebased against `colbymchenry/codegraph:main` so it stays current with upstream fixes and benchmarks.
50
+ This repository is a fork of [`colbymchenry/codegraph`](https://github.com/colbymchenry/codegraph), maintained at [`ardelperal/codegraph-vba`](https://github.com/ardelperal/codegraph-vba). It is **identical to the upstream for every language except VBA / Access** — the fork adds nothing new to TypeScript, Python, Go, Rust, Java, etc., and is kept rebased against `colbymchenry/codegraph:main` so it stays current with upstream fixes and benchmarks.
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
 
@@ -63,7 +63,7 @@ pnpm add -g codegraph-vba
63
63
 
64
64
  ```bash
65
65
  # Option B — clone, build, and use the local binary (full control, useful for contributing):
66
- git clone https://github.com/ardelperal/codegraph.git
66
+ git clone https://github.com/ardelperal/codegraph-vba.git
67
67
  cd codegraph
68
68
  pnpm install # pnpm is the source of truth — see pnpm-lock.yaml
69
69
  pnpm run build # produces dist/bin/codegraph.js
@@ -86,10 +86,10 @@ npm i -g @colbymchenry/codegraph
86
86
 
87
87
  ```bash
88
88
  # macOS / Linux
89
- curl -fsSL https://raw.githubusercontent.com/ardelperal/codegraph/main/install.sh | sh
89
+ curl -fsSL https://raw.githubusercontent.com/ardelperal/codegraph-vba/main/install.sh | sh
90
90
 
91
91
  # Windows (PowerShell)
92
- irm https://raw.githubusercontent.com/ardelperal/codegraph/main/install.ps1 | iex
92
+ irm https://raw.githubusercontent.com/ardelperal/codegraph-vba/main/install.ps1 | iex
93
93
  ```
94
94
 
95
95
  <details>
@@ -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/main/install.sh | sh` (macOS/Linux), `irm https://raw.githubusercontent.com/ardelperal/codegraph/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 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.
@@ -850,11 +850,11 @@ Framework routing is validated the same way, on a canonical app per framework: E
850
850
 
851
851
  ## Star History
852
852
 
853
- <a href="https://www.star-history.com/?repos=ardelperal%2Fcodegraph&type=date&legend=top-left">
853
+ <a href="https://www.star-history.com/?repos=ardelperal%2Fcodegraph-vba&type=date&legend=top-left">
854
854
  <picture>
855
- <source media="(prefers-color-scheme: dark)" srcset="https://api.star-history.com/chart?repos=ardelperal/codegraph&type=date&theme=dark&legend=top-left" />
856
- <source media="(prefers-color-scheme: light)" srcset="https://api.star-history.com/chart?repos=ardelperal/codegraph&type=date&legend=top-left" />
857
- <img alt="Star History Chart" src="https://api.star-history.com/chart?repos=ardelperal/codegraph&type=date&legend=top-left" />
855
+ <source media="(prefers-color-scheme: dark)" srcset="https://api.star-history.com/chart?repos=ardelperal/codegraph-vba&type=date&theme=dark&legend=top-left" />
856
+ <source media="(prefers-color-scheme: light)" srcset="https://api.star-history.com/chart?repos=ardelperal/codegraph-vba&type=date&legend=top-left" />
857
+ <img alt="Star History Chart" src="https://api.star-history.com/chart?repos=ardelperal/codegraph-vba&type=date&legend=top-left" />
858
858
  </picture>
859
859
  </a>
860
860
 
@@ -868,6 +868,6 @@ MIT
868
868
 
869
869
  **Made for AI coding agents — Claude Code, Cursor, Codex CLI, opencode, Hermes Agent, Gemini CLI, Antigravity IDE, and Kiro**
870
870
 
871
- [Report Bug](https://github.com/ardelperal/codegraph/issues) · [Request Feature](https://github.com/ardelperal/codegraph/issues)
871
+ [Report Bug](https://github.com/ardelperal/codegraph-vba/issues) · [Request Feature](https://github.com/ardelperal/codegraph-vba/issues)
872
872
 
873
873
  </div>
@@ -23,9 +23,9 @@
23
23
  * process to exit (releasing the lock), then runs `install.ps1`. This is the
24
24
  * conventional Windows self-update dance (rustup/nvm-windows do the same).
25
25
  */
26
- export declare const REPO = "ardelperal/codegraph";
26
+ export declare const REPO = "ardelperal/codegraph-vba";
27
27
  export declare const NPM_PACKAGE = "codegraph-vba";
28
- export declare const INSTALL_SH_URL = "https://raw.githubusercontent.com/ardelperal/codegraph/main/install.sh";
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';
31
31
  os: 'unix' | 'windows';
package/npm-shim.js CHANGED
@@ -34,7 +34,7 @@ var path = require('path');
34
34
  var target = process.platform + '-' + process.arch; // e.g. darwin-arm64, linux-x64
35
35
  var pkg = '@aroman22/codegraph-vba-' + target;
36
36
  var isWindows = process.platform === 'win32';
37
- var REPO = 'ardelperal/codegraph';
37
+ var REPO = 'ardelperal/codegraph-vba';
38
38
 
39
39
  main().catch(function (e) {
40
40
  process.stderr.write('codegraph: ' + (e && e.message ? e.message : String(e)) + '\n');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aroman22/codegraph-vba",
3
- "version": "1.6.0",
3
+ "version": "1.6.1",
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.0",
19
- "@aroman22/codegraph-vba-darwin-x64": "1.6.0",
20
- "@aroman22/codegraph-vba-linux-arm64": "1.6.0",
21
- "@aroman22/codegraph-vba-linux-x64": "1.6.0",
22
- "@aroman22/codegraph-vba-win32-arm64": "1.6.0",
23
- "@aroman22/codegraph-vba-win32-x64": "1.6.0"
18
+ "@aroman22/codegraph-vba-darwin-arm64": "1.6.1",
19
+ "@aroman22/codegraph-vba-darwin-x64": "1.6.1",
20
+ "@aroman22/codegraph-vba-linux-arm64": "1.6.1",
21
+ "@aroman22/codegraph-vba-linux-x64": "1.6.1",
22
+ "@aroman22/codegraph-vba-win32-arm64": "1.6.1",
23
+ "@aroman22/codegraph-vba-win32-x64": "1.6.1"
24
24
  },
25
25
  "files": [
26
26
  "npm-shim.js",