소스 정보
- 저장소
- tetherto/qvac
- 최근 소스 활동
- 2026년 8월 2일 06:45
- 감지된 SKILL.md 언어
- 영어
- 스타
- 577
- 포크
- 107
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/tetherto/qvac --skill ci-validate명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Plan and run local PR validation for tetherto/qvac PRs. Reuses the shared PR worktree, discovers touched packages and package.json scripts, recommends a test tier, and analyzes results. Use when testing a PR or invoking /qv-pr-test.
Plans and scaffolds e2e tests in packages/sdk/e2e for a new or changed public SDK API. Use when adding or modifying SDK functionality that is exposed to consumers. Enforces happy / sad / error coverage, deterministic model-output assertions, desktop/mobile/Electron consumer coverage, smoke-suite selection, and local validation with run:local.
Generate PR descriptions for addon packages (non-SDK inference addons, decoder, OCR). Use when creating a PR description or user asks to "prepare PR description" for an addon package.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | ci-validate |
| description | Trigger a CI workflow for a package, wait for completion, and report results |
| argument-hint | <package-short-name> |
| disable-model-invocation | true |
Trigger a CI workflow for a package, wait for it to complete, and report results.
The argument $ARGUMENTS is the package short name. See the CI Package Mapping table in .agent/knowledge/ci-validation.md for valid short names and their corresponding package directories.
The workflow name is: On PR Trigger (<short-name>) where <short-name> is the argument.
$ARGUMENTS matches one of the valid package names above. If not, show the list and stop.git push origin HEADRun: gh workflow run "On PR Trigger ($ARGUMENTS)" --repo tetherto/qvac --ref $(git branch --show-current)
If the trigger fails, show the error and stop.
Wait 5 seconds for the run to register, then find the run ID:
gh run list --repo tetherto/qvac --workflow "On PR Trigger ($ARGUMENTS)" --branch $(git branch --show-current) --limit 1 --json databaseId,status,conclusion,createdAt
Wait for the run to complete: gh run watch <run-id> --repo tetherto/qvac
After the run completes, get the result:
gh run view <run-id> --repo tetherto/qvac
gh run view <run-id> --repo tetherto/qvac --log-failedFor failure analysis, platform details, and troubleshooting: see .agent/knowledge/ci-validation.md.
Important: Only attempt to fix infra/CI failures (environment, config, workflow issues). If the failure is a code logic error (compilation error, test assertion, lint violation, type error), report the failure back to the user with the relevant logs — do not attempt to fix application code.
If running as part of an automated pipeline (not interactive):
.agent/knowledge/ci-validation.md