Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/vellum-ai/vellum-assistant --skill e2e명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | e2e |
| description | Run end-to-end tests via the CI workflow. |
Run end-to-end tests via the CI workflow.
The user may pass $ARGUMENTS to filter to a specific test case by name (e.g., hello-world, phone-setup). If not provided, infer options from context (see below).
Experimental tests: Always include --experimental by default. The user can pass --no-experimental to exclude them.
Branch detection: Check what branch you're on via git branch --show-current. If you're on a branch other than main, automatically pass -b <branch-name> so the CI run tests against that branch. The user can override with -b <other-branch> explicitly.
Test case filter: Determine which test case to target:
phone-setup), use that as the filter.playwright/cases/phone-setup.md), automatically target that test case.Additional flags from $ARGUMENTS:
--xcode uses the agent-xcode (AXUIElement) runner-d or --detach triggers the run and exits without polling--no-experimental overrides the default and excludes experimental testscd playwright && bun run scripts/agent-ci.ts <options>
Map the resolved options:
-t <case-name>--experimental-b <branch-name>--xcode-dExamples:
/e2e (on main, no context) → bun run scripts/agent-ci.ts --experimental/e2e (on branch feat/phone, after editing phone-setup.md) → bun run scripts/agent-ci.ts --experimental -b feat/phone -t phone-setup/e2e hello-world (on main) → bun run scripts/agent-ci.ts --experimental -t hello-world/e2e --detach (on branch fix/bug) → bun run scripts/agent-ci.ts --experimental -b fix/bug -d/e2e --no-experimental → bun run scripts/agent-ci.tsBefore running, briefly state the resolved options (branch, test case, experimental) so the user can see what was inferred.
Once the command finishes (or is dispatched in detach mode), summarize: