Spaces:
Sleeping
Sleeping
File size: 29,155 Bytes
494c89b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 |
#!/usr/bin/env python3
"""
Kiro Batch Login CLI v2
=======================
Новый CLI с модульной архитектурой.
Использование:
python cli_new.py status # Общий статус
python cli_new.py tokens list # Список токенов
python cli_new.py tokens switch <name> # Переключить аккаунт
python cli_new.py quota # Квоты текущего аккаунта
python cli_new.py quota --all # Квоты всех аккаунтов
python cli_new.py machine status # Статус Machine ID
python cli_new.py machine reset # Сброс Kiro telemetry
python cli_new.py kiro status # Статус Kiro IDE
"""
import argparse
import sys
import json
from pathlib import Path
# Добавляем путь к модулям
sys.path.insert(0, str(Path(__file__).parent))
# Registration commands are optional (not available in minimal CLI build)
try:
from cli_registration import setup_registration_commands
HAS_REGISTRATION = True
except ImportError:
HAS_REGISTRATION = False
def setup_registration_commands(subparsers):
pass # No-op if registration not available
from core.paths import get_paths
from core.config import get_config
from services.token_service import TokenService
from services.quota_service import QuotaService
from services.machine_id_service import MachineIdService
from services.kiro_service import KiroService
from services.sso_import_service import SsoImportService
from services.kiro_patcher_service import KiroPatcherService
def cmd_status(args):
"""Общий статус системы"""
paths = get_paths()
token_service = TokenService()
kiro_service = KiroService()
print("\n" + "="*60)
print("[STATS] Kiro Batch Login Status")
print("="*60)
# Kiro IDE
kiro_status = kiro_service.get_status()
print(f"\n[C] Kiro IDE:")
print(f" Installed: {'[OK]' if kiro_status.installed else '[X]'}")
if kiro_status.installed:
print(f" Running: {'[OK]' if kiro_status.running else '[X]'}")
if kiro_status.current_account:
token_icon = '[OK]' if kiro_status.token_valid else '[X]'
print(f" Account: {kiro_status.current_account} ({token_icon})")
# Tokens
tokens = token_service.list_tokens()
valid_tokens = [t for t in tokens if not t.is_expired]
print(f"\n[KEY] Tokens:")
print(f" Total: {len(tokens)}")
print(f" Valid: {len(valid_tokens)}")
print(f" Expired: {len(tokens) - len(valid_tokens)}")
# Paths
print(f"\n[F] Paths:")
print(f" Tokens: {paths.tokens_dir}")
print(f" Backups: {paths.backups_dir}")
print("\n" + "="*60)
# =============================================================================
# Token Commands
# =============================================================================
def cmd_tokens_list(args):
"""Список токенов"""
service = TokenService()
tokens = service.list_tokens()
if not tokens:
print("[MAIL] No tokens found")
print(f" Directory: {service.paths.tokens_dir}")
return
# Текущий токен
current = service.get_current_token()
current_refresh = current.raw_data.get('refreshToken') if current else None
print(f"\n[KEY] Tokens ({len(tokens)}):")
print("-" * 60)
for token in tokens:
is_current = (current_refresh and
token.raw_data.get('refreshToken') == current_refresh)
marker = "→ " if is_current else " "
status = "[X]" if token.is_expired else "[OK]"
current_label = " [ACTIVE]" if is_current else ""
print(f"{marker}{token.account_name}{current_label} {status}")
print(f" Provider: {token.provider} | Auth: {token.auth_method}")
print(f" Region: {token.region}")
if token.expires_at:
print(f" Expires: {token.expires_at.strftime('%Y-%m-%d %H:%M')}")
print()
def cmd_tokens_switch(args):
"""Переключить на токен"""
service = TokenService()
token = service.get_token(args.name)
if not token:
print(f"[X] Token '{args.name}' not found")
print("\nAvailable tokens:")
for t in service.list_tokens():
print(f" - {t.account_name}")
return
print(f"\n[R] Switching to: {token.account_name}")
print(f" Provider: {token.provider}")
print(f" Auth: {token.auth_method}")
success = service.activate_token(token, force_refresh=args.refresh)
if success:
print(f"\n[OK] Switched to {token.account_name}")
print(" Restart Kiro to apply changes")
else:
print("\n[X] Failed to switch")
def cmd_tokens_refresh(args):
"""Обновить токен"""
service = TokenService()
if args.name:
token = service.get_token(args.name)
else:
token = service.get_best_token()
if not token:
print("[X] No token found")
return
print(f"[R] Refreshing: {token.account_name}")
try:
updated = service.refresh_and_save(token)
print(f"[OK] Token refreshed!")
print(f" Expires: {updated.expires_at.strftime('%Y-%m-%d %H:%M')}")
if args.activate:
service.activate_token(updated)
print(" Activated in Kiro")
except Exception as e:
print(f"[X] Failed: {e}")
# =============================================================================
# Quota Commands
# =============================================================================
def cmd_quota(args):
"""Показать квоты"""
service = QuotaService()
token_service = TokenService()
if args.all:
# Квоты всех аккаунтов
tokens = token_service.list_tokens()
if not tokens:
print("[X] No tokens found")
return
print(f"\n[STATS] Checking quotas for {len(tokens)} accounts...\n")
for token in tokens:
print(f"\n{'='*60}")
print(f"[M] {token.account_name} ({token.provider})")
access_token = token.raw_data.get('accessToken')
# Обновляем если нужно
if token.is_expired or args.refresh:
print("[R] Refreshing token...")
try:
new_data = token_service.refresh_token(token)
access_token = new_data['accessToken']
except Exception as e:
print(f"[X] Failed to refresh: {e}")
continue
info = service.get_quota(access_token, token.auth_method)
if info.error:
print(f" [X] {info.error}")
elif info.usage:
u = info.usage
print(f" [+] {u.used}/{u.limit} ({u.percent_used:.1f}%)")
print(f" [D] Reset in {info.days_until_reset} days")
if u.trial_limit > 0:
print(f" [GIFT] Trial: {u.trial_used}/{u.trial_limit}")
return
# Квоты текущего аккаунта
print("\n[S] Getting quota for current account...")
info = service.get_current_quota()
if info:
if args.json:
print(json.dumps(info.raw_response, indent=2))
else:
service.print_quota(info)
else:
print("[X] Failed to get quota")
# =============================================================================
# Machine ID Commands
# =============================================================================
def cmd_machine_status(args):
"""Статус Machine ID"""
service = MachineIdService()
print("\n" + "="*60)
print("[*] Machine ID Status")
print("="*60)
# System MachineGuid
sys_info = service.get_system_machine_info()
if sys_info.machine_guid:
print(f"\n[PC] System MachineGuid:")
print(f" {sys_info.machine_guid}")
if sys_info.backup_exists:
print(f" Backup: [OK] ({sys_info.backup_time})")
# Kiro telemetry
tele_info = service.get_telemetry_info()
if not tele_info.kiro_installed:
print("\n[X] Kiro not installed")
else:
print(f"\n[TARGET] Kiro Telemetry IDs:")
print(f" machineId: {(tele_info.machine_id or 'N/A')[:40]}...")
print(f" sqmId: {tele_info.sqm_id or 'N/A'}")
print(f" devDeviceId: {tele_info.dev_device_id or 'N/A'}")
print(f" serviceMachineId: {(tele_info.service_machine_id or 'N/A')[:40]}...")
# Backups
paths = get_paths()
backups = paths.list_backups('kiro-telemetry')
print(f"\n[P] Backups:")
print(f" Kiro telemetry: {len(backups)} backup(s)")
print(f" System GUID: {'[OK]' if sys_info.backup_exists else '[X]'}")
print("\n" + "="*60)
def cmd_machine_backup(args):
"""Бэкап Machine ID"""
service = MachineIdService()
print("[P] Creating backup...")
try:
backup_file = service.backup_telemetry()
print(f"[OK] Kiro telemetry saved: {backup_file}")
except Exception as e:
print(f"[X] Failed: {e}")
if args.system:
backup_file = service.backup_system_machine_guid()
if backup_file:
print(f"[OK] System MachineGuid saved: {backup_file}")
def cmd_machine_reset(args):
"""Сброс Machine ID"""
service = MachineIdService()
print("[R] Resetting Machine IDs...")
results = service.full_reset(
reset_system=args.system,
check_running=not args.force
)
if results['kiro_reset']:
print("[OK] Kiro telemetry IDs reset!")
tele = results['new_telemetry']
print(f" machineId: {tele.machine_id[:30]}...")
print(f" sqmId: {tele.sqm_id}")
if results['system_reset']:
print(f"[OK] System MachineGuid reset: {results['new_system_guid']}")
for error in results['errors']:
print(f"[!] {error}")
def cmd_machine_restore(args):
"""Восстановить Machine ID"""
service = MachineIdService()
print("[IN] Restoring from backup...")
try:
service.restore_telemetry()
print("[OK] Kiro telemetry restored!")
except Exception as e:
print(f"[X] Failed: {e}")
# =============================================================================
# Patch Commands
# =============================================================================
def cmd_patch_status(args):
"""Статус патча Kiro"""
import json as json_module
service = KiroPatcherService()
status = service.get_status()
# JSON output for programmatic use
if getattr(args, 'json', False):
print(json_module.dumps({
'isPatched': status.is_patched,
'kiroVersion': status.kiro_version,
'patchVersion': status.patch_version,
'currentMachineId': status.current_machine_id,
'error': status.error
}))
return
print("\n" + "="*60)
print("[*] Kiro Patch Status")
print("="*60)
if status.error:
print(f"\n[X] Error: {status.error}")
return
print(f"\n[V] Kiro Version: {status.kiro_version or 'Unknown'}")
print(f"[F] Target File: {status.extension_js_path}")
if status.is_patched:
print(f"\n[OK] Status: PATCHED (v{status.patch_version})")
else:
print(f"\n[X] Status: NOT PATCHED")
if status.current_machine_id:
print(f"\n[ID] Custom Machine ID:")
print(f" {status.current_machine_id[:32]}...")
else:
print(f"\n[ID] Custom Machine ID: Not set")
if status.backup_exists:
print(f"\n[P] Backup: {status.backup_path}")
else:
print(f"\n[P] Backup: None")
print("\n" + "="*60)
def cmd_patch_apply(args):
"""Применить патч к Kiro"""
service = KiroPatcherService()
print("[R] Applying patch to Kiro...")
result = service.patch(force=args.force, skip_running_check=getattr(args, 'skip_check', False))
if result.success:
print(f"[OK] {result.message}")
print(f" Backup: {result.backup_path}")
print(f" Patched: {result.patched_file}")
# Показываем текущий machine ID
machine_id = service.get_machine_id()
if machine_id:
print(f"\n[ID] Current Machine ID:")
print(f" {machine_id[:32]}...")
print("\n[!] Restart Kiro for changes to take effect")
else:
print(f"[X] {result.message}")
def cmd_patch_remove(args):
"""Удалить патч (восстановить оригинал)"""
service = KiroPatcherService()
print("[R] Removing patch from Kiro...")
result = service.unpatch(skip_running_check=getattr(args, 'skip_check', False))
if result.success:
print(f"[OK] {result.message}")
print(f" Restored from: {result.backup_path}")
print("\n[!] Restart Kiro for changes to take effect")
else:
print(f"[X] {result.message}")
def cmd_patch_generate_id(args):
"""Сгенерировать новый Machine ID"""
service = KiroPatcherService()
if args.id:
# Установить конкретный ID
if service.set_machine_id(args.id):
print(f"[OK] Machine ID set: {args.id[:32]}...")
else:
print("[X] Invalid Machine ID format. Must be 64-char hex string.")
else:
# Сгенерировать новый
new_id = service.generate_machine_id()
print(f"[OK] New Machine ID generated:")
print(f" {new_id}")
print(f"\n[F] Saved to: {service.custom_id_path}")
# Проверяем патч
status = service.get_status()
if not status.is_patched:
print("\n[!] Warning: Kiro is not patched. Run 'patch apply' first.")
def cmd_patch_check(args):
"""Проверить нужно ли обновить патч"""
service = KiroPatcherService()
needs_update, reason = service.check_update_needed()
if needs_update:
print(f"[!] Patch needs update: {reason}")
if args.auto_fix:
print("[R] Auto-fixing...")
result = service.patch(force=True, skip_running_check=True)
if result.success:
print(f"[OK] {result.message}")
else:
print(f"[X] {result.message}")
else:
status = service.get_status()
if status.is_patched:
print(f"[OK] Patch is up to date (v{status.patch_version})")
else:
print("[INFO] Kiro is not patched")
def cmd_patch_restart(args):
"""Перезапустить Kiro (с сохранением открытых окон)"""
service = KiroPatcherService()
print("\n" + "="*60)
print("[*] Restarting Kiro")
print("="*60 + "\n")
success, message = service.restart_kiro(preserve_windows=not args.no_preserve)
if success:
print(f"\n[OK] {message}")
else:
print(f"\n[X] {message}")
def cmd_patch_apply_restart(args):
"""Применить патч и перезапустить Kiro"""
service = KiroPatcherService()
print("\n" + "="*60)
print("[*] Patching and Restarting Kiro")
print("="*60 + "\n")
success, message = service.patch_and_restart(force=args.force)
if success:
print(f"\n[OK] {message}")
# Показываем статус
status = service.get_status()
if status.is_patched:
print(f"[V] Patch version: {status.patch_version}")
if status.current_machine_id:
print(f"[ID] Machine ID: {status.current_machine_id[:32]}...")
else:
print(f"\n[X] {message}")
# =============================================================================
# Kiro Commands
# =============================================================================
def cmd_kiro_status(args):
"""Статус Kiro IDE"""
service = KiroService()
service.print_status()
def cmd_kiro_start(args):
"""Запустить Kiro"""
service = KiroService()
try:
service.start()
print("[OK] Kiro started")
except Exception as e:
print(f"[X] Failed: {e}")
def cmd_kiro_stop(args):
"""Остановить Kiro"""
service = KiroService()
if service.stop():
print("[OK] Kiro stopped")
else:
print("[X] Failed to stop Kiro")
def cmd_kiro_restart(args):
"""Перезапустить Kiro"""
service = KiroService()
try:
service.restart()
print("[OK] Kiro restarted")
except Exception as e:
print(f"[X] Failed: {e}")
def cmd_kiro_info(args):
"""Показать информацию о Kiro IDE (версия, User-Agent и т.д.)"""
from core.kiro_config import get_kiro_info
info = get_kiro_info()
print("\n" + "="*60)
print("[*] Kiro IDE Configuration (Dynamic)")
print("="*60)
print(f"\n[F] Install Path:")
print(f" {info['install_path']}")
print(f"\n[V] Version:")
print(f" {info['version']}")
print(f"\n[PC] Machine ID:")
print(f" {info['machine_id']}")
print(f"\n[W] User-Agent:")
print(f" {info['user_agent']}")
print(f"\n[F] Storage Path:")
print(f" {info['storage_path']}")
print(f"\n[KEY] Scopes:")
for scope in info['scopes']:
print(f" - {scope}")
print("\n" + "="*60)
if args.json:
print("\nJSON:")
print(json.dumps(info, indent=2))
# =============================================================================
# IMAP Commands
# =============================================================================
def cmd_imap_test(args):
"""Тестировать IMAP подключение"""
from core.config import get_config
import imaplib
import ssl
config = get_config()
if not config.imap.email or not config.imap.password:
print("❌ IMAP not configured")
print("Set IMAP_USER and IMAP_PASSWORD environment variables")
print("\nExample .env:")
print("IMAP_SERVER=imap.yandex.ru")
print("IMAP_USER=your-email@example.com")
print("IMAP_PASSWORD=your-imap-app-password")
return
print(f"\n🔌 Testing IMAP: {config.imap.host}:{config.imap.port} as {config.imap.email}...")
try:
# SSL подключение
if config.imap.use_ssl:
context = ssl.create_default_context()
mail = imaplib.IMAP4_SSL(config.imap.host, config.imap.port, ssl_context=context)
else:
mail = imaplib.IMAP4(config.imap.host, config.imap.port)
print("✅ Connected to server")
# Авторизация
mail.login(config.imap.email, config.imap.password)
print("✅ Authentication successful")
# Получаем список папок
status, folders = mail.list()
if status == 'OK':
print(f"✅ Found {len(folders)} folders")
# Проверяем INBOX
status, messages = mail.select('INBOX')
if status == 'OK':
msg_count = int(messages[0]) if messages[0] else 0
print(f"✅ INBOX: {msg_count} messages")
# Закрываем
mail.close()
mail.logout()
print("✅ IMAP test successful!")
except Exception as e:
print(f"❌ IMAP test error: {e}")
# =============================================================================
# SSO Import Commands
# =============================================================================
def cmd_sso_import(args):
"""
Импорт аккаунта из SSO cookie.
Как получить cookie:
1. Залогиниться в https://view.awsapps.com/start
2. DevTools (F12) -> Application -> Cookies
3. Скопировать значение x-amz-sso_authn
"""
service = SsoImportService()
bearer_token = args.token
# Если токен не передан, запросить
if not bearer_token:
print("\n[LIST] SSO Cookie Import")
print("=" * 50)
print("\nКак получить cookie:")
print("1. Залогиниться в https://view.awsapps.com/start")
print("2. DevTools (F12) -> Application -> Cookies")
print("3. Скопировать значение x-amz-sso_authn")
print()
bearer_token = input("Вставьте значение cookie x-amz-sso_authn: ").strip()
if not bearer_token:
print("[X] Token is required")
return
print(f"\n[R] Importing account from SSO cookie...")
print(f" Region: {args.region}")
print()
if args.activate:
result = service.import_and_activate(bearer_token, args.region)
else:
result = service.import_and_save(bearer_token, args.region)
if result.success:
print(f"\n[OK] Import successful!")
print(f" Email: {result.email}")
print(f" Client ID: {result.client_id[:30]}...")
if args.activate:
print(f" Status: Activated in Kiro")
else:
print(f"\n[X] Import failed: {result.error}")
# =============================================================================
# Main
# =============================================================================
def main():
parser = argparse.ArgumentParser(
description='Kiro Batch Login CLI v2',
formatter_class=argparse.RawDescriptionHelpFormatter
)
subparsers = parser.add_subparsers(dest='command', help='Command')
setup_registration_commands(subparsers)
# status
status_parser = subparsers.add_parser('status', help='Show overall status')
status_parser.set_defaults(func=cmd_status)
# tokens
tokens_parser = subparsers.add_parser('tokens', help='Token management')
tokens_sub = tokens_parser.add_subparsers(dest='tokens_cmd')
tokens_list = tokens_sub.add_parser('list', help='List tokens')
tokens_list.set_defaults(func=cmd_tokens_list)
tokens_switch = tokens_sub.add_parser('switch', help='Switch to token')
tokens_switch.add_argument('name', help='Token name')
tokens_switch.add_argument('-r', '--refresh', action='store_true', help='Force refresh')
tokens_switch.set_defaults(func=cmd_tokens_switch)
tokens_refresh = tokens_sub.add_parser('refresh', help='Refresh token')
tokens_refresh.add_argument('name', nargs='?', help='Token name')
tokens_refresh.add_argument('-a', '--activate', action='store_true', help='Activate after refresh')
tokens_refresh.set_defaults(func=cmd_tokens_refresh)
# quota
quota_parser = subparsers.add_parser('quota', help='Show quotas')
quota_parser.add_argument('--all', '-a', action='store_true', help='All accounts')
quota_parser.add_argument('--refresh', '-r', action='store_true', help='Refresh tokens')
quota_parser.add_argument('--json', '-j', action='store_true', help='JSON output')
quota_parser.set_defaults(func=cmd_quota)
# machine
machine_parser = subparsers.add_parser('machine', help='Machine ID management')
machine_sub = machine_parser.add_subparsers(dest='machine_cmd')
machine_status = machine_sub.add_parser('status', help='Show status')
machine_status.set_defaults(func=cmd_machine_status)
machine_backup = machine_sub.add_parser('backup', help='Create backup')
machine_backup.add_argument('-s', '--system', action='store_true', help='Include system GUID')
machine_backup.set_defaults(func=cmd_machine_backup)
machine_reset = machine_sub.add_parser('reset', help='Reset IDs')
machine_reset.add_argument('-s', '--system', action='store_true', help='Include system GUID')
machine_reset.add_argument('-f', '--force', action='store_true', help='Skip Kiro running check')
machine_reset.set_defaults(func=cmd_machine_reset)
machine_restore = machine_sub.add_parser('restore', help='Restore from backup')
machine_restore.set_defaults(func=cmd_machine_restore)
# kiro
kiro_parser = subparsers.add_parser('kiro', help='Kiro IDE management')
kiro_sub = kiro_parser.add_subparsers(dest='kiro_cmd')
kiro_status = kiro_sub.add_parser('status', help='Show status')
kiro_status.set_defaults(func=cmd_kiro_status)
kiro_start = kiro_sub.add_parser('start', help='Start Kiro')
kiro_start.set_defaults(func=cmd_kiro_start)
kiro_stop = kiro_sub.add_parser('stop', help='Stop Kiro')
kiro_stop.set_defaults(func=cmd_kiro_stop)
kiro_restart = kiro_sub.add_parser('restart', help='Restart Kiro')
kiro_restart.set_defaults(func=cmd_kiro_restart)
kiro_info = kiro_sub.add_parser('info', help='Show Kiro config (version, User-Agent, etc.)')
kiro_info.add_argument('--json', '-j', action='store_true', help='JSON output')
kiro_info.set_defaults(func=cmd_kiro_info)
# sso-import
sso_parser = subparsers.add_parser('sso-import', help='Import account from SSO cookie')
sso_parser.add_argument('token', nargs='?', help='x-amz-sso_authn cookie value')
sso_parser.add_argument('-r', '--region', default='us-east-1', help='AWS region')
sso_parser.add_argument('-a', '--activate', action='store_true', help='Activate in Kiro after import')
sso_parser.set_defaults(func=cmd_sso_import)
# imap
imap_parser = subparsers.add_parser('imap', help='IMAP management')
imap_sub = imap_parser.add_subparsers(dest='imap_cmd')
imap_test = imap_sub.add_parser('test', help='Test IMAP connection')
imap_test.set_defaults(func=cmd_imap_test)
# patch
patch_parser = subparsers.add_parser('patch', help='Kiro patching (custom Machine ID)')
patch_sub = patch_parser.add_subparsers(dest='patch_cmd')
patch_status = patch_sub.add_parser('status', help='Show patch status')
patch_status.add_argument('--json', '-j', action='store_true', help='JSON output')
patch_status.set_defaults(func=cmd_patch_status)
patch_apply = patch_sub.add_parser('apply', help='Apply patch to Kiro')
patch_apply.add_argument('-f', '--force', action='store_true', help='Force re-patch')
patch_apply.add_argument('--skip-check', action='store_true', help='Skip Kiro running check (dangerous!)')
patch_apply.set_defaults(func=cmd_patch_apply)
patch_remove = patch_sub.add_parser('remove', help='Remove patch (restore original)')
patch_remove.add_argument('--skip-check', action='store_true', help='Skip Kiro running check')
patch_remove.set_defaults(func=cmd_patch_remove)
patch_gen = patch_sub.add_parser('generate-id', help='Generate new Machine ID')
patch_gen.add_argument('id', nargs='?', help='Set specific ID (64-char hex)')
patch_gen.set_defaults(func=cmd_patch_generate_id)
patch_check = patch_sub.add_parser('check', help='Check if patch needs update')
patch_check.add_argument('--auto-fix', action='store_true', help='Auto re-apply patch if needed')
patch_check.set_defaults(func=cmd_patch_check)
patch_restart = patch_sub.add_parser('restart', help='Restart Kiro (preserves open windows)')
patch_restart.add_argument('--no-preserve', action='store_true', help='Do not preserve open windows')
patch_restart.set_defaults(func=cmd_patch_restart)
patch_apply_restart = patch_sub.add_parser('apply-restart', help='Apply patch and restart Kiro')
patch_apply_restart.add_argument('-f', '--force', action='store_true', help='Force re-patch')
patch_apply_restart.set_defaults(func=cmd_patch_apply_restart)
# Parse
args = parser.parse_args()
if not args.command:
parser.print_help()
return
# Handle subcommands
if args.command == 'tokens' and not args.tokens_cmd:
cmd_tokens_list(args)
return
if args.command == 'machine' and not args.machine_cmd:
cmd_machine_status(args)
return
if args.command == 'kiro' and not args.kiro_cmd:
cmd_kiro_status(args)
return
if args.command == 'patch' and not args.patch_cmd:
cmd_patch_status(args)
return
if args.command == 'imap' and not args.imap_cmd:
cmd_imap_test(args)
return
if hasattr(args, 'func'):
args.func(args)
if __name__ == '__main__':
main()
|