来源信息
- 仓库
- stillwater-sc/mpadao-template
- 最近来源活动
- 2026年3月8日 01:59
- 检测到的 SKILL.md 语言
- 英语
- 星标
- 1
- 分支
- 2
安装方式
默认使用会先检查来源的 Prompt;你也可以切换为直接命令,或下载本地副本。
检查来源文件
决定是否安装前,请先阅读 SKILL.md,以及 SkillsMP 当前展示的配套文件。
正在显示 SKILL.md
SKILL.md
来源说明 · 只读预览- name
- check-ci
- description
- Check CI status for current branch, a PR, or recent runs
- argument-hint
- [PR number, branch name, or empty for recent runs]
- disable-model-invocation
- true
- allowed-tools
- Bash
Check CI status for the MPADAO project:
1. If $ARGUMENTS is a number, check PR: gh pr checks $ARGUMENTS
2. If $ARGUMENTS is a branch name: gh run list --branch $ARGUMENTS --limit 5
3. If no arguments: gh run list --limit 5
For any failed runs:
4. Get the run ID and fetch the log: gh run view <id> --log-failed | tail -100
5. Analyze the failure and identify root cause
6. Summarize: what passed, what failed, the failure reason, and suggested fix
在 GitHub 查看