一键导入
using-skills
Maps incoming work to the right skill workflow. Use when starting a session, when deciding which skill applies, or when the task type is unclear.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Maps incoming work to the right skill workflow. Use when starting a session, when deciding which skill applies, or when the task type is unclear.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Defines the mandatory footer template for all .md files — GitHub badges, dates, and license. Use when creating or modifying any markdown document.
Defines operating rules for all agents. Use when executing any task — confirms before action, requires rollback plans for dangerous operations, enforces naming conventions and credential placeholders.
Bash 스크립트 작성 시 표준 로깅 함수와 에러 처리 패턴을 적용합니다. 새 스크립트 생성 또는 기존 스크립트 개선 시 사용합니다. 이 skill을 참조할 때 응답 첫 줄에 "🟡 참조: skill://bash-script-template" 를 출력합니다.
Guides test writing with AAA pattern, BVA, EP, and edge case analysis. Use when writing unit tests, integration tests, or infrastructure validation tests.
Provides a structured code review checklist. Use when reviewing code, scripts, or IaC files. Covers correctness, security, error handling, performance, and infrastructure as code.
Guides systematic infrastructure troubleshooting. Use when services fail, builds break, deployments go wrong, or infrastructure behaves unexpectedly. Use when you need root-cause analysis rather than guessing.
| name | using-skills |
| description | Maps incoming work to the right skill workflow. Use when starting a session, when deciding which skill applies, or when the task type is unclear. |
작업이 도착하면 적절한 스킬을 식별하여 적용하는 메타 스킬입니다.
Task arrives
│
├── 새 인프라 구축/대규모 변경? → spec-driven-infra
├── 작업 분해 필요? → planning-and-breakdown
├── IaC 코드 작성/수정? → incremental-change
├── 장애/오류 발생? → debugging-and-recovery
├── Python 스크립트 작성? → python-script-template
├── Bash 스크립트 작성? → bash-script-template
├── 협업 디렉토리 파일 수정? → kiro-lock (현재 disabled — 협업 시 enable 필요)
├── 코드/스크립트 리뷰? → code-review
├── 보안 검토/마스킹? → security-tools
├── 프로덕션/비가역 변경? → doubt-driven-infra
├── 배포/런칭? → shipping-checklist
├── 테스트 작성? → testing-guide
├── Git 커밋/PR? → git-commit-rule
├── 마크다운 문서 작성? → work-rules + STYLE.md
├── 마크다운 링크/목차 검증? → md-link-check
├── README 푸터/배지 적용? → readme-template
└── 위 해당 없음? → work-rules 기본 규칙 적용
스킬은 단독 또는 조합으로 사용합니다.
| 시나리오 | 스킬 체인 |
|---|---|
| 새 인프라 프로젝트 | spec-driven-infra → planning-and-breakdown → incremental-change |
| 프로덕션 변경 | doubt-driven-infra → incremental-change → shipping-checklist |
| 장애 대응 | debugging-and-recovery → incremental-change |
| 코드 리뷰 후 수정 | code-review → incremental-change → testing-guide |