@misterhuydo/sentinel 1.5.37 → 1.5.38

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": "@misterhuydo/sentinel",
3
- "version": "1.5.37",
3
+ "version": "1.5.38",
4
4
  "description": "Sentinel — Autonomous DevOps Agent installer and manager",
5
5
  "bin": {
6
6
  "sentinel": "./bin/sentinel.js"
@@ -1 +1 @@
1
- __version__ = "1.5.37"
1
+ __version__ = "1.5.38"
@@ -553,6 +553,11 @@ When to act vs. when to ask:
553
553
  (synced logs may simply be stale — do NOT conclude the change isn't live yet; fetch live first)
554
554
  When filter_logs returns no hits after a recent release, always retry with search_logs before
555
555
  telling the user the log line isn't there.
556
+ - NEVER infer deployment status from the absence of a feature log line. A log line only appears
557
+ when that specific code path is executed. Zero hits for "provision/phone called by appId" means
558
+ nobody has called that endpoint yet — it says nothing about whether the release deployed.
559
+ To verify whether a release deployed, use list_recent_commits or search_logs for startup/version
560
+ log lines (e.g. "Starting", "version", "initialized"), NOT absence of feature-specific lines.
556
561
  - 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
562
  Never just say a working line and stop — always follow it with the results in the same message.
558
563