一键导入
kiro-convert
Convert Claude Code plugins to Kiro Power format. Supports GitHub URL, local path, marketplace name, and individual skill conversion.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Convert Claude Code plugins to Kiro Power format. Supports GitHub URL, local path, marketplace name, and individual skill conversion.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Collaborate with other AI agents (Kiro CLI, the peer host CLI, and Agy) for a second opinion. Multi-AI review of code/architecture, decision support when you're unsure, and ADR co-authoring, plus autonomous consensus/harness pipelines. The current host chairs and synthesizes the final answer. 멀티 AI 협업: 리뷰, 의사결정 보조, ADR 협업.
Claude plans and verifies, Kiro CLI implements on its own flat-rate subscription credits — a cost-savings implementation-delegation workflow, not a second opinion (see co-agent for that). Kiro implements inside an isolated git worktree; only the captured, scope-guarded diff ever reaches the main tree. Triggers on 'kiro한테 시켜서 구현', 'kiro로 구현', 'kiro한테 구현 위임', 'delegate implementation to kiro', 'kiro implement this'. For read-only review of a diff, use the /kiro:review command instead — this skill is write-capable (it commits) and deliberately does NOT own review triggers.
AWS Workshop Studio 프로젝트 구조 생성 및 콘텐츠 작성 스킬. "워크샵 만들어", "workshop init", "랩 작성" 요청 시 활성화
After creating a PR, poll for AI and human review feedback, auto-fix issues, and push (max 3 iterations)
Create a single-page, responsive online brochure (landing page) for an AWS solution, product, or platform as one self-contained HTML file — editorial design, hero + value + features + embedded architecture diagram + CTA, deployed publicly via GitHub Pages. Use whenever the user wants a brochure, landing page, marketing one-pager, product overview page, solution showcase, '온라인 브로셔', '브로셔 만들어', '랜딩 페이지', '소개 페이지', or wants to present a cloud product's value and architecture on the web — even if they don't say the word 'brochure'. Not for slide decks (use reactive-presentation) or multi-page docs sites (use gitbook).
Create dynamic animated SVG diagrams with SMIL animations for AWS architecture traffic flow, service interactions, and deployment pipelines. Use when creating animated or dynamic diagrams.
| name | kiro-convert |
| description | Convert Claude Code plugins to Kiro Power format. Supports GitHub URL, local path, marketplace name, and individual skill conversion. |
| triggers | ["convert to kiro","kiro power","kiro convert","키로 변환","키로 파워","claude to kiro"] |
| model | sonnet |
| allowed-tools | ["Read","Write","Bash","Glob","Grep"] |
A systematic workflow for converting Claude Code plugins into Kiro Power format, including hooks, skills, steering files, and MCP configuration.
Identify input type — Ask the user which source to use:
--git-url) — Clone a repository and extract the plugin--source) — Use an existing local plugin directory--marketplace) — Search and download by plugin name--skill) — Convert individual skills onlyGather parameters — Collect required info based on source type:
git clone --depth 1 the repository, navigate to plugin subdirectory.claude-plugin/plugin.json existsplugins/ and ~/.claude/plugins/ directoriesSKILL.md exists in each specified directoryAsk the user where to output the converted power:
| Target | Path | Use Case |
|---|---|---|
global | ~/.kiro/powers/<name>/ | Install for all Kiro projects |
project | .kiro/powers/<name>/ | Install for current project only |
export | User-specified path | Export for sharing or manual installation |
Ask about conversion preferences:
| Option | Flag | Effect |
|---|---|---|
| Preserve skills | --preserve-skills | Output skills as .kiro/skills/ format instead of steering |
Run the conversion script:
python3 {plugin-dir}/skills/kiro-convert/scripts/convert_plugin_to_power.py \
--source <plugin-path> --output <output-path> --target <target> [--preserve-skills]
Or perform manual conversion following the rules in references/conversion-rules.md.
| Source | Target | Key Changes |
|---|---|---|
plugin.json | POWER.md | Manifest → frontmatter; keywords aggregated; author preserved |
CLAUDE.md | steering/routing.md | Wrapped with inclusion: always |
agents/*.md | steering/<agent>.md | tools/model removed; inclusion: auto added |
skills/*/SKILL.md | steering/<skill>.md | triggers merged into description; inclusion: auto |
skills/*/references/*.md | steering/ref-*.md | inclusion: manual or fileMatch (auto-detected) |
.mcp.json | mcp.json | type removed; autoApprove/disabled/disabledTools added; secrets → ${VAR} |
hooks in plugin.json | hooks/*.kiro.hook | JSON hook files with Kiro trigger/action types |
| SessionStart prompts | POWER.md onboarding | Migrated to body since Kiro has no SessionStart event |
POWER.md, steering/ directoryname, displayName, description, keywordsinclusion fieldglobs field present when inclusion: fileMatch.mcp.json, verify mcp.json has no type fields, has autoApprove/disabled/disabledTools.kiro.hook files have when.type, then.type, and valid JSON--preserve-skills, verify skills/*/SKILL.md has proper frontmatterreferences/kiro-power-format.md — Kiro Power directory structure, format specification, hooks, skills, agents, MCP configreferences/conversion-rules.md — Detailed field-by-field conversion rules, hook mapping, fileMatch detection, edge cases