openclaw-sentinel 0.3.0 → 0.3.2

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/dist/index.js CHANGED
@@ -210,7 +210,7 @@ export default function sentinel(api) {
210
210
  }
211
211
  catch { /* ignore */ }
212
212
  const pluginConfig = { ...fileConfig, ...apiConfig };
213
- console.log(`[sentinel] Config v0.3.0: alertSeverity=${pluginConfig.alertSeverity}, alertChannel=${pluginConfig.alertChannel}, llmAssess=${pluginConfig.llmAlertAssessment}, trustedPatterns=${(pluginConfig.trustedCommandPatterns ?? []).length}`);
213
+ console.log(`[sentinel] Config v0.3.2: alertSeverity=${pluginConfig.alertSeverity}, alertChannel=${pluginConfig.alertChannel}, llmAssess=${pluginConfig.llmAlertAssessment}, trustedPatterns=${(pluginConfig.trustedCommandPatterns ?? []).length}`);
214
214
  let watcher = null;
215
215
  let logStreamWatcher = null;
216
216
  const sentinelDir = pluginConfig.logPath ?? SENTINEL_DIR_DEFAULT;
@@ -2,7 +2,7 @@
2
2
  "id": "sentinel",
3
3
  "name": "Sentinel",
4
4
  "description": "Real-time endpoint security monitoring for macOS and Linux — process execution, SSH connections, privilege escalation, and file integrity alerts via OpenClaw.",
5
- "version": "0.2.2",
5
+ "version": "0.3.2",
6
6
  "skills": ["skills/sentinel"],
7
7
  "configSchema": {
8
8
  "type": "object",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openclaw-sentinel",
3
- "version": "0.3.0",
3
+ "version": "0.3.2",
4
4
  "description": "Real-time endpoint security monitoring plugin for OpenClaw",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",