From f4494139ad229f3f03357b5d1aca1c508dfc4221 Mon Sep 17 00:00:00 2001 From: fschrhunt <264049687+fschrhunt@users.noreply.github.com> Date: Tue, 28 Apr 2026 16:19:50 -0500 Subject: [PATCH] docs(runner): correct pnpm runner syntax --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index fbab9b2..f99c153 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ pnpm dev In another terminal, run a local worker lane: ```bash -pnpm runner -- --agent codex +pnpm runner --agent codex ``` By default the runner previews the next queued job without claiming it. Add `--execute` to claim the job and start the local agent. @@ -60,8 +60,8 @@ pnpm setup:url HuntDynamics org ```bash pnpm dev # start the webhook server -pnpm runner -- --agent codex # preview the next Codex job -pnpm runner -- --agent codex --execute --once +pnpm runner --agent codex # preview the next Codex job +pnpm runner --agent codex --execute --once # claim one job and run Codex locally pnpm setup:url fschrhunt user # generate a GitHub App manifest URL pnpm test # run tests