一键导入
clarify
// Adaptive requirements clarification with auto-depth routing. Shallow (Q&A) for simple tasks, Deep (exploration + DRAFT + PLAN) for complex ones. Escalates automatically when ambiguity persists.
// Adaptive requirements clarification with auto-depth routing. Shallow (Q&A) for simple tasks, Deep (exploration + DRAFT + PLAN) for complex ones. Escalates automatically when ambiguity persists.
Security audit with Quick/Full modes. Quick runs inside /review for auth/API changes. Full runs standalone with OWASP Top 10 + STRIDE. Use when touching security-sensitive code or for periodic audits.
TDD implementation (RED→GREEN→REFACTOR) → verify → review. Use when a plan is approved and ready for coding. Drives the full chain automatically.
Structured root-cause debugging with scope lock. Use when hitting bugs, errors, or unexpected behavior. 4-phase: collect → analyze → hypothesize → fix.
오픈소스 기여 가능성 분석. GitHub 레포 URL 또는 이슈 링크를 받아 기여 가능 여부를 판단. Analyze open source contribution viability — use when the user asks about contributing to a GitHub repo, wants to find good first issues, or asks if an issue is worth working on. Trigger on phrases like 'contribute', 'open source', 'good first issue', 'can I work on this', '기여', '오픈소스'.
오픈소스 기여 실행. oss-clarify 분석 후 실제 기여 작업 수행 — 브랜치 생성, 코드 수정, 테스트, 커밋 메시지 추천. Execute open source contribution after oss-clarify analysis. Use when the user says 'proceed', 'contribute now', 'OSS 작업 시작', '기여 진행', or confirms they want to start working on an issue.
Use this skill whenever creating PPTX slides, presentations, or decks. Covers 30 modern design styles (Glassmorphism, Neo-Brutalism, Bento Grid, Dark Academia, Gradient Mesh, Claymorphism, Swiss International, Aurora Neon Glow, Retro Y2K, Nordic Minimalism, Typographic Bold, Duotone Color Split, Monochrome Minimal, Cyberpunk Outline, Editorial Magazine, Pastel Soft UI, Dark Neon Miami, Hand-crafted Organic, Isometric 3D Flat, Vaporwave, Art Deco Luxe, Brutalist Newspaper, Stained Glass Mosaic, Liquid Blob Morphing, Memphis Pop Pattern, Dark Forest Nature, Architectural Blueprint, Maximalist Collage, SciFi Holographic Data, Risograph Print) with exact color, font, and layout specifications. Activate for any presentation request including words like "sleek", "modern", "trendy", "designed", "stylish", or "visually striking" slides. Also trigger when users want to make existing slides "look better", need a specific aesthetic for a deck, or ask about presentation design in general.
| name | clarify |
| description | Adaptive requirements clarification with auto-depth routing. Shallow (Q&A) for simple tasks, Deep (exploration + DRAFT + PLAN) for complex ones. Escalates automatically when ambiguity persists. |
| Previous | Current | Next |
|---|---|---|
| Session start | /clarify | EnterPlanMode() → /implement |
1. Route → 복잡도 판단 (LOW/HIGH)
2. Clarify → Shallow (Q&A) 또는 Deep (탐색+인터뷰)
3. DRAFT → .dev/specs/{name}/DRAFT.md 작성
4. Gate → Alignment Gate (출력 필수 — 아래 참조)
5. PLAN → .dev/specs/{name}/PLAN.md 작성
6. DECISIONS → .dev/DECISIONS.md 기록
7. Plan Mode → EnterPlanMode() → /implement 자동 실행
Step 4 (Gate)는 절대 건너뛰지 않는다.
| Signal | LOW | HIGH |
|---|---|---|
| Request length | Short and specific | Long or ambiguous |
| Impact scope | Single file/module | Cross-cutting, multiple services |
| Risk | Low (UI, text) | High (DB, auth, breaking API) |
| Existing patterns | Clearly exist | None or unfamiliar stack |
shallow/SHALLOW.mddeep/DEEP.mdDRAFT 작성 후, PLAN 작성 전에 반드시 실행하고 결과를 출력:
Alignment Gate:
- 스코프: ✅/❌ {변경 대상 모듈/파일 요약}
- 용어: ✅/❌ {서비스 이름, 봇 이름, 개념 경계 합의 여부}
- SSOT: ✅/❌ {이 작업의 진실의 원천}
- 미확정: ✅/❌ {남은 불확실한 항목}
하나라도 ❌ → 사용자에게 질의. 모두 ✅ → PLAN 작성 진행.
PLAN — .dev/specs/{name}/PLAN.md에 작성. 반드시 /implement 사용 명시.
DECISIONS.md — 새 기능/아키텍처 결정 시 기록:
## YYYY-MM-DD: {feature-name}
- **결정**: 무엇을 결정했는가
- **이유**: 왜 이 선택을 했는가
- **대안**: 고려했으나 선택하지 않은 옵션
- **참조**: .dev/specs/{feature-name}/PLAN.md
Branch Strategy (multi-module 시):
| Change scope | Strategy |
|---|---|
| Single module | One feature branch |
| Multiple modules (dependent) | Chain by dependency |
| Multiple modules (independent) | Separate branches |
On plan approval, call /implement immediately. Do not ask "Should I implement?".