一键导入
agent-ci
Run GitHub Actions CI locally with Agent CI to validate changes before pushing. Use when testing, running checks, or validating code changes.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Run GitHub Actions CI locally with Agent CI to validate changes before pushing. Use when testing, running checks, or validating code changes.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | agent-ci |
| description | Run GitHub Actions CI locally with Agent CI to validate changes before pushing. Use when testing, running checks, or validating code changes. |
| license | MIT |
| compatibility | Requires Node.js 18+ and Docker |
| metadata | {"author":"redwoodjs","version":"1.0.0"} |
Run the full CI pipeline locally before pushing. CI was green before you started — any failure is caused by your changes.
npx @redwoodjs/agent-ci run --quiet --all --pause-on-failure
Run the command raw. Do NOT pipe it to tail, head, or similar filters —
those buffer until the process exits, so progress is invisible and on failure
you see only the tail of the last step instead of which step failed. --quiet
already suppresses the animated renderer; the remaining output is the signal
you need.
If the run will exceed the Bash tool's foreground timeout, launch it with
run_in_background: true and read the output file directly (the path is
returned with the task ID). Do not wrap it in tail.
When a step fails, the run pauses automatically. Fix the issue, then retry:
npx @redwoodjs/agent-ci retry --name <runner-name>
To re-run from an earlier step:
npx @redwoodjs/agent-ci retry --name <runner-name> --from-step <N>
Repeat until all jobs pass. Do not push to trigger remote CI when agent-ci can run it locally.