원클릭으로
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.