()
| 41 | |
| 42 | /** Play the terminal bell so users get an audible notification on admission. */ |
| 43 | const playAdmissionSound = () => { |
| 44 | try { |
| 45 | process.stdout.write('\x07') |
| 46 | } catch { |
| 47 | // Silent fallback — some terminals/pipes disallow writing to stdout. |
| 48 | } |
| 49 | } |
| 50 | |
| 51 | const sessionEndpoint = (): string => { |
| 52 | const base = ( |