소스 정보
- 저장소
- wojons/skills
- 최근 소스 활동
- 2026년 4월 1일 15:16
- 감지된 SKILL.md 언어
- 영어
- 스타
- 4
- 포크
- 2
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/wojons/skills --skill testing-compatibility명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Use when you need comprehensive accessibility auditing including WCAG compliance, legal requirements mapping, and user testing with disabilities
Apply systematic adversarial thinking patterns including devil's advocate, assumption busting, red teaming, and white hat security approaches
A 10-step methodology for building software with AI collaboration - from north star through automated Ralph loop execution with zero human-in-the-loop code writing
SOC 직업 분류 기준
SKILL.md 표시 중
| name | testing-compatibility |
| description | Test application compatibility across browsers, devices, and platforms |
| license | MIT |
| compatibility | opencode |
| metadata | {"audience":"developers","category":"testing"} |
Test application compatibility across browsers, devices, operating systems, and environments, coordinating with functional and visual testing.
Use this skill when:
Cross-browser testing:
Cross-platform testing:
Device and environment testing:
Coordinate with other test types:
# Cross-browser testing
npm run test:compatibility:browsers # All supported browsers
npx playwright test --browser=all # Playwright multi-browser
npx cypress run --browser chrome --browser firefox
# Device testing
npm run test:compatibility:devices # Responsive testing
npx playwright test --device="iPhone 13"
npx lighthouse https://app.example.com --screenEmulation.mobile=true
# Platform testing
npm run test:compatibility:os # OS-specific testing
# Use CI with different OS runners
# Network condition testing
npm run test:compatibility:network # Simulate network conditions
npx lighthouse --throttling.cpuSlowdownMultiplier=4
# Coordinate with functional tests
npm run test:compatibility -- --grep "functional"
npm run test:e2e:compatibility # E2E across platforms
Compatibility Test Results:
──────────────────────────────
Test Matrix: 15 combinations (browsers × devices × OS)
Browser Compatibility:
✅ Chrome 120+: All functional tests pass
✅ Firefox 115+: All functional tests pass
✅ Safari 16+: 42/45 tests pass
⚠️ 3 tests fail due to WebRTC differences
✅ Edge 119+: All functional tests pass
Device Compatibility:
✅ Desktop (1920×1080): All tests pass
✅ Tablet (iPad): 38/40 tests pass
⚠️ 2 touch gesture tests need adjustment
✅ Mobile (iPhone/Android): 35/40 tests pass
❌ 5 tests fail due to viewport issues
Operating Systems:
✅ Windows 10/11: All tests pass
✅ macOS 12+: All tests pass
✅ Linux (Ubuntu): All tests pass
✅ iOS 15+: 40/45 tests pass
✅ Android 11+: 42/45 tests pass
Network Conditions:
✅ WiFi: All tests pass
✅ 4G: 45/50 tests pass
✅ 3G: 30/50 tests pass (expected performance degradation)
Integration with Other Tests:
- Functional tests: Compatible across 85% of matrix
- Visual tests: 95% consistency across browsers
- Accessibility tests: WCAG compliance maintained
- Performance tests: Metrics vary by platform (documented)
Recommendation:
- Fix Safari WebRTC and mobile viewport issues
- Add polyfills for older browser support if needed
- Document known compatibility limitations