ワンクリックで
fix-ci
Check GitHub Actions status, diagnose failures from logs, fix, push, and loop until CI passes.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Check GitHub Actions status, diagnose failures from logs, fix, push, and loop until CI passes.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Validates animation durations, enforces typography scale, checks component accessibility, and prevents layout anti-patterns in Tailwind CSS projects. Use when building UI components, reviewing CSS utilities, styling React views, or enforcing design consistency.
Read PR comments on the current branch and address each one through plan mode.
Explore the project and list setup steps needed to run it locally — dependencies, config, services, and manual actions.
Commit, push, and create a PR with summary and test checklist.
Create .superset/config.json with setup and teardown scripts for Superset workspaces.
查看当前分支与主分支的差异,用简体中文给出一份面向非技术团队成员的高层次 PR 摘要。
| name | fix-ci |
| description | Check GitHub Actions status, diagnose failures from logs, fix, push, and loop until CI passes. |
When invoked, check the latest GitHub Actions run for the current branch. If any jobs failed, diagnose, fix, push, then watch CI and repeat until green.
git rev-parse --abbrev-ref HEAD to get the current branch.gh repo view --json nameWithOwner -q .nameWithOwner to confirm the repo.gh run list --branch <branch> --limit 5 --json databaseId,status,conclusion,name,event,headBranch to get recent runs for this branch.conclusion of failure (focus on the most recent failed run).gh run view <run-id> --json jobs to list all jobs in the failed run.gh run view <run-id> --log-failed to fetch the failure logs.AskUserQuestion to clarify.gh run list --branch <branch> --limit 1 --json databaseId,status to find the new run triggered by the push.in_progress or queued, run gh run watch <run-id> --exit-status to block until it completes.$ARGUMENTS is provided (e.g., a specific run ID or job name), use it to narrow the scope.