소스 정보
- 저장소
- ForceInjection/domain-driven-design-skills
- 최근 소스 활동
- 2026년 5월 8일 03:07
- 감지된 SKILL.md 언어
- 한국어
- 스타
- 25
- 포크
- 7
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
SOC 직업 분류 기준
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/ForceInjection/domain-driven-design-skills --skill final-check-automation명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
Conduct deep academic research for philosophy, neuroscience, cognitive science, and theoretical computer science (computability, complexity, AI theory, logic). Use when user asks to: research academic topics, find scholarly papers, conduct literature reviews, analyze citations, synthesize research findings, explore philosophical arguments, investigate consciousness/cognition, study computability/decidability/Turing machines, or analyze academic debates. Triggers on: 'research papers', 'literature review', 'academic sources', 'scholarly articles', 'philosophy of mind', 'computability theory', 'neuroscience studies', 'find papers on', 'what does the research say'.
Create clear action plans with steps, success criteria, and risk awareness. Use before implementing features, making changes, starting projects, or anytime you need a roadmap to success. Triggers on "plan this", "how should we approach", "what's the strategy", "steps to complete", or when facing complex multi-step work.
Add keyboard navigation to a feature using CommandRegistryService. Use when implementing keyboard shortcuts, vim-style navigation, or hotkeys for a page or component.
| name | final-check-automation |
| description | FINAL_CHECK 워크플로우 자동화. E2E 테스트, Phase 3-5 자동 진행. |
| version | 2.0.0 |
| triggers | {"keywords":["E2E","최종 검증","Phase 5","FINAL_CHECK","배포 전","playwright"],"file_patterns":["tests/e2e/**/*","**/*.spec.ts"],"context":["배포 전 검증","E2E 테스트 실행"]} |
| capabilities | ["run_final_check","e2e_test","security_audit","version_decision"] |
| model_preference | sonnet |
| phase | [5] |
| auto_trigger | true |
| dependencies | ["test-engineer","security-auditor"] |
| token_budget | 2000 |
구현 완료 후 최종 검증 워크플로우입니다.
# 전체 FINAL_CHECK 실행
python .claude/skills/final-check-automation/scripts/run_final_check.py
# E2E만 실행
python .claude/skills/final-check-automation/scripts/run_final_check.py --e2e-only
# 보안 스캔만 실행
python .claude/skills/final-check-automation/scripts/run_final_check.py --security-only
Phase 2 완료
↓
FINAL_CHECK 시작
↓
┌──────────────────────────────────────┐
│ Step 1: E2E 테스트 │
│ npx playwright test │
│ 실패 시 → 자동 수정 (최대 3회) │
└──────────────────────────────────────┘
↓ (100% 통과)
┌──────────────────────────────────────┐
│ Step 2: Phase 3 (버전 결정) │
│ Conventional Commits 분석 │
│ MAJOR/MINOR/PATCH 결정 │
└──────────────────────────────────────┘
↓
┌──────────────────────────────────────┐
│ Step 3: Phase 4 (PR 생성) │
│ gh pr create │
│ validate-phase-4.ps1 │
└──────────────────────────────────────┘
↓
┌──────────────────────────────────────┐
│ Step 4: Phase 5 (보안 검증) │
│ Security scan │
│ Performance check │
│ validate-phase-5.ps1 │
└──────────────────────────────────────┘
↓
┌──────────────────────────────────────┐
│ Step 5: Phase 6 (배포) │
│ ⚠️ 사용자 확인 필수 │
└──────────────────────────────────────┘
# 전체 E2E 테스트
npx playwright test
# UI 모드 (디버깅)
npx playwright test --ui
# 단일 파일
npx playwright test tests/e2e/flow.spec.ts
# 스크린샷 저장
npx playwright test --screenshot=on
| 시도 | 동작 |
|---|---|
| 1회 실패 | 스크린샷/로그 분석 → 자동 수정 |
| 2회 실패 | selector 재검증 → 수정 |
| 3회 실패 | ⏸️ /issue-failed → 수동 개입 |
# 서버 자동 관리
python .claude/skills/webapp-testing/scripts/with_server.py \
--server "npm run dev" --port 3000 \
-- npx playwright test
# 커밋 분석
git log --oneline <base>..HEAD
feat!: BREAKING CHANGE → MAJOR
feat: 새 기능 → MINOR
fix: 버그 수정 → PATCH
# 현재 버전 확인
git describe --tags --abbrev=0
# 새 버전 태그
git tag -a v1.2.3 -m "Release v1.2.3"
gh pr create \
--title "feat(scope): Description" \
--body "## Summary
- Change 1
- Change 2
## Test Plan
- [ ] E2E passed
- [ ] Security scan passed
🤖 Generated with Claude Code"
.\scripts\validate-phase-4.ps1
# Python 의존성 취약점
pip-audit
# npm 의존성 취약점
npm audit
# 시크릿 스캔
trufflehog git file://. --only-verified
# Lighthouse (웹)
npx lighthouse http://localhost:3000 --output=json
# pytest 성능 (Python)
pytest --benchmark-only
.\scripts\validate-phase-5.ps1
⚠️ 사용자 확인 필수
| 조건 | 중지 |
|---|---|
| MAJOR 버전 업그레이드 | ⏸️ |
| Critical 보안 취약점 | ⏸️ |
| 배포 단계 | ⏸️ |
| 3회 연속 실패 | ⏸️ |
| 단계 | 에이전트 |
|---|---|
| E2E 테스트 | playwright-engineer |
| 보안 스캔 | security-auditor |
| 코드 리뷰 | code-reviewer |
| 성능 체크 | performance-engineer |
# Phase 5 병렬 검증
Task(subagent_type="playwright-engineer", prompt="E2E 최종 검증")
Task(subagent_type="security-auditor", prompt="보안 점검")
Task(subagent_type="performance-engineer", prompt="성능 테스트")
| 도구 | 용도 |
|---|---|
scripts/run_final_check.py | 전체 자동화 |
webapp-testing Skill | E2E 테스트 |
validate-phase-*.ps1 | Phase 검증 |
/final-check | 기존 Command (deprecated) |
관련: CLAUDE.md 섹션 4 Phase Pipeline