mirror of
https://github.com/abhigyanpatwari/GitNexus.git
synced 2026-08-28 05:25:25 +00:00
Some checks are pending
CodeQL / Analyze (javascript-typescript) (push) Waiting to run
CodeQL / Analyze (python) (push) Waiting to run
Gitleaks / gitleaks (push) Waiting to run
Publish / Classify release event (push) Waiting to run
Publish / RC guard (marker + release-PR skip) (push) Blocked by required conditions
Publish / ci (push) Blocked by required conditions
Publish / Publish to npm (push) Blocked by required conditions
Publish / Build & Push RC Docker images (push) Blocked by required conditions
Scorecard / Scorecard analysis (push) Waiting to run
Skill copy sync / shipped skills drift guard (push) Waiting to run
Trivy Image Scan / Trivy (gitnexus-cli) (push) Waiting to run
Trivy Image Scan / Trivy (gitnexus-web) (push) Waiting to run
* chore: release v1.6.10 * fix(eval): derive the pinned runtime version from package.json The containment suite mounts a GitNexus runtime built from this checkout and asserts its version equals PINNED_GITNEXUS_VERSION, a constant hardcoded to "1.6.9" when the harness landed in #2566. The first release after that lands 1.6.10 in gitnexus/package.json, the built runtime reports 1.6.10, and `eval / containment (ubuntu)` fails on drift the release itself created. Read the version from gitnexus/package.json instead. The check keeps its real job -- proving the mounted runtime came from this checkout rather than a published package -- without a copy that only ever drifts on release day. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> --------- Co-authored-by: Gergo Magyar <gergomagyar0@gmail.com> Co-authored-by: Claude Opus 5 (1M context) <noreply@anthropic.com>
25 lines
778 B
JSON
25 lines
778 B
JSON
{
|
|
"name": "gitnexus",
|
|
"description": "Code intelligence powered by a knowledge graph. Provides execution flow tracing, blast radius analysis, and augmented search across your codebase.",
|
|
"version": "1.6.10",
|
|
"skills": "./skills",
|
|
"mcpServers": "./.mcp.json",
|
|
"hooks": "./hooks/hooks.json",
|
|
"interface": {
|
|
"displayName": "GitNexus",
|
|
"category": "Developer Tools",
|
|
"capabilities": [
|
|
"code-exploration",
|
|
"impact-analysis",
|
|
"debugging",
|
|
"refactoring",
|
|
"code-review"
|
|
]
|
|
},
|
|
"author": {
|
|
"name": "GitNexus"
|
|
},
|
|
"homepage": "https://github.com/abhigyanpatwari/GitNexus",
|
|
"repository": "https://github.com/abhigyanpatwari/GitNexus",
|
|
"keywords": ["code-intelligence", "knowledge-graph", "mcp", "static-analysis"]
|
|
}
|