npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

flow-agent-bridge

v0.25.0

Published

Flow agent bridge: joins a Flow workspace as a first-class AI agent and execs a coding-agent CLI (Claude Code, Codex) headlessly per conversation

Readme

flow-agent-bridge

Run an AI coding agent (Claude Code, Codex, or any "prompt in, text out" CLI) as a first-class member of a Flow workspace — real presence, DMs, @-mentions, threads, file attachments, and live "thinking…" progress while it works.

Flow WS ──> flow-agent-bridge daemon ──spawn──> claude -p --resume <session>
   ^                                                  │ stream-json
   └────── replies / reactions / uploads <────────────┘

Install & run

npx flow-agent-bridge <invite-code>   # no install; setup on first run, daemon after

Get the <invite-code> from Flow: click Invite your Agent at the bottom of the sidebar and copy the one-time npx flow-agent-bridge flow-K7P2-9QMR command it shows. The first run asks only agent name, handle, harness (claude / codex / demo), then redeems the code and joins the workspace immediately — no approval step. The code is exchanged for a permanent agent token, the config is saved to agent.json (chmod 600) next to where you ran it, and the daemon starts. The agent gets a random avatar the sponsor can change inside Flow. Subsequent runs just start the daemon.

Every prompt can be pre-answered with a flag, so the whole thing runs unattended:

npx flow-agent-bridge --invite flow-K7P2-9QMR --name RepoBot --handle repobot --harness claude

Or commit the answers: an agent.example.json next to the (future) agent.json is read by setup as the config's base — persona and settings (runtime.systemPromptExtra, allowedTools, eventScope, respondToAgents, …) are carried into the written agent.json, and the extra keys name, username, description plus runtime.kind / runtime.cwd pre-answer the prompts. With one of those in the folder, onboarding is just npx flow-agent-bridge flow-K7P2-9QMR — no questions, and the minted credentials land on top of your defaults. Flags still win over the template.

| Flag | Default | Meaning | |---|---|---| | --invite | prompted (or the positional <invite-code>) | the one-time invite code | | --name / --handle / --harness | prompted | agent name, @handle, runtime | | --server (or --host) | https://app.freeflow.im | Flow server URL | | --token | — | reuse an existing flow-agent-token-… (skips onboarding) | | --description | none | one-line agent description | | --cwd | current directory | working directory the agent runs in (its identity) |

Already have an agent? --token flow-agent-token-… reconnects as it and skips onboarding.

What you get

  • Answers in threads — @-mention the agent in a channel and it replies in a new thread on your message rather than in the channel proper. After that it answers every reply in that thread without needing another mention. DMs stay inline.
  • One CLI session per conversation — each DM or thread maps to a persistent --session-id/--resume session; separate conversations run concurrently, turns within one are serialized. Send /reset to start a conversation fresh.
  • Self-updating — the CLI runs the daemon under a small supervisor, so sending /update (DM it, or @-mention + /update in a channel) makes the bridge npm-install the latest package and restart itself, then post "back online — vX" where it was asked; /restart relaunches without updating. Crashes respawn automatically with backoff. Installs running from a source checkout restart but skip the npm update (pull + build by hand).
  • Thinking steps — tool calls stream into one status message that edits in place while the agent works, then the final reply posts clean.
  • Interruptible — press Interrupt on that status row (or react 🛑 to it from anywhere) and the turn ends: the CLI's whole process tree is stopped and the row is replaced by "⏹ Stopped by @you" plus whatever the agent had said. The session survives, so the next message picks up where it left off. /stop does the same by typing.
  • Attachments both ways — incoming images/files are downloaded locally and offered to the agent (Claude renders images natively); the agent can send files back via the bundled flow MCP server (send_message, react, upload_file, search_history).
  • cwd is the identity — point the agent at a repo checkout and "@RepoBot fix the failing test" runs the CLI in that repo.
  • Safety rails — sender gating, self/agent loop guards, --max-turns + wall-clock caps. Permissions default to full access in the cwd; set allowedTools/permissionMode to scope an agent down.

Config

agent.json (created by the wizard; edit freely, restart to apply):

{
  "serverUrl": "https://app.freeflow.im",
  "agentToken": "flow-agent-token-…",
  "runtime": {
    "kind": "claude",
    "cwd": "~/checkouts/repo-x"
  },
  "eventScope": "mentions",
  "progress": "thinking",
  "concurrency": 4
}

| Key | Default | Meaning | |---|---|---| | runtime.kind | claude | claude, codex (stub), or demo (canned reply — wiring check) | | runtime.cwd | config dir | working directory the CLI runs in (~ expands) | | runtime.allowedTools / permissionMode | unset = allow everything | set either to scope the agent down (e.g. ["Read", "Grep"]) | | runtime.idleTimeoutSec | 120 | kill a turn after this long with no output — a turn that keeps working never expires, however long it takes | | runtime.maxTurns / timeoutSec | 200 / 3600 | runaway backstops (timeoutSec is the absolute per-turn wall clock, in seconds) | | eventScope | mentions | mentions (@-mentions + DMs) or all channel traffic. Replies in threads the agent is already in are always answered, under either setting. | | agentMentionsOnly | false | with respondToAgents: an agent-authored message must <@mention> this agent to trigger a run, even in DMs — hand-offs stay explicit, stray replies can't ping-pong | | agentChainLimit | 6 | circuit breaker: after this many consecutive agent-authored messages in a channel with no human speaking, stop responding there until a human posts (0 disables) | | progress | thinking | thinking | typing | silent | | relayText | true | relay the agent's interim text into the conversation as it works (thinking mode only); it grows one message by editing rather than posting per chunk | | logFile | <config>.log next to the config | daemon log file (rotates once at 5 MB); JSON null disables |

Headless runtimes authenticate however the CLI normally does (e.g. claude setup-token or ANTHROPIC_API_KEY in the daemon's environment).

Use the flow MCP server directly (no daemon)

flow-agent-bridge mcp-init [agent.json] writes a .mcp.json in the current directory, so MCP clients (the Claude CLI, Claude Desktop) load the bundled flow server and act as the agent: read/post/search/upload via the MCP tools, pull-only — no presence or push, that's the daemon's job. Other servers in an existing .mcp.json are preserved; the file is git-ignored since it holds the agent token.

Keep it running

The daemon only dials out (HTTPS + WSS) — no open ports needed. Under systemd:

[Service]
ExecStart=/usr/bin/env flow-agent-bridge /home/me/mybot.json
Restart=always

It reconnects through server restarts on its own; run the wizard once interactively before enabling the unit.