the universal sandbox runtime for agents and humans. pocketenv.io
sandbox openclaw agent claude-code vercel-sandbox deno-sandbox cloudflare-sandbox atproto sprites daytona
7
fork

Configure Feed

Select the types of activity you want to include in your feed.

Display SSH connecting message in terminal

+4
+4
apps/web/src/components/terminal/Terminal.tsx
··· 165 165 const cols = instance.cols; 166 166 const rows = instance.rows; 167 167 168 + instance.write(`\x1b[35mConnecting to SSH session...\x1b[0m\r\n`); 169 + 168 170 const response = await fetch(`${API_URL}/ssh/connect`, { 169 171 method: "POST", 170 172 headers: { ··· 176 178 }, 177 179 body: JSON.stringify({ cols, rows }), 178 180 }); 181 + 182 + instance.write("\r\x1b[K"); 179 183 180 184 if (!response.ok) { 181 185 const err = await response.json();