From ef96603fed4607d80b94b3f690ac63dba7bc4370 Mon Sep 17 00:00:00 2001 From: ReidenXerx Date: Wed, 29 Apr 2026 16:37:06 +0300 Subject: [PATCH] feat(package): add gitnexus commands for analysis Introduced new scripts in package.json for GitNexus analysis: - `gitnexus:refresh`: analyzes with embeddings and skills. - `gitnexus:full`: forces analysis with embeddings and skills. No production behavior changes. This enhances the development workflow for GitNexus users. --- package.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index f2ac47785..8a732cb14 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,9 @@ "format": "prettier --write .", "format:check": "prettier --check .", "lint": "eslint .", - "lint:fix": "eslint --fix ." + "lint:fix": "eslint --fix .", + "gitnexus:refresh": "gitnexus analyze --embeddings --skills", + "gitnexus:full": "gitnexus analyze --force --embeddings --skills" }, "devDependencies": { "@typescript-eslint/eslint-plugin": "^8.57.2",