@misterhuydo/sentinel 1.4.55 → 1.4.56

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.
@@ -1,6 +1,6 @@
1
1
  {
2
- "message": "Auto-checkpoint at 2026-03-25T12:06:52.775Z",
3
- "checkpoint_at": "2026-03-25T12:06:52.777Z",
2
+ "message": "Auto-checkpoint at 2026-03-25T12:11:43.792Z",
3
+ "checkpoint_at": "2026-03-25T12:11:43.793Z",
4
4
  "active_files": [],
5
5
  "notes": [],
6
6
  "mtime_snapshot": {}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@misterhuydo/sentinel",
3
- "version": "1.4.55",
3
+ "version": "1.4.56",
4
4
  "description": "Sentinel — Autonomous DevOps Agent installer and manager",
5
5
  "bin": {
6
6
  "sentinel": "./bin/sentinel.js"
@@ -2492,6 +2492,7 @@ async def _run_tool(name: str, inputs: dict, cfg_loader, store, slack_client=Non
2492
2492
 
2493
2493
  if name == "install_tool":
2494
2494
  import subprocess as _sp
2495
+ import os as _os
2495
2496
  tool_name = inputs.get("tool_name", "").strip()
2496
2497
  if not tool_name:
2497
2498
  return json.dumps({"error": "tool_name is required"})