@levnikolaevich/hex-line-mcp 1.27.1 → 1.28.0

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/README.md CHANGED
@@ -42,7 +42,7 @@ Advanced / occasional:
42
42
  | `changes` | Compare file against git ref, shows added/removed/modified symbols | AST-level semantic diff with risk/provenance preview |
43
43
  | `bulk_replace` | Search-and-replace across multiple files inside an explicit root path | Compact summary (default) or capped diffs via `format`, dry_run, max_files |
44
44
 
45
- ### Hooks (SessionStart + PreToolUse + PostToolUse)
45
+ ### Hooks (SessionStart + PreToolUse + PostToolUse + ConfigChange + PermissionDenied)
46
46
 
47
47
  | Event | Trigger | Action |
48
48
  |-------|---------|--------|
@@ -406,7 +406,7 @@ Logs when Claude denies a tool call after the hook delivered a redirect hint. Re
406
406
  ```
407
407
  hex-line-mcp/
408
408
  server.mjs MCP server (stdio transport, 9 tools)
409
- hook.mjs Unified hook (PreToolUse + PostToolUse + SessionStart)
409
+ hook.mjs Unified hook (SessionStart + PreToolUse + PostToolUse + ConfigChange + PermissionDenied)
410
410
  package.json
411
411
  lib/
412
412
  hook-policy.mjs Shared hook policy: redirects, thresholds, danger patterns
package/dist/server.mjs CHANGED
@@ -4967,7 +4967,7 @@ function errorResult(code, message, recovery, { large = false, extra = null } =
4967
4967
  }
4968
4968
 
4969
4969
  // server.mjs
4970
- var version = true ? "1.27.1" : (await null).createRequire(import.meta.url)("./package.json").version;
4970
+ var version = true ? "1.28.0" : (await null).createRequire(import.meta.url)("./package.json").version;
4971
4971
  var STATUS_ENUM = z2.enum(STATUS_VALUES);
4972
4972
  var ERROR_SHAPE = z2.object({ code: z2.string(), message: z2.string(), recovery: z2.string() }).optional();
4973
4973
  var LINE_REPORT_KEYS = /* @__PURE__ */ new Set([
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@levnikolaevich/hex-line-mcp",
3
- "version": "1.27.1",
3
+ "version": "1.28.0",
4
4
  "mcpName": "io.github.levnikolaevich/hex-line-mcp",
5
5
  "type": "module",
6
6
  "description": "Hash-verified file editing MCP + token efficiency hook for AI coding agents. 9 tools: inspect_path, read, edit, write, grep, outline, verify, changes, bulk_replace.",