ソース情報
- リポジトリ
- 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 test-planningコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?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 | test-planning |
| description | Create comprehensive test plans considering all test types and dependencies |
| license | MIT |
| compatibility | opencode |
| metadata | {"audience":"developers","category":"testing"} |
Create comprehensive test plans considering all test types, dependencies, risks, and project constraints to ensure effective quality assurance.
Use this skill when:
Test strategy development:
Resource planning:
Risk-based planning:
Integration planning:
# Generate test plans
npm run test:plan:generate # Generate comprehensive test plan
npm run test:plan:strategy # Create test strategy document
npm run test:plan:estimate # Estimate testing effort
# Feature-specific planning
npm run test:plan:feature -- "user-authentication"
npm run test:plan:release -- "v2.1.0"
# Context-aware planning
npm run test:plan -- --context mvp --type saas
npm run test:plan -- --context production --type enterprise
# Integration with project management
npm run test:plan:export -- --format jira # Jira import format
npm run test:plan:export -- --format csv # CSV for spreadsheets
npm run test:plan:export -- --format markdown # Markdown documentation
# Risk-based planning
npm run test:plan:risks # Risk assessment and planning
npm run test:plan:coverage # Test coverage planning
Comprehensive Test Plan
──────────────────────────────
Project: E-Commerce Platform v2.1
Stage: Beta → Production Release
Planning Date: 2024-03-15
Test Objectives:
- Validate new checkout flow functionality
- Ensure backward compatibility with existing features
- Meet performance SLAs for peak traffic
- Maintain security compliance (PCI-DSS)
- Provide confidence for production release
Test Scope:
Included:
- New checkout API and UI
- Payment gateway integration updates
- Order processing enhancements
- User notification system
Excluded:
- Legacy admin panel (separate release)
- Mobile app updates (different team)
- Third-party analytics integration
Test Approach:
Test Pyramid Implementation:
- Unit Tests: 80% coverage on new code (estimated: 250 tests)
- Integration Tests: API and database integration (estimated: 75 tests)
- E2E Tests: Critical user journeys (estimated: 25 scenarios)
Specialized Testing:
- Performance: Load testing with 2000 concurrent users
- Security: PCI-DSS compliance validation
- Accessibility: WCAG 2.1 AA compliance
- Compatibility: Chrome, Firefox, Safari, mobile browsers
Test Schedule:
Week 1-2: Development & Unit Testing
Week 3: Integration Testing & API Validation
Week 4: E2E Testing & User Acceptance
Week 5: Performance & Security Testing
Week 6: Final Validation & Production Readiness
Resource Allocation:
- Developers: 3 (unit & integration tests)
- QA Engineers: 2 (E2E & exploratory testing)
- Performance Engineer: 1 (load testing)
- Security Specialist: 1 (compliance validation)
- Environments: Dev, CI, Staging, Performance Lab
Test Environment Requirements:
- Staging environment matching production configuration
- Test database with production-like data volume
- Payment gateway sandbox accounts
- Load testing infrastructure
- Security scanning tools
Quality Gates:
1. All unit tests pass (CI gate)
2. Integration tests 100% pass (CI gate)
3. E2E critical paths 100% pass (staging gate)
4. Performance SLAs met (performance gate)
5. No critical security vulnerabilities (security gate)
6. User acceptance sign-off (UAT gate)
Risk Assessment:
High Risk:
- Payment processing integration (mitigation: extended sandbox testing)
- Database migration (mitigation: rollback testing)
Medium Risk:
- Checkout UI changes (mitigation: extensive E2E testing)
- Performance under load (mitigation: progressive load testing)
Low Risk:
- Notification system updates (mitigation: smoke testing)
Dependencies:
- Development completion by Week 2
- Staging environment availability
- Test data preparation
- Third-party service sandbox access
- Performance testing window (off-peak hours)
Success Metrics:
- Defect detection rate > 90%
- Test automation coverage > 70%
- Mean time to defect resolution < 8 hours
- Zero critical defects in production first week
Contingency Plans:
- Schedule buffer: 1 week for unexpected issues
- Rollback procedure documented and tested
- Feature flags for gradual rollout
- Monitoring plan for production release
Deliverables:
- Test strategy document
- Test cases and automation scripts
- Test execution reports
- Defect tracking and resolution
- Release readiness assessment
- Lessons learned document