Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions gitnexus/src/cli/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ import { augmentCommand } from './augment.js';
import { wikiCommand } from './wiki.js';
import { queryCommand, contextCommand, impactCommand, cypherCommand } from './tool.js';
import { evalServerCommand } from './eval-server.js';
import { uninstallCommand } from './uninstall.js';
const program = new Command();

program
Expand Down Expand Up @@ -80,6 +81,14 @@ program
.option('--all', 'Clean all indexed repos')
.action(cleanCommand);

program
.command('uninstall')
.description('Fully remove GitNexus from current repo and/or global editor configs')
.option('-n, --dry-run', 'Preview what would be removed without deleting')
.option('--global', 'Remove only global setup (editor configs, hooks, skills, MCP)')
.option('--all', 'Remove everything (current repo + global)')
.action(uninstallCommand);

program
.command('wiki [path]')
.description('Generate repository wiki from knowledge graph')
Expand Down
Loading