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

@flout/cli

v0.3.2

Published

Manage persistent AI agent sessions with tmux

Readme

flout

Manage persistent AI agent sessions with tmux. Start, stop, and connect to agent sessions that stay running in the background — locally, on a remote machine, or in container sandboxes.

Currently supports Claude Code. Extensible to other agents.

Install

npm install -g @flout/cli

Requires: Node.js 18+, tmux, and a container engine (Colima recommended, or Podman/Docker).

Quick start

# Check dependencies and authenticate
flout setup

# Trust a project directory (one-time, interactive)
flout trust ~/my-project

# Start a remote-control session (always-on, accessible from anywhere)
flout remote myagent --path ~/my-project

# Connect from any device via Claude Code's /remote command

Commands

Sessions

| Command | Description | |---------|-------------| | flout setup | Check dependencies, login, create long-lived token | | flout start [name] [--path <dir>] | Start a local interactive session in tmux (use sudo for sandbox mode) | | flout remote [name] [--path <dir>] | Start a remote-control session with auto-reconnect | | flout stop <name\|id> | Stop a session | | flout join <name\|id> | Attach to a running tmux session | | flout list | List active sessions | | flout status | Show login and session status | | flout restart <name\|id> [--path <dir>] | Restart a remote session | | flout trust <dir> | Trust a project directory (interactive) |

name defaults to the basename of the current directory. --path defaults to the current directory.

Sandboxes

| Command | Description | |---------|-------------| | flout sandbox start [--name <n>] [--engine docker\|podman\|containerd] | Build image if needed, start a container | | flout sandbox stop [<name\|id>] | Stop a container | | flout sandbox shell [<name\|id>] | Exec into a running container | | flout sandbox claude [<name\|id>] | Exec into a container running Claude | | flout sandbox status | List flout containers |

--name defaults to the basename of the current directory. --engine selects the container engine (auto-detected if omitted). Extra engine flags can be passed after -- (e.g. flout sandbox start -- --gpus all).

Supported engines: Docker, Podman, containerd (via nerdctl/Colima). On macOS, Colima is started automatically if needed. On Linux, native engines are preferred.

Note: flout docker still works but is deprecated. Use flout sandbox instead.

Multiple sessions

You can run multiple sessions in the same directory. Each session gets a unique timestamped ID like flout-0410-152301-myproject.

flout start myproject              # → flout-0410-152301-myproject
flout start myproject              # → flout-0410-153045-myproject (second session)
flout list                         # shows both with directories
flout join myproject               # joins if only one; lists matches if ambiguous
flout stop flout-0410-152301-myproject  # stop a specific session by full ID

The same applies to Docker containers.

How it works

flout wraps tmux and your agent's CLI. flout remote starts a tmux session running the agent in remote-control mode with a respawn loop — if the connection drops, it restarts automatically. flout join attaches your terminal to see what the agent is doing.

flout sandbox manages container lifecycle — it builds an image with the agent and flout pre-installed, mounts your project directory, and pre-trusts it so sessions can start immediately. It auto-detects the fastest available container engine (Docker, Podman, or containerd).

Packages

| Package | Description | |---------|-------------| | @flout/cli | Main CLI — session management, setup, types | | @flout/claude | Claude Code agent provider | | @flout/sandbox | Multi-engine container sandbox (Docker, Podman, nerdctl, Colima) | | @flout/docker | Docker container runtime (deprecated — use @flout/sandbox) |

Development

git clone <repo> && cd flout
npm install
npm run build
npm test

See AGENTS.md for architecture and contribution guidelines.

License

GPL-2.0