원클릭으로
integration-testing
Test integration points early. Verify cross-service contracts, API boundaries, and data flow before declaring done.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Test integration points early. Verify cross-service contracts, API boundaries, and data flow before declaring done.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Multi-agent delegation rules, three-phase workflow (Plan/Build/Review), model selection, collaboration gates, and Ralph Loop integration.
Autonomous build driver after SDD spec approval: phase-scoped headless build sessions, driver-owned commits, cross-provider review gates, milestone pauses, and fail-closed escalation — under explicit opt-in autonomy profiles.
When and how to ask clarifying questions before implementing. Data model review gate and ambiguity resolution rules.
Quality gates, prohibited patterns, verification discipline, and self-audit rules for all code generation and review sessions.
Cross-copilot portable conventions: read before write, minimal changes, git discipline, project structure, and priority rules.
Copyright header rules for generated source files. Applies the company name from providers.toml to new files.
| name | integration-testing |
| description | Test integration points early. Verify cross-service contracts, API boundaries, and data flow before declaring done. |
Rules for verifying that cross-cutting features work before building on top of them.
Authentication is the most common source of cascading failures in multi-agent builds. Auth issues that go undetected compound as more features depend on protected routes.
After implementing auth (any strategy):
Verify the auth flow end-to-end:
Verify admin access (if applicable):
Do not build features on top of auth until the flow is verified. Building protected pages before confirming auth works leads to multi-session debugging cycles.
After implementing backend services or API routes:
After connecting frontend to backend:
When multiple agents have worked in parallel:
Modern frameworks change APIs between versions. When using any framework:
For features that are difficult to verify manually or that have failed repeatedly, create a simple test script:
# Example: auth smoke test (adapt to your stack)
echo "Testing auth flow..."
# 1. Check that the login page loads
curl -s -o /dev/null -w "%{http_code}" http://localhost:3000/login
# Expected: 200
# 2. Check that a protected route redirects
curl -s -o /dev/null -w "%{http_code}" http://localhost:3000/admin
# Expected: 302 (redirect to login)
echo "Auth smoke test complete."
Save these in scripts/ or tests/ for reuse across sessions.
When a build phase creates or modifies a demo or example application:
[]), null, or empty objects ({}) indicate
a stub that was never implemented. Stubs MUST be replaced with meaningful sample data before
commit.Common trap: demo services with stub methods (e.g., return List.of()) that compile and pass
type checks but return nothing at runtime. The type checker cannot catch this — only an actual
HTTP request reveals it.