fluxy-bot 0.5.26 → 0.5.27

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.5.26",
3
+ "version": "0.5.27",
4
4
  "description": "Self-hosted, self-evolving AI agent with its own dashboard.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -207,6 +207,7 @@ export async function startFluxyAgentQuery(
207
207
 
208
208
  for await (const msg of claudeQuery) {
209
209
  if (abortController.signal.aborted) break;
210
+ log.info(`Agent msg: type=${msg.type} subtype=${(msg as any).subtype || '-'}`);
210
211
 
211
212
  switch (msg.type) {
212
213
  case 'assistant': {