ワンクリックで
integration-test
Write end-to-end integration tests that exercise full request-to-response flows (Priya Sharma's workflow)
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Write end-to-end integration tests that exercise full request-to-response flows (Priya Sharma's workflow)
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Add a new implementation of the primary protocol/interface (Alex Rivera's workflow)
Add a new API endpoint following all project standards
Plan and implement a complete feature end-to-end across all layers
Full codebase audit — dead code, layer violations, concurrency, observability, code quality
Set up or update GitHub Actions CI/CD pipeline (Marcus Chen's workflow)
Remove dead code, unused imports, stale files, and fix code quality issues found by /audit
| name | integration-test |
| description | Write end-to-end integration tests that exercise full request-to-response flows (Priya Sharma's workflow) |
| disable-model-invocation | true |
Write integration tests for: $ARGUMENTS
Integration tests differ from unit tests — they exercise the FULL path from HTTP request through auth, service, external resource, and back.
Map complete user workflows:
Create a fixture that uses the REAL DI chain — no dependency overrides:
// Full integration fixture — uses REAL DI chain, no overrides
fixture integration_client() {
// Initialize mock implementation, service, and app
// NO DI overrides — tests the real dependency chain
client = new TestHTTPClient(app, propagate_errors: false)
yield client
}
Test complete user workflows that exercise multiple endpoints in sequence. Verify state persists between requests and final state is consistent.
Test that errors leave the system in a consistent state. Verify rollback behavior on partial failures.
Place integration tests in the integration test file (see test file mapping in project config).
Run the test command (see project config) — full suite still passes.