Skip to content
Merged
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
335 changes: 0 additions & 335 deletions AI_AGENT_FRIENDLY_CLI_PLAN.md

This file was deleted.

14 changes: 0 additions & 14 deletions src/mcpm/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
usage,
)
from mcpm.commands.share import share
from mcpm.migration import V1ConfigDetector, V1ToV2Migrator
from mcpm.utils.logging_config import setup_logging
from mcpm.utils.rich_click_config import click, get_header_text
import os
Expand Down Expand Up @@ -117,19 +116,6 @@ def main(ctx, version, help_flag):
click.rich_click.FOOTER_TEXT = original_footer
return

# Check for v1 configuration and offer migration (even with subcommands)
detector = V1ConfigDetector()
if detector.has_v1_config():
migrator = V1ToV2Migrator()
migration_choice = migrator.show_migration_prompt()
if migration_choice == "migrate":
migrator.migrate_config()
return
elif migration_choice == "start_fresh":
migrator.start_fresh()
# Continue to execute the subcommand
# If "ignore", continue to subcommand without migration

# If no command was invoked, show help with header and footer
if ctx.invoked_subcommand is None:
console.print(get_header_text())
Expand Down
Loading