fluxy-bot 0.2.43 → 0.2.44

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fluxy-bot",
3
- "version": "0.2.43",
3
+ "version": "0.2.44",
4
4
  "description": "Self-hosted AI bot — run your own AI assistant from anywhere",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -92,6 +92,11 @@ export async function startSupervisor() {
92
92
 
93
93
  // HTTP server — proxies to Vite dev servers + worker API
94
94
  const server = http.createServer((req, res) => {
95
+ // Log every request (POST/PUT/DELETE only to reduce noise)
96
+ if (req.method !== 'GET') {
97
+ console.log(`[supervisor] ★ ${req.method} ${req.url} | content-type: ${req.headers['content-type']} | content-length: ${req.headers['content-length']}`);
98
+ }
99
+
95
100
  // Fluxy widget — served directly (not part of Vite build)
96
101
  if (req.url === '/fluxy/widget.js') {
97
102
  console.log('[supervisor] Serving /fluxy/widget.js directly');