You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs(site): say what flue is, in the words people search for
The hero led with "The desk stops mattering," which is a mood rather
than a description: a reader who has never heard of flue could not tell
from it what the thing does or who it is for. The headline now names the
job directly, and names the two agents most people arrive here running.
- Hero headline and subline, the README tagline and intro, the meta
title and description, and the llms.txt lede all lead with continuing
a Claude Code or Codex session on another screen.
- Two section headings that were being clever stop being clever:
"Finding one of them is the other half" is now "One keystroke to any
session on any machine," and "Install it, then close the tab on
purpose" is now "Install flue on the machine that runs the work."
- The hero no longer carries the builds-and-SSH claim, so the sessions
section says it instead: detaching keeps the agent working, the build
running and the SSH session up. Being specific in the headline should
not narrow what the product is.
- llms.txt still said the relay had not been through its end-to-end
gate. It has, and the README has said so since v0.5.1.
- FOLLOW-UPS.md speculated about a multi-tenant relay on flue.sh, which
contradicts the no-hosted-service claim everywhere else. Rewritten
around the only deployment that exists: one you own.
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: site/public/llms.txt
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# flue
2
2
3
-
> flue keeps your terminal sessions alive on the machine that owns them and hands them back on any device you have. A small Go daemon owns the shells and their scrollback, and a web app draws them. Closing the tab does not kill a session. It only detaches it, so a build, an agent run or an SSH session keeps going, and reattaching replays what was missed. One keystroke opens every session on every machine at once.
3
+
> flue lets you continue your Claude Code and Codex sessions on any screen: start on your laptop, check in from your phone or iPad, pick up again at your desk. A small Go daemon owns the shells and their scrollback, and a web app draws them, so the shell stays on the machine and flue only moves the view. Closing the tab does not kill a session. It only detaches it, so a build, an agent run or an SSH session keeps going, and reattaching replays what was missed. One keystroke opens every session on every machine at once.
4
4
5
5
flue is open source (MIT), pre-1.0, and free. It installs as one static Go
6
6
binary on macOS, Linux and WSL, with no Node, Python or other toolchain.
@@ -13,10 +13,10 @@ the daemon's static key pinned when a browser pairs, so the Worker forwards
13
13
ciphertext it holds no key for. flue.sh serves docs and downloads and is never
14
14
part of the data path.
15
15
16
-
Status: the local terminal, the login service, the fleet-wide sessions list and
17
-
the end-to-end pairing all work. The Cloudflare relay is built and deployable
18
-
but has not been through its manual end-to-end gate against a real account.
19
-
It is ready to try rather than ready to rely on.
16
+
Status: released and in daily use. The local terminal, the login service, the
17
+
fleet-wide sessions list, pairing and the Cloudflare relay all work, and the
18
+
relay has been through its manual end-to-end gate against a real account. It is
19
+
0.x, so commands, flags and the config file can still change between releases.
Copy file name to clipboardExpand all lines: site/src/routes/__root.tsx
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -4,9 +4,9 @@ import type { ReactNode } from 'react'
4
4
import{SITE_URL}from'@/lib/site'
5
5
importappCssfrom'@/styles.css?url'
6
6
7
-
constTITLE='flue: every terminal session you have running, one tab away'
7
+
constTITLE='flue: continue your Claude Code and Codex sessions on any screen'
8
8
constDESCRIPTION=
9
-
'Builds, agents and SSH sessions keep running on the machine that owns them. Every one of them is one tab away, on any screen you have. One static Go binary, no hosted service.'
9
+
'Start on your laptop, check in from your phone or iPad, pick up again at your desk. A small Go daemon holds your terminals, so closing the tab detaches a session instead of killing it. One static Go binary, no hosted service.'
0 commit comments