AugmentCode-Free: Multi-IDE Maintenance Tools. Provides utilities for cleaning IDE databases and modifying telemetry IDs. Supports VS Code, Cursor, and Windsurf.
(language)
| 48 | @click.group(context_settings=dict(help_option_names=['-h', '--help'])) |
| 49 | @click.option('--language', default=None, help='Set language (zh_CN, en_US)') |
| 50 | def main_cli(language): |
| 51 | """ |
| 52 | AugmentCode-Free: Multi-IDE Maintenance Tools. |
| 53 | Provides utilities for cleaning IDE databases and modifying telemetry IDs. |
| 54 | Supports VS Code, Cursor, and Windsurf. |
| 55 | """ |
| 56 | if LANGUAGE_SUPPORT and language: |
| 57 | config_manager = get_config_manager() |
| 58 | language_manager = get_language_manager(config_manager) |
| 59 | language_manager.set_language(language) |
| 60 | |
| 61 | @main_cli.command("clean-db") |
| 62 | @click.option('--ide', default='vscode', show_default=True, |
no test coverage detected