(input)
| 557 | args, |
| 558 | localOnly: listen === 'stdio://' || listen.startsWith('unix://') || listen.startsWith('ws://127.0.0.1') || listen.startsWith('ws://localhost'), |
| 559 | warning: listen.startsWith('ws://') && !options.wsAuth |
| 560 | ? 'WebSocket app-server probes should use a local listener or explicit auth.' |
| 561 | : null, |
| 562 | improvesOnScraping: 'App-server emits structured protocol events instead of requiring terminal scraping.', |
| 563 | }; |
| 564 | } |
| 565 | |
| 566 | function parseAppServerMessages(input) { |
| 567 | if (Array.isArray(input)) return input; |
| 568 | return String(input || '') |
no outgoing calls
no test coverage detected