Conversation
Add two new commands to help maintain a healthy claudette environment: - `claudette doctor`: Comprehensive health check that detects: - Missing initialization or configuration - Required tool availability (Docker, Git, Node.js, Python, uv) - Orphaned projects (metadata without worktrees) - Port conflicts between projects - Provides actionable fix suggestions - `claudette clean`: Cleanup tool for orphaned project metadata: - Finds projects with missing worktrees or corrupted metadata - Removes stale metadata files that `remove` may have missed - Supports --dry-run to preview changes - Supports --force to skip confirmation - Only removes metadata, never actual project files These commands help resolve issues where `claudette remove` leaves behind metadata, causing phantom projects in `claudette list` and failures in `claudette activate`. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
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
This PR adds two new commands to help maintain a healthy claudette environment:
claudette doctor- Comprehensive health check and diagnosticsclaudette clean- Cleanup tool for orphaned project metadataProblem
Users were experiencing issues where
claudette removewould sometimes leave behind metadata files, causing:claudette listclaudette activateon these orphaned projectsSolution
🩺
claudette doctorcommandComprehensive health check that detects:
Example output:
🧹
claudette cleancommandCleanup tool for orphaned project metadata:
claudette removemay have missed--dry-runto preview what would be cleaned--forceto skip confirmation promptExample usage:
Changes
doctorcommand insrc/claudette/cli.pycleancommand insrc/claudette/cli.pyfrom_fileclassmethod toProjectMetadatainsrc/claudette/config.pytests/test_doctor_clean.pyTesting
Documentation
Updated README.md with detailed descriptions of both commands including:
Backward Compatibility
Future Enhancements
doctorcommandcleanfunctionality intodoctor --fix🤖 Generated with Claude Code