원클릭으로
ci-validate
Trigger a CI workflow for a package, wait for completion, and report results
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Trigger a CI workflow for a package, wait for completion, and report results
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Team-wide PR dashboard for the SDK pod. Shows open PRs touching SDK pod paths or authored by SDK roster members, sorted oldest-first, grouped by author tier (SDK Core / Platform / External) into needs-your-re-review / stale / needs-review / fully-approved, with merge-conflict and CI-red warnings. Use when checking team SDK pod PR status or invoking /qv-sdk-pr-status.
Generate NOTICE files with third-party attributions for all packages in the monorepo.
Generate changelogs for SDK pod packages using tag-based GitFlow. Use when preparing a release, generating changelog, or creating CHANGELOG_LLM.md.
Inspect GitHub Actions self-hosted runner queues when a developer provides a run URL, job URL, runner label, or reports a blocked CI job, or invokes /qv-devops-runner-queue.
Benchmark an optimization (PR or branch) on a Device Farm device via the vlm-benchmark framework — baseline vs optimized, quality-regression-aware.
Generate PR descriptions for SDK pod packages following template and format rules. Use when creating an SDK pod PR or invoking /qv-sdk-pr-create.
| 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