@aiassesstech/mighty-mark 0.6.28 → 0.6.29

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": "@aiassesstech/mighty-mark",
3
- "version": "0.6.28",
3
+ "version": "0.6.29",
4
4
  "description": "System Health Sentinel for AI Assess Tech Fleet — autonomous monitoring, watchdog recovery, and fleet infrastructure oversight.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -179,17 +179,13 @@ echo ""
179
179
 
180
180
  echo "=== Step 5: Validate config ==="
181
181
  if command -v openclaw &>/dev/null; then
182
- if openclaw doctor 2>&1 | grep -q "Config valid\|All good"; then
182
+ doctor_output=$(openclaw doctor 2>&1 || true)
183
+ if echo "$doctor_output" | grep -q "Config valid\|All good"; then
183
184
  echo "✅ Config valid"
184
185
  else
185
- echo "⚠️ Config validation returned warnings (check output above)"
186
- echo " Run 'openclaw doctor' to see details"
187
- echo " If critical, fix config before proceeding"
188
- read -p " Continue with restart? (y/N): " confirm
189
- if [[ ! "$confirm" =~ ^[Yy]$ ]]; then
190
- echo "Aborted."
191
- exit 1
192
- fi
186
+ echo "⚠️ Config validation returned warnings:"
187
+ echo "$doctor_output" | head -20
188
+ echo " Continuing with restart run 'openclaw doctor' after to review"
193
189
  fi
194
190
  else
195
191
  echo "⚠️ 'openclaw' command not found — skipping config validation"