The process that executes one FerrFleet agent run. It is what
ghcr.io/ferrlabs/ferrfleet/runner contains, and it is here in the open because
you are being asked to run it next to your repository and your Claude
credential. "Trust the binary" is not an answer to that.
FerrFleet itself, the control plane that schedules runs and stores their transcripts, is a hosted service and is not in this repository.
Given a run id and a token, it asks the API for the run's configuration, clones
the repository if the run has one, starts the claude CLI with the composed
prompt, streams the events back as they happen, and reports the result.
Everything it needs arrives at startup:
| Variable | Required | What |
|---|---|---|
FERRFLEET_API_URL |
yes | Base URL of the API. Routes sit at its root. |
FERRFLEET_RUN_ID |
yes | The run to execute. |
FERRFLEET_RUN_TOKEN |
yes | Scoped to that one run, and expiring with it. |
CLAUDE_CODE_OAUTH_TOKEN |
yes | Yours. Without it the agent starts and does nothing. |
CLAUDE_ENV_FILE |
no | A credentials file to read instead, as our own pods use. |
It holds no credential of its own. The GitHub token it pushes with is minted per run by the API, scoped to that run's repository, and fetched at the moment it is needed; the private key that mints it never leaves the API.
The action in this repository does both halves: it creates the run against the API and executes it here.
name: review
on: pull_request
jobs:
ferrfleet:
runs-on: ubuntu-latest
steps:
- uses: FerrLabs/FerrFleet-Runner@v1
with:
agent: pr-agent
token: ${{ secrets.FERRFLEET_ORG_TOKEN }}
claude-token: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }}token must be a FerrFleet organization token carrying the agents:run
scope. A personal token resolves to a human and is stripped of its org before it
reaches an org-scoped route, so it cannot create a run at all.
The agent must be set to an external runner in FerrFleet. If it is not, the API
answers 409 and the action says so rather than failing obscurely: FerrFleet
runs that agent itself, and a second run started here would be a duplicate.
Outputs are run-id and url, set as soon as the run exists, so a later step
can comment the link on the pull request even when the run itself failed.
The run failing: a non-zero exit from the agent, a refusal from the API, a run that came back queued rather than started.
Not the agent's findings. A finished run reports status and exit_code and
nothing structured about what it concluded, so a step that failed on "the
reviewer found something" would have to pattern-match the transcript. That is
the kind of check that passes for months and then quietly stops matching. If you
want FerrFleet to gate a merge today, read run-id in a later step and decide
there.
docker run --rm \
-e FERRFLEET_API_URL -e FERRFLEET_RUN_ID -e FERRFLEET_RUN_TOKEN \
-e CLAUDE_CODE_OAUTH_TOKEN \
ghcr.io/ferrlabs/ferrfleet/runner:1Creating the run first is one HTTP call, covered in [the external runners guide][guide]. Nothing about this is GitHub-specific: any CI that can make a request and run a container works the same way.
A re-run of a workflow, a retried job, or two workflows watching the same event can each produce a runner for the same run id. The runner claims the run before doing anything, and the loser exits having touched nothing. The decision is made by the API in one conditional statement, because runners cannot see each other.
You do not have to design around it and you cannot switch it off.
shared/ is the contract: the shapes the API and the runner agree on
(RunConfig, ExecutorEvent, Checkout, RunResult). It is public for the
same reason the runner is, and the API consumes this crate rather than a copy.
runner/ is the process itself. It targets Linux: workspace.rs uses
std::os::unix to lock down the GIT_ASKPASS helper's permissions, so it does
not build on Windows.
Images are signed with cosign and carry an SBOM. Pin by digest rather than by tag, and verify before you run:
cosign verify ghcr.io/ferrlabs/ferrfleet/runner:1 \
--certificate-identity-regexp '^https://github.com/FerrLabs/FerrFleet-Runner/' \
--certificate-oidc-issuer https://token.actions.githubusercontent.comcargo build --release --bin ferrfleet-runnerNo private registry and no credentials: every dependency is public. That is deliberate, and worth keeping true.
Tag a full version and push it. The workflow builds, pushes, signs with cosign
and attaches an SBOM, tagging the image 1.2.3, 1 and latest.
git tag -a v1.2.3 -m "..." && git push origin v1.2.3Then repoint the moving major tag, which is what
uses: FerrLabs/FerrFleet-Runner@v1 resolves against:
git tag -f v1 && git push -f origin v1That one deliberately does not trigger a release: the workflow matches
v*.*.* only, so moving it rebuilds nothing.
Apache-2.0. See LICENSE.