{% extends "_layout.html" %} {% set active = "pty" %} {% block title %}PTY · beaver-gateway · admin{% endblock %} {% block content %}

Live PTY sessions

Each row is a running claude subprocess, most recently used first. Open one to see what's currently rendered on its TUI and (if needed) type into it directly. Sessions idle past the agent's TTL are terminated automatically.

{% if sessions %}
{% for s in sessions %} {% endfor %}
Session ID Agent Idle Age PID Buffer
{{ s.session_id }} {{ s.agent }} {{ s.idle }} {{ s.age }} {{ s.pid or "?" }} {{ s.buffer_size }} bytes Open
{% else %} {% endif %} {% endblock %}