@su-record/vibe 1.2.17 → 1.2.21

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@su-record/vibe",
3
- "version": "1.2.17",
3
+ "version": "1.2.21",
4
4
  "description": "Vibe - Claude Code exclusive SPEC-driven AI coding framework",
5
5
  "bin": {
6
6
  "vibe": "./bin/vibe"
@@ -1,3 +1,103 @@
1
1
  {
2
- "hooks": {}
2
+ "hooks": {
3
+ "SessionStart": [
4
+ {
5
+ "hooks": [
6
+ {
7
+ "type": "command",
8
+ "command": "echo '[SESSION START] If mcp__vibe__start_session is available, call it to restore previous context.'"
9
+ }
10
+ ]
11
+ }
12
+ ],
13
+ "PreToolUse": [
14
+ {
15
+ "matcher": "Bash",
16
+ "hooks": [
17
+ {
18
+ "type": "command",
19
+ "command": "echo '[BASH CHECK] Be cautious with destructive commands (rm -rf, git push --force, drop table). Verify paths before deletion.'"
20
+ }
21
+ ]
22
+ }
23
+ ],
24
+ "UserPromptSubmit": [
25
+ {
26
+ "matcher": "ultrawork|ulw|울트라워크",
27
+ "hooks": [
28
+ {
29
+ "type": "command",
30
+ "command": "echo '[ULTRAWORK MODE] Use PARALLEL Task calls. Auto-continue through ALL phases. Auto-retry on errors up to 3 times. Run mcp__vibe__auto_save_context at 70%+ context. Do NOT ask for confirmation between phases.'"
31
+ }
32
+ ]
33
+ },
34
+ {
35
+ "matcher": "analyze|분석|analysis",
36
+ "hooks": [
37
+ {
38
+ "type": "command",
39
+ "command": "echo '[ANALYZE MODE] Thoroughly examine the codebase. Use mcp__vibe__analyze_complexity and mcp__vibe__find_references for deep analysis.'"
40
+ }
41
+ ]
42
+ },
43
+ {
44
+ "matcher": "debug|디버그|debugging",
45
+ "hooks": [
46
+ {
47
+ "type": "command",
48
+ "command": "echo '[DEBUG MODE] Focus on finding root cause. Check logs, trace execution flow, verify assumptions step by step.'"
49
+ }
50
+ ]
51
+ },
52
+ {
53
+ "matcher": "test|테스트|testing",
54
+ "hooks": [
55
+ {
56
+ "type": "command",
57
+ "command": "echo '[TEST MODE] Write comprehensive tests. Cover edge cases, error scenarios, and happy paths.'"
58
+ }
59
+ ]
60
+ }
61
+ ],
62
+ "PostToolUse": [
63
+ {
64
+ "matcher": "Write|Edit",
65
+ "hooks": [
66
+ {
67
+ "type": "command",
68
+ "command": "echo '[CODE CHECK] Continue your task. Quick inline check: no syntax errors, no any types, no security issues, preserves existing code style.'"
69
+ }
70
+ ]
71
+ }
72
+ ],
73
+ "Notification": [
74
+ {
75
+ "matcher": "context_window_70",
76
+ "hooks": [
77
+ {
78
+ "type": "command",
79
+ "command": "echo '[CONTEXT 70%] Start being selective about file reads. If ULTRAWORK mode: run mcp__vibe__auto_save_context now.'"
80
+ }
81
+ ]
82
+ },
83
+ {
84
+ "matcher": "context_window_85",
85
+ "hooks": [
86
+ {
87
+ "type": "command",
88
+ "command": "echo '[CONTEXT 85%] IMMEDIATELY run mcp__vibe__auto_save_context with urgency=high.'"
89
+ }
90
+ ]
91
+ },
92
+ {
93
+ "matcher": "context_window_95",
94
+ "hooks": [
95
+ {
96
+ "type": "command",
97
+ "command": "echo '[CONTEXT 95% CRITICAL] Run mcp__vibe__auto_save_context with urgency=critical NOW. Prepare for session transition.'"
98
+ }
99
+ ]
100
+ }
101
+ ]
102
+ }
3
103
  }