# Agent CI

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

- Skill: `edmundmiller/agent-ci` (Agent Skill)
- Install (CLI): `npx skillmds@latest add edmundmiller/agent-ci`
- Raw SKILL.md: https://api.skillmd.com/api/skills/edmundmiller/agent-ci/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: AI & ML
- License: MIT
- Author: edmundmiller (https://skillmd.com/u/edmundmiller)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/edmundmiller/agent-ci

---


# 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

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

## Retry

When a step fails, the run pauses automatically. Fix the issue, then retry:

```bash
npx @redwoodjs/agent-ci retry --name <runner-name>
```

To re-run from an earlier step:

```bash
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.

