@firefunc-agent/runner 0.5.0 → 0.5.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,12 +1,12 @@
1
1
  # firefunc-runner
2
2
 
3
- Run **your own** Claude Code on bugs FireFunc routes to you and open PRs automatically.
3
+ Run **your own** coding agent — Claude Code, OpenAI Codex, Gemini CLI or Cursor CLI — on work FireFunc routes to you, and open PRs automatically.
4
4
 
5
5
  This is the **self-hosted runner** for FireFunc's _Claude Code Channel_ engine. It's a tiny always-on daemon on your machine (laptop, dev box, CI host) that:
6
6
 
7
7
  1. **long-polls FireFunc** (outbound only — works behind NAT/VPN, no inbound ports),
8
8
  2. **claims** a bug FireFunc dispatched to your project,
9
- 3. runs **your local Claude Code** (`claude -p`) in an isolated git worktree off a clean base branch,
9
+ 3. runs **your local coding agent** (`claude -p`, `codex exec`, `gemini`, or `cursor-agent` — whichever the work is routed to) in an isolated git worktree off a clean base branch,
10
10
  4. opens a **draft PR** and reports the result back.
11
11
 
12
12
  **Why this and not the cloud Routine?** No ~15/day cap (it uses _your_ Claude subscription's limits), your **code never leaves your machine**, and it has your full local context — running app, AWS creds, `gh`/`git` auth, MCP servers, `CLAUDE.md`.
package/dist/cli.js CHANGED
@@ -2,7 +2,8 @@
2
2
  import { loadConfig, saveConfig, configPath } from './config.js';
3
3
  import { startDaemon } from './daemon.js';
4
4
  import { runBrief } from './brief.js';
5
- const HELP = `firefunc-runner — run YOUR local Claude Code on bugs FireFunc routes to you.
5
+ const HELP = `firefunc-runner — run YOUR local coding agent on work FireFunc routes to you.
6
+ (Claude Code, OpenAI Codex, Gemini CLI or Cursor CLI — whichever you have installed.)
6
7
 
7
8
  Usage:
8
9
  firefunc-runner connect <token> [options] Save your runner token + settings
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@firefunc-agent/runner",
3
- "version": "0.5.0",
3
+ "version": "0.5.1",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "description": "FireFunc self-hosted runner — an always-on daemon that runs YOUR local coding agent (Claude Code, Codex, Gemini CLI, Cursor CLI) on work FireFunc routes to it, opens pull requests, and reports back. Your machine, your subscriptions.",