一键导入
slide-fix
Remarp 슬라이드 이슈 어노테이션(<!-- issue: -->)을 읽고 수정 반영. Triggers: /slide-fix, issue 반영, slide fix, 이슈 수정, 슬라이드 이슈, fix slide issues, apply issue annotations
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Remarp 슬라이드 이슈 어노테이션(<!-- issue: -->)을 읽고 수정 반영. Triggers: /slide-fix, issue 반영, slide fix, 이슈 수정, 슬라이드 이슈, fix slide issues, apply issue annotations
用 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 | slide-fix |
| description | Remarp 슬라이드 이슈 어노테이션(<!-- issue: -->)을 읽고 수정 반영. Triggers: /slide-fix, issue 반영, slide fix, 이슈 수정, 슬라이드 이슈, fix slide issues, apply issue annotations |
| model | sonnet |
| allowed-tools | ["Read","Edit","Glob","Grep","Bash"] |
Remarp .md 파일에 삽입된 <!-- issue: 내용 --> 어노테이션을 읽고, 각 이슈를 소스 슬라이드에 반영한 뒤 어노테이션을 제거합니다.
프로젝트 디렉토리 또는 파일 경로를 찾아 remarp_to_slides.py issues 명령으로 이슈 목록을 수집합니다.
# 프로젝트 디렉토리 (여러 .md 파일 스캔)
python3 <script_path>/remarp_to_slides.py issues <project_dir> --json
# 단일 파일
python3 <script_path>/remarp_to_slides.py issues <file.md> --json
스크립트 위치 탐색 순서:
plugins/aws-content-plugin/skills/reactive-presentation/scripts/remarp_to_slides.pyscripts/remarp_to_slides.py**/remarp_to_slides.py 검색JSON 출력 형식:
[
{
"file": "doc-sites/static/demos/my-session/01-intro.md",
"block": "01-intro",
"slide": 3,
"title": "Architecture Overview",
"issue": "다이어그램을 추가해주세요"
}
]
각 이슈에 대해:
file 경로의 .md 파일을 Read--- 구분자로 슬라이드를 구분하고 slide 번호(1-based)에 해당하는 슬라이드 찾기issue 텍스트에 기술된 개선사항을 슬라이드에 적용
<!-- issue: ... --> 주석을 제거모든 이슈 수정 후 HTML을 재생성합니다.
python3 <script_path>/remarp_to_slides.py build <project_dir>
:::html + :::css 블록 수정 시 기존 스타일 패턴 유지:::canvas DSL은 박스 5개 이상이면 :::html로 변환 (reactive-presentation SKILL.md 규칙)사용자가 /slide-fix를 실행하면:
1. remarp_to_slides.py issues doc-sites/static/demos/my-session/ --json
→ 3개 이슈 발견
2. 이슈 1: slide 3 "Architecture Overview" → "다이어그램을 추가해주세요"
→ 01-intro.md 슬라이드 3에 아키텍처 다이어그램 추가
→ <!-- issue: 다이어그램을 추가해주세요 --> 제거
3. 이슈 2: slide 5 "Performance" → "수치를 그래프로 변경"
→ 01-intro.md 슬라이드 5의 텍스트 수치를 :::html 그래프로 변환
→ <!-- issue: 수치를 그래프로 변경 --> 제거
4. 이슈 3: slide 2 "Overview" → "탭으로 분리"
→ 02-deep-dive.md 슬라이드 2를 탭 UI로 재구성
→ <!-- issue: 탭으로 분리 --> 제거
5. remarp_to_slides.py build doc-sites/static/demos/my-session/
→ HTML 재생성 완료