用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/tetherto/qvac --skill ci-validate命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 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