Selects which local and CI end-to-end test profiles are affected by a code change, using the repo-local profile map. Use when a change could affect E2E test behavior and the correct test profiles need to be identified and executed.
설치
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Selects which local and CI end-to-end test profiles are affected by a code change, using the repo-local profile map. Use when a change could affect E2E test behavior and the correct test profiles need to be identified and executed.
E2E Selection
Trigger
The primary skill changes behavior that could affect one or more E2E profiles
Required Surfaces
local_e2e
ci_e2e
Conditional Surfaces
local_smoke
Stop Conditions
The affected profile cannot be determined from the current mapping and needs manual classification
Workflow
Read the E2E profile map to understand which profiles cover which surfaces
Run make agent-e2e-affected CHANGED_FILES="..." to identify affected profiles
Run make e2e-test E2E_PROFILE=<profile> for each affected profile
Verify local and CI E2E expectations are explicit and match the profile map
Gotchas
Workflow-driven integration suites are not interchangeable with standard Go profile E2E; use the profile map instead of guessing.
A passing local default profile does not imply the full CI matrix is covered for a contract-changing edit.