pumuki 6.3.377 → 6.3.379

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
@@ -429,6 +429,7 @@ Screenshots from the consumer menu:
429
429
  | Consumer menu | Blocked pre-flight | Final summary |
430
430
  |---|---|---|
431
431
  | ![Consumer menu](assets/readme/menu-option1/01-menu-consumer-v2.png) | ![Pre-flight block](assets/readme/menu-option1/02-option1-preflight-block.png) | ![Final block](assets/readme/menu-option1/03-option1-final-summary-block.png) |
432
+ | ![Pre-flight pass](assets/readme/menu-option1/04-option1-preflight-pass.png) | ![Final pass](assets/readme/menu-option1/05-option1-final-summary-pass.png) | ![Menu after pass](assets/readme/menu-option1/06-menu-after-run-pass.png) |
432
433
 
433
434
  Notification channels include terminal output, stderr mirrors for relevant blocking events and optional system notifications. Blocking messages are expected to explain:
434
435
 
package/VERSION CHANGED
@@ -1 +1 @@
1
- 6.3.301
1
+ 6.3.379
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pumuki",
3
- "version": "6.3.377",
3
+ "version": "6.3.379",
4
4
  "description": "Enterprise governance framework for AI-assisted software delivery with Git hooks, SDD/OpenSpec, AST intelligence, evidence, MCP and multi-platform rule enforcement.",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -13,7 +13,7 @@ export const buildSystemNotificationsConfigFromSelection = (
13
13
  ): SystemNotificationsConfig => ({
14
14
  enabled,
15
15
  channel: 'macos',
16
- blockedDialogEnabled: enabled,
16
+ blockedDialogEnabled: false,
17
17
  });
18
18
 
19
19
  export const normalizeSystemNotificationsConfig = (
@@ -25,7 +25,7 @@ export const normalizeSystemNotificationsConfig = (
25
25
  ? true
26
26
  : raw.blockedDialogEnabled === false
27
27
  ? false
28
- : enabled;
28
+ : false;
29
29
  const config: SystemNotificationsConfig = {
30
30
  enabled,
31
31
  channel: 'macos',