cloud-functions
Warn
Audited by Runlayer on Mar 6, 2026
Risk Level: MEDIUM
Scan Summary
Flagged Files (1)
cloud-functions/SKILL.mdMEDIUM
80.6%
Tool passed security scan
Risky tool definition detected
```javascript // Server res.setHeader('Content-Type', 'text/event-stream'); res.write(`data: ${JSON.stringify({ content: 'Hello' })} `); // Client const es = new EventSource('https://your-domain/stream'); es.onmessage = (e) => console.log(JSON.parse(e.data)); ``` **WebSocket:** Enable via `protocolType: "WS"` in `createFunction`.
Audit Metadata