@rubytech/create-maxy-code 0.1.272 → 0.1.274
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
|
@@ -22,6 +22,16 @@
|
|
|
22
22
|
|
|
23
23
|
set -uo pipefail
|
|
24
24
|
|
|
25
|
+
# Task 678 — PIN identity gate SUSPENDED. The hard PreToolUse PIN block is
|
|
26
|
+
# removed pending a new multi-admin authentication design. The block made every
|
|
27
|
+
# tool (including the WhatsApp channel reply tool) unreachable until a PIN was
|
|
28
|
+
# entered, which is impossible on non-interactive surfaces like the WhatsApp
|
|
29
|
+
# channel (Task 677). This hook now allows every tool. The original gating logic
|
|
30
|
+
# is retained below the early exit for reference and quick revert; the
|
|
31
|
+
# replacement auth (channel-bindings + per-admin identity) is Task 678.
|
|
32
|
+
# Silent exit (no per-tool-call log line) — this fires on every tool call.
|
|
33
|
+
exit 0
|
|
34
|
+
|
|
25
35
|
if [ -t 0 ]; then
|
|
26
36
|
echo "Blocked: pin-identity-gate received no stdin (cannot inspect tool call). Failing closed." >&2
|
|
27
37
|
exit 2
|