From ebc63c0264ec2151d0bfa8ca25730c2a82431e40 Mon Sep 17 00:00:00 2001 From: Evgeny Martynenkov Date: Sun, 1 Mar 2026 00:21:33 +0300 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=D0=B0=20Kiro=20=D0=B2=20switch.py?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/switch.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/scripts/switch.py b/scripts/switch.py index 14e8ba26..2862dd68 100644 --- a/scripts/switch.py +++ b/scripts/switch.py @@ -3,7 +3,7 @@ # Source: https://github.com/Nikolay-Shirokov/cc-1c-skills """ Копирует навыки из .claude/skills/ на другие AI-платформы (Cursor, Codex, Copilot, -Gemini CLI, OpenCode) с перезаписью путей, и/или переключает рантайм (PowerShell ↔ Python). +Kiro, Gemini CLI, OpenCode) с перезаписью путей, и/или переключает рантайм (PowerShell ↔ Python). Использование: python scripts/switch.py # интерактивный режим @@ -28,6 +28,7 @@ PLATFORMS = { 'cursor': '.cursor/skills', 'copilot': '.github/skills', 'gemini': '.gemini/skills', + 'kiro': '.kiro/skills', 'opencode': '.opencode/skills', } @@ -290,11 +291,12 @@ def interactive_mode(): ("Claude Code", ".claude/skills/"), ("Cursor", ".cursor/skills/"), ("GitHub Copilot", ".github/skills/"), + ("Kiro", ".kiro/skills/"), ("OpenAI Codex", ".codex/skills/"), ("Gemini CLI", ".gemini/skills/"), ("OpenCode", ".opencode/skills/"), ] - platform_keys = ['claude-code', 'cursor', 'copilot', 'codex', 'gemini', 'opencode'] + platform_keys = ['claude-code', 'cursor', 'copilot', 'kiro', 'codex', 'gemini', 'opencode'] choice = ask_choice("Для какой платформы настроить навыки?", platform_options) platform = platform_keys[choice - 1]