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.
This commit is contained in:
ReidenXerx 2026-04-29 16:37:06 +03:00
parent bb6aa0c855
commit ef96603fed

View file

@ -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",