ソース情報
- リポジトリ
- 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-integrationコマンドは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 | testing-integration |
| description | Run integration tests for component interactions |
| license | MIT |
| compatibility | opencode |
| metadata | {"audience":"developers","category":"testing"} |
Test interactions between multiple components, modules, or services.
Use this skill when:
# Run integration tests
npm run test:integration # Node.js integration tests
pytest tests/integration/ # Python integration tests
go test -tags=integration # Go integration tests
# Test specific integrations
npm run test:integration -- --grep "database"
pytest tests/integration/test_api_client.py
# Run with test containers for external services
docker-compose -f docker-compose.test.yml up --abort-on-container-exit
Integration Test Results:
──────────────────────────────
✅ API Service ↔ Database
✓ User data persists correctly
✓ Transaction rollback on failure
❌ Payment Service ↔ Banking API
✗ Authentication token refresh fails
✗ Currency conversion rate mismatch
⚠️ Email Service ↔ Queue
⚠️ Message retention period too short
Summary: 8 passed, 2 failed, 1 warning