@misterhuydo/sentinel 1.4.4 → 1.4.5
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/.cairn/session.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"message": "Auto-checkpoint at 2026-03-
|
|
3
|
-
"checkpoint_at": "2026-03-
|
|
2
|
+
"message": "Auto-checkpoint at 2026-03-24T15:01:17.543Z",
|
|
3
|
+
"checkpoint_at": "2026-03-24T15:01:17.545Z",
|
|
4
4
|
"active_files": [],
|
|
5
5
|
"notes": [],
|
|
6
6
|
"mtime_snapshot": {}
|
package/package.json
CHANGED
|
@@ -434,6 +434,9 @@ async def _run_turn(session: _Session, message: str, client, cfg_loader, store,
|
|
|
434
434
|
session.busy = True
|
|
435
435
|
thinking_ts = await _post(client, channel, "_thinking..._")
|
|
436
436
|
|
|
437
|
+
attach_note = f" (+{len(attachments)} file(s))" if attachments else ""
|
|
438
|
+
logger.info("Boss [%s] >> %s%s", session.user_name, message[:300], attach_note)
|
|
439
|
+
|
|
437
440
|
reply = ""
|
|
438
441
|
is_done = True
|
|
439
442
|
try:
|
|
@@ -452,6 +455,8 @@ async def _run_turn(session: _Session, message: str, client, cfg_loader, store,
|
|
|
452
455
|
finally:
|
|
453
456
|
session.busy = False
|
|
454
457
|
|
|
458
|
+
logger.info("Boss [%s] << %s", session.user_name, reply[:300])
|
|
459
|
+
|
|
455
460
|
if thinking_ts:
|
|
456
461
|
await _update(client, channel, thinking_ts, reply)
|
|
457
462
|
else:
|