edmundmiller

agent-ci

Run GitHub Actions CI locally with Agent CI only when explicitly requested.

edmundmiller 79 6 Updated 1mo ago
GitHub

Install

npx skillscat add edmundmiller/dotfiles/agent-ci

Install via the SkillsCat registry.

About this skill

Agent CI lets developers run the complete GitHub Actions pipeline locally, but only after an explicit command. It solves the need to test the full CI without triggering remote runs during regular development. Use it when you want a local, on‑demand verification of the entire CI workflow.

SKILL.md

Agent CI

Run the full CI pipeline locally only after an explicit user request. For ordinary testing, validation, or pre-push work, use the repository's focused checks instead.

Run

npx @redwoodjs/agent-ci run --quiet --all --pause-on-failure

Retry

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.

Categories