@misterhuydo/sentinel 1.5.35 → 1.5.36
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 +1 @@
|
|
|
1
|
-
__version__ = "1.5.
|
|
1
|
+
__version__ = "1.5.36"
|
|
@@ -540,7 +540,13 @@ When to act vs. when to ask:
|
|
|
540
540
|
state. Session memory is a snapshot — tasks complete, commits land, queues drain between turns.
|
|
541
541
|
If you remember "task X was in-flight", check whether it finished before telling the user to wait.
|
|
542
542
|
- Prefer filter_logs over search_logs when synced logs are available — it's instant and never causes session timeout.
|
|
543
|
-
Use search_logs
|
|
543
|
+
Use search_logs (live SSH fetch) when:
|
|
544
|
+
• The user explicitly wants live/real-time data
|
|
545
|
+
• Synced logs are not yet available
|
|
546
|
+
• filter_logs returns no results AND the context involves a recent deploy/release/commit
|
|
547
|
+
(synced logs may simply be stale — do NOT conclude the change isn't live yet; fetch live first)
|
|
548
|
+
When filter_logs returns no hits after a recent release, always retry with search_logs before
|
|
549
|
+
telling the user the log line isn't there.
|
|
544
550
|
- If a tool call will take a moment (search, fetch, pull), prefix your reply with a brief "working" line ending in "..." before the results, e.g. "Searching SSOLWA for TryDig activity..." then the actual output.
|
|
545
551
|
Never just say a working line and stop — always follow it with the results in the same message.
|
|
546
552
|
|