@misterhuydo/sentinel 1.0.72 → 1.0.74
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/index.db
ADDED
|
Binary file
|
package/.cairn/session.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"message": "Auto-checkpoint at 2026-03-
|
|
3
|
-
"checkpoint_at": "2026-03-
|
|
2
|
+
"message": "Auto-checkpoint at 2026-03-22T17:16:34.026Z",
|
|
3
|
+
"checkpoint_at": "2026-03-22T17:16:34.027Z",
|
|
4
4
|
"active_files": [],
|
|
5
5
|
"notes": [],
|
|
6
6
|
"mtime_snapshot": {}
|
package/package.json
CHANGED
|
@@ -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, "--permission-mode", "bypassPermissions", "--print", prompt],
|
|
128
128
|
capture_output=True, text=True, timeout=SUBPROCESS_TIMEOUT, env=env,
|
|
129
129
|
)
|
|
130
130
|
except subprocess.TimeoutExpired:
|
|
@@ -1069,7 +1069,7 @@ async def _run_tool(name: str, inputs: dict, cfg_loader, store, slack_client=Non
|
|
|
1069
1069
|
)
|
|
1070
1070
|
try:
|
|
1071
1071
|
r = subprocess.run(
|
|
1072
|
-
[cfg.claude_code_bin, "--print", prompt],
|
|
1072
|
+
[cfg.claude_code_bin, "--permission-mode", "bypassPermissions", "--print", prompt],
|
|
1073
1073
|
capture_output=True, text=True, timeout=180, env=env,
|
|
1074
1074
|
cwd=str(local_path),
|
|
1075
1075
|
)
|
|
@@ -1229,7 +1229,7 @@ async def _handle_with_cli(
|
|
|
1229
1229
|
|
|
1230
1230
|
try:
|
|
1231
1231
|
result = subprocess.run(
|
|
1232
|
-
[cfg.claude_code_bin, "--print", prompt],
|
|
1232
|
+
[cfg.claude_code_bin, "--permission-mode", "bypassPermissions", "--print", prompt],
|
|
1233
1233
|
capture_output=True, text=True, timeout=180, env=env,
|
|
1234
1234
|
)
|
|
1235
1235
|
output = (result.stdout or "").strip()
|