fix: Make 'wizard clear' parse agent configs and harden deletion safety#1
Merged
Merged
Conversation
- Route through agent_parser.get_all_indexed_projects() to discover CodeNexus-wired projects (Claude Code, Hermes, Cursor, Codex, ...) - Only list projects that have a real index on disk via find_codenexus_index - Add unique idx-N ids, --dry-run flag, and path-based confirmation to prevent accidental index deletion
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
wizard clearnow parses each AI agent's config (Claude Code, Hermes, Cursor, Codex, ...) viaagent_parser.get_all_indexed_projects()to discover CodeNexus-wired projects, instead of only scanning~/ .codenexusand home subdirs.find_codenexus_index).idx-Nids,--dry-runflag, and path-based confirmation (must type the exact project directory name to delete), preventing accidental removal of a real index.Root cause
The previous
wizard clearnever importedagent_parserand simply globbed~/ .codenexus,./.codenexus, and one level of home subdirs. It ignored the already-built agent config parsers, so it could miss agent-wired projects or delete the wrong thing.Verification
pytest tests/still passes (12/12).🤖 Generated with Claude Code