Skip to content

Commit 41cebbb

Browse files
committed
chore: rename repo references to ardelperal/codegraph-vba
After renaming the GitHub repository from ardelperal/codegraph to ardelperal/codegraph-vba, every hardcoded reference to the old name broke either downloads (install.sh, install.ps1, src/upgrade/index.ts, scripts/npm-shim.js) or documentation links (README.md, FORK_NOTES.md). Bumps to 1.6.1 so the npm shim picks up the new REPO and the 'codegraph-vba upgrade' command can resolve the latest release.
1 parent a47eca4 commit 41cebbb

7 files changed

Lines changed: 18 additions & 18 deletions

File tree

FORK_NOTES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Todas las edges sintéticas deben llevar `provenance: 'heuristic'` y
4848

4949
## Remotes
5050

51-
- `origin`: `ardelperal/codegraph` (este fork).
51+
- `origin`: `ardelperal/codegraph-vba` (este fork).
5252
- `upstream`: `colbymchenry/codegraph` (fuente original).
5353

5454
## Sincronización con upstream

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Follow [@getcodegraph](https://x.com/getcodegraph) on X for updates.
4747

4848
## This is a fork — VBA / Access + Dysflow
4949

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.
5151

5252
**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.
5353

@@ -63,7 +63,7 @@ pnpm add -g codegraph-vba
6363

6464
```bash
6565
# 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
6767
cd codegraph
6868
pnpm install # pnpm is the source of truth — see pnpm-lock.yaml
6969
pnpm run build # produces dist/bin/codegraph.js
@@ -86,10 +86,10 @@ npm i -g @colbymchenry/codegraph
8686

8787
```bash
8888
# 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
9090

9191
# 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
9393
```
9494

9595
<details>
@@ -837,7 +837,7 @@ Framework routing is validated the same way, on a canonical app per framework: E
837837

838838
**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:
839839

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`.
841841
- **`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.
842842

843843
**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
850850

851851
## Star History
852852

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">
854854
<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" />
858858
</picture>
859859
</a>
860860

@@ -868,6 +868,6 @@ MIT
868868

869869
**Made for AI coding agents — Claude Code, Cursor, Codex CLI, opencode, Hermes Agent, Gemini CLI, Antigravity IDE, and Kiro**
870870

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)
872872

873873
</div>

install.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Downloads a self-contained bundle (a vendored Node runtime + the app) from
44
# GitHub Releases. No Node.js, no build tools required.
55
#
6-
# irm https://raw.githubusercontent.com/ardelperal/codegraph/main/install.ps1 | iex
6+
# irm https://raw.githubusercontent.com/ardelperal/codegraph-vba/main/install.ps1 | iex
77
#
88
# Upgrade with `codegraph upgrade` (or just re-run this). To uninstall: remove
99
# $env:LOCALAPPDATA\codegraph and drop its \current\bin entry from your user PATH.
@@ -13,7 +13,7 @@
1313
# CODEGRAPH_INSTALL_DIR install location (default: %LOCALAPPDATA%\codegraph)
1414

1515
$ErrorActionPreference = 'Stop'
16-
$repo = 'ardelperal/codegraph'
16+
$repo = 'ardelperal/codegraph-vba'
1717
$installDir = if ($env:CODEGRAPH_INSTALL_DIR) { $env:CODEGRAPH_INSTALL_DIR } else { Join-Path $env:LOCALAPPDATA 'codegraph' }
1818

1919
# 1. Detect architecture -> target matching the release archives.

install.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# GitHub Releases. No Node.js, no build tools, no npm required — ideal for a
77
# fresh Linux VPS over SSH.
88
#
9-
# curl -fsSL https://raw.githubusercontent.com/ardelperal/codegraph/main/install.sh | sh
9+
# curl -fsSL https://raw.githubusercontent.com/ardelperal/codegraph-vba/main/install.sh | sh
1010
#
1111
# Upgrade: run `codegraph upgrade` (or just re-run the same command).
1212
# Uninstall: curl -fsSL .../install.sh | sh -s -- --uninstall
@@ -17,7 +17,7 @@
1717
# CODEGRAPH_BIN_DIR symlink location (default: ~/.local/bin)
1818
set -eu
1919

20-
REPO="ardelperal/codegraph"
20+
REPO="ardelperal/codegraph-vba"
2121
INSTALL_DIR="${CODEGRAPH_INSTALL_DIR:-$HOME/.codegraph}"
2222
BIN_DIR="${CODEGRAPH_BIN_DIR:-$HOME/.local/bin}"
2323

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@aroman22/codegraph-vba",
3-
"version": "1.6.0",
3+
"version": "1.6.1",
44
"description": "Supercharge AI coding agents with semantic code intelligence — surgical context, fewer tool calls, faster answers. 100% local.",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",

scripts/npm-shim.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ var path = require('path');
3434
var target = process.platform + '-' + process.arch; // e.g. darwin-arm64, linux-x64
3535
var pkg = '@aroman22/codegraph-vba-' + target;
3636
var isWindows = process.platform === 'win32';
37-
var REPO = 'ardelperal/codegraph';
37+
var REPO = 'ardelperal/codegraph-vba';
3838

3939
main().catch(function (e) {
4040
process.stderr.write('codegraph: ' + (e && e.message ? e.message : String(e)) + '\n');

src/upgrade/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ import * as path from 'path';
2929
import * as https from 'https';
3030
import { spawnSync } from 'child_process';
3131

32-
export const REPO = 'ardelperal/codegraph';
32+
export const REPO = 'ardelperal/codegraph-vba';
3333
export const NPM_PACKAGE = 'codegraph-vba';
3434
const RAW_BASE = `https://raw.githubusercontent.com/${REPO}/main`;
3535
export const INSTALL_SH_URL = `${RAW_BASE}/install.sh`;

0 commit comments

Comments
 (0)