refactor: rename Tool.alpha to Tool.experimental

This commit is contained in:
Siddharth Kumar Sah
2026-03-26 01:10:51 +08:00
parent ab370a74fe
commit 585d66f0c9
178 changed files with 5637 additions and 4082 deletions
+10
View File
@@ -0,0 +1,10 @@
const fs = require("node:fs");
const input = JSON.parse(fs.readFileSync("/dev/stdin", "utf8"));
const cmd = input.tool_input?.command || "";
if (/--no-verify/.test(cmd)) {
console.log(
"BLOCKED: --no-verify bypasses git hooks. Fix the underlying issue instead of skipping checks.",
);
process.exit(2);
}