# tmux sessions Projects at AI Tinkerers

> Canonical HTML: https://aitinkerers.org/technologies/tmux-sessions
> Markdown URL: https://aitinkerers.org/technologies/tmux-sessions.md
> Technology record last updated: 2026-03-24T10:56:15Z
> Generated: 2026-09-22T09:47:38Z

A tmux session is a persistent workspace that keeps your terminal processes running in the background even after you disconnect.

Tmux sessions decouple your terminal applications from the physical window (the client). When you run a command like 'tmux new -s dev' on a remote server, that session lives in the tmux server process. You can detach using 'Ctrl+b d' to close your laptop, then reattach later with 'tmux attach -t dev' to find your compilers, editors, and logs exactly where you left them. This persistence is vital for long running tasks (like database migrations or large builds) and protects your work against sudden SSH connection drops. Within a single session, you can manage multiple windows and panes to organize complex workflows without opening dozens of separate terminal tabs.

- Official technology site: https://github.com/tmux/tmux/wiki/Getting-Started
- Public AI Tinkerers demos and talks: 1
- Result page: 1 of 1

## Recent Public Talks and Demos

### [Backpressure helping Claude code to learn from mistakes](https://cologne.aitinkerers.org/talks/rsvp_X_VoB3MUovI)

keel is a pure Rust CLI tool that builds a fast, incrementally-updated structural graph of your codebase and enforces architectural contracts at generation time — not at review time, not at build time. When an LLM coding agent modifies your code, keel immediately validates that the change doesn't break callers, violate type contracts, or introduce structural drift. Think of it as a structural linter purpose-built for the age of AI-generated code.

- Event context: AI Tinkerers Cologne 4: Live Technical Demos — 2026-04-16 — Cologne
- Public talk page: https://cologne.aitinkerers.org/talks/rsvp_X_VoB3MUovI

## Related Technologies

- [Claude Code](https://aitinkerers.org/technologies/claude-code) ([Markdown](https://aitinkerers.org/technologies/claude-code.md)) — 215 public demos
- [Rust](https://aitinkerers.org/technologies/rust) ([Markdown](https://aitinkerers.org/technologies/rust.md)) — 56 public demos
- [Structural graph](https://aitinkerers.org/technologies/structural-graph) ([Markdown](https://aitinkerers.org/technologies/structural-graph.md)) — 1 public demo
- [Tmux](https://aitinkerers.org/technologies/tmux) ([Markdown](https://aitinkerers.org/technologies/tmux.md)) — 6 public demos
