Gitnexus Explorer
使用 GitNexus 索引代码库,并通过 Web UI + Cloudflare 隧道提供交互式知识图谱服务。
技能元数据
| 来源 | 可选 — 使用 hermes skills install official/research/gitnexus-explorer 安装 |
| 路径 | optional-skills/research/gitnexus-explorer |
| 版本 | 1.0.0 |
| 作者 | Hermes Agent + Teknium |
| 许可证 | MIT |
| 标签 | gitnexus, code-intelligence, knowledge-graph, visualization |
| 相关技能 | native-mcp, codebase-inspection |
参考:完整 SKILL.md
以下是 Hermes 在触发此技能时加载的完整技能定义。这是技能激活时代理所看到的指令。
GitNexus Explorer
将任意代码库索引为知识图谱,并提供交互式 Web UI 以探索符号、调用链、集群和执行流。通过 Cloudflare 隧道实现远程访问。
何时使用
- 用户希望可视化地探索代码库的架构
- 用户请求仓库的知识图谱/依赖图谱
- 用户希望与他人共享交互式代码库浏览器
前置条件
- Node.js (v18+) — GitNexus 和代理所需
- git — 仓库必须包含
.git目录 - cloudflared — 用于隧道连接(如果缺失,会自动安装到 ~/.local/bin)
大小警告
Web UI 会在浏览器中渲染所有节点。文件数少于 ~5,000 的仓库运行良好。大型仓库(30k+ 节点)会导致浏览器标签页运行缓慢或崩溃。CLI/MCP 工具在任何规模下均可正常工作 — 仅 Web 可视化存在此限制。
步骤
1. 克隆并构建 GitNexus(一次性设置)
GITNEXUS_DIR="${GITNEXUS_DIR:-$HOME/.local/share/gitnexus}"
if [ ! -d "$GITNEXUS_DIR/gitnexus-web/dist" ]; then
git clone https://github.com/abhigyanpatwari/GitNexus.git "$GITNEXUS_DIR"
cd "$GITNEXUS_DIR/gitnexus-shared" && npm install && npm run build
cd "$GITNEXUS_DIR/gitnexus-web" && npm install
fi
2. 修补 Web UI 以支持远程访问
Web UI 默认使用 localhost:4747 进行 API 调用。将其修补为使用同源策略,以便通过隧道/代理正常工作:
文件:$GITNEXUS_DIR/gitnexus-web/src/config/ui-constants.ts
修改:
export const DEFAULT_BACKEND_URL = 'http://localhost:4747';
为:
export const DEFAULT_BACKEND_URL = typeof window !== 'undefined' && window.location.hostname !== 'localhost' ? window.location.origin : 'http://localhost:4747';
文件:$GITNEXUS_DIR/gitnexus-web/vite.config.ts
在 server: { } 块内添加 allowedHosts: true(仅在运行开发模式而非生产构建时需要):
server: {
allowedHosts: true,
// ... existing config
},
然后构建生产包:
cd "$GITNEXUS_DIR/gitnexus-web" && npx vite build
3. 索引目标仓库
cd /path/to/target-repo
npx gitnexus analyze --skip-agents-md
rm -rf .claude/ # remove Claude Code-specific artifacts
添加 --embeddings 以启用语义搜索(速度较慢 — 需要几分钟而不是几秒)。
索引存储在仓库内的 .gitnexus/ 目录中(自动被 git 忽略)。
4. 创建代理脚本
将其写入文件(例如 $GITNEXUS_DIR/proxy.mjs)。它服务于生产版 Web UI,并将 /api/* 代理到 GitNexus 后端 — 同源,无 CORS 问题,无需 sudo,无需 nginx。
import http from 'node:http';
import fs from 'node:fs';
import path from 'node:path';
const API_PORT = parseInt(process.env.API_PORT || '4747');
const DIST_DIR = process.argv[2] || './dist';
const PORT = parseInt(process.argv[3] || '8888');
const MIME = {
'.html': 'text/html', '.js': 'application/javascript', '.css': 'text/css',
'.json': 'application/json', '.png': 'image/png', '.svg': 'image/svg+xml',
'.ico': 'image/x-icon', '.woff2': 'font/woff2', '.woff': 'font/woff',
'.wasm': 'application/wasm',
};
function proxyToApi(req, res) {
const opts = {
hostname: '127.0.0.1', port: API_PORT,
path: req.url, method: req.method, headers: req.headers,
};
const proxy = http.request(opts, (upstream) => {
res.writeHead(upstream.statusCode, upstream.headers);
upstream.pipe(res, { end: true });
});
proxy.on('error', () => { res.writeHead(502); res.end('Backend unavailable'); });
req.pipe(proxy, { end: true });
}
function serveStatic(req, res) {
let filePath = path.join(DIST_DIR, req.url === '/' ? 'index.html' : req.url.split('?')[0]);
if (!fs.existsSync(filePath)) filePath = path.join(DIST_DIR, 'index.html');
const ext = path.extname(filePath);
const mime = MIME[ext] || 'application/octet-stream';
try {
const data = fs.readFileSync(filePath);
res.writeHead(200, { 'Content-Type': mime, 'Cache-Control': 'public, max-age=3600' });
res.end(data);
} catch { res.writeHead(404); res.end('Not found'); }
}
http.createServer((req, res) => {
if (req.url.startsWith('/api')) proxyToApi(req, res);
else serveStatic(req, res);
}).listen(PORT, () => console.log(`GitNexus proxy on http://localhost:${PORT}`));
5. 启动服务
# Terminal 1: GitNexus backend API
npx gitnexus serve &
# Terminal 2: Proxy (web UI + API on one port)
node "$GITNEXUS_DIR/proxy.mjs" "$GITNEXUS_DIR/gitnexus-web/dist" 8888 &
验证:curl -s http://localhost:8888/api/repos 应返回已索引的仓库。
6. 使用 Cloudflare 隧道(可选 — 用于远程访问)
# Install cloudflared if needed (no sudo)
if ! command -v cloudflared &>/dev/null; then
mkdir -p ~/.local/bin
curl -sL https://github.com/cloudflare/cloudflared/releases/latest/download/cloudflared-linux-amd64 \
-o ~/.local/bin/cloudflared
chmod +x ~/.local/bin/cloudflared
export PATH="$HOME/.local/bin:$PATH"
fi
# Start tunnel (--config /dev/null avoids conflicts with existing named tunnels)
cloudflared tunnel --config /dev/null --url http://localhost:8888 --no-autoupdate --protocol http2
隧道 URL(例如 https://random-words.trycloudflare.com)会打印到 stderr。分享该链接 — 任何拥有链接的人都可以探索图谱。
7. 清理
# Stop services
pkill -f "gitnexus serve"
pkill -f "proxy.mjs"
pkill -f cloudflared
# Remove index from the target repo
cd /path/to/target-repo
npx gitnexus clean
rm -rf .claude/
常见陷阱
-
如果用户在
~/.cloudflared/config.yml中存在现有的命名隧道配置,则cloudflared需要--config /dev/null。如果没有它,配置中的通配入口规则会对所有快速隧道请求返回 404。 -
隧道连接必须使用生产构建。 Vite 开发服务器默认阻止非 localhost 主机(
allowedHosts)。生产构建 + Node 代理完全避免了这个问题。 -
Web UI 不会创建
.claude/或CLAUDE.md。 这些文件由npx gitnexus analyze创建。使用--skip-agents-md抑制 markdown 文件的生成,然后使用rm -rf .claude/清理其余部分。这些是 Claude Code 集成,hermes-agent 用户不需要它们。 -
浏览器内存限制。 Web UI 将整个图谱加载到浏览器内存中。拥有 5k+ 文件的仓库可能会运行缓慢。30k+ 文件很可能会导致标签页崩溃。
-
嵌入向量是可选的。
--embeddings启用语义搜索,但在大型仓库上需要几分钟。为了快速探索可以跳过它;如果你希望通过 AI 聊天面板进行自然语言查询,则可以添加它。 -
多个仓库。
gitnexus serve服务于所有已索引的仓库。索引多个仓库,启动一次 serve,Web UI 允许你在它们之间切换。