@misterhuydo/sentinel 1.0.50 → 1.0.51

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/.cairn/.hint-lock CHANGED
@@ -1 +1 @@
1
- 2026-03-22T09:54:45.729Z
1
+ 2026-03-22T10:41:20.633Z
@@ -1,6 +1,6 @@
1
1
  {
2
- "message": "Auto-checkpoint at 2026-03-22T10:07:25.081Z",
3
- "checkpoint_at": "2026-03-22T10:07:25.082Z",
2
+ "message": "Auto-checkpoint at 2026-03-22T10:09:55.962Z",
3
+ "checkpoint_at": "2026-03-22T10:09:55.963Z",
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.0.50",
3
+ "version": "1.0.51",
4
4
  "description": "Sentinel — Autonomous DevOps Agent installer and manager",
5
5
  "bin": {
6
6
  "sentinel": "./bin/sentinel.js"
@@ -124,7 +124,7 @@ def generate_fix(
124
124
  env["ANTHROPIC_API_KEY"] = cfg.anthropic_api_key
125
125
  try:
126
126
  result = subprocess.run(
127
- [cfg.claude_code_bin, "--print", prompt],
127
+ [cfg.claude_code_bin, "--dangerously-skip-permissions", "--print", prompt],
128
128
  capture_output=True, text=True, timeout=SUBPROCESS_TIMEOUT, env=env,
129
129
  )
130
130
  except subprocess.TimeoutExpired:
@@ -771,7 +771,7 @@ async def _handle_with_cli(
771
771
 
772
772
  try:
773
773
  result = subprocess.run(
774
- [cfg.claude_code_bin, "--print", prompt],
774
+ [cfg.claude_code_bin, "--dangerously-skip-permissions", "--print", prompt],
775
775
  capture_output=True, text=True, timeout=180, env=env,
776
776
  )
777
777
  output = (result.stdout or "").strip()