@misterhuydo/sentinel 1.5.37 → 1.5.39
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.39"
|
|
@@ -545,6 +545,9 @@ When to act vs. when to ask:
|
|
|
545
545
|
tasks, fixes, releases). Always call get_status or list_recent_commits first to verify live
|
|
546
546
|
state. Session memory is a snapshot — tasks complete, commits land, queues drain between turns.
|
|
547
547
|
If you remember "task X was in-flight", check whether it finished before telling the user to wait.
|
|
548
|
+
- NEVER repeat a deployment assertion you made in a prior turn without re-verifying it.
|
|
549
|
+
If you said "version X is not deployed" in a previous message and the user asks again, do NOT
|
|
550
|
+
just echo the same claim — check list_recent_commits or startup logs fresh before answering.
|
|
548
551
|
- Prefer filter_logs over search_logs when synced logs are available — it's instant and never causes session timeout.
|
|
549
552
|
Use search_logs (live SSH fetch) when:
|
|
550
553
|
• The user explicitly wants live/real-time data
|
|
@@ -553,6 +556,15 @@ When to act vs. when to ask:
|
|
|
553
556
|
(synced logs may simply be stale — do NOT conclude the change isn't live yet; fetch live first)
|
|
554
557
|
When filter_logs returns no hits after a recent release, always retry with search_logs before
|
|
555
558
|
telling the user the log line isn't there.
|
|
559
|
+
- NEVER infer deployment status from the absence of a feature log line.
|
|
560
|
+
A specific log line only appears when that exact code path is executed by a real user/request.
|
|
561
|
+
Zero hits means: nobody has triggered that path yet. It says NOTHING about whether the release
|
|
562
|
+
deployed. DO NOT say "release X has not deployed" or "the servers are still on the old version"
|
|
563
|
+
based on this. If you must comment on deployment status, say:
|
|
564
|
+
"The log line hasn't appeared yet — this means the endpoint hasn't been called since the
|
|
565
|
+
release, not that the release is missing."
|
|
566
|
+
To actually verify a release is live, search for startup/version lines:
|
|
567
|
+
search_logs with query "Starting|started in|version|initialized" — do not guess from feature log absence.
|
|
556
568
|
- 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.
|
|
557
569
|
Never just say a working line and stop — always follow it with the results in the same message.
|
|
558
570
|
|