claude-live 2.0.7 → 2.0.8

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": "claude-live",
3
- "version": "2.0.7",
3
+ "version": "2.0.8",
4
4
  "description": "Realtime Claude Code activity visualizer",
5
5
  "license": "MIT",
6
6
  "repository": "https://github.com/marisancans/claude-live",
@@ -1,161 +0,0 @@
1
- {
2
- "description": "claude-live hooks — auto-starts server on SessionStart, forwards all events to visualizer",
3
- "hooks": {
4
- "SessionStart": [{
5
- "hooks": [{
6
- "type": "command",
7
- "command": "\"${CLAUDE_PLUGIN_ROOT}/hooks/run-hook.cmd\" session-start",
8
- "async": true
9
- }]
10
- }],
11
- "InstructionsLoaded": [{
12
- "hooks": [{
13
- "type": "command",
14
- "command": "\"${CLAUDE_PLUGIN_ROOT}/hooks/run-hook.cmd\" send-event",
15
- "async": true
16
- }]
17
- }],
18
- "WorktreeCreate": [{
19
- "hooks": [{
20
- "type": "command",
21
- "command": "\"${CLAUDE_PLUGIN_ROOT}/hooks/run-hook.cmd\" send-event",
22
- "async": true
23
- }]
24
- }],
25
- "WorktreeRemove": [{
26
- "hooks": [{
27
- "type": "command",
28
- "command": "\"${CLAUDE_PLUGIN_ROOT}/hooks/run-hook.cmd\" send-event",
29
- "async": true
30
- }]
31
- }],
32
- "PreToolUse": [{
33
- "hooks": [{
34
- "type": "command",
35
- "command": "\"${CLAUDE_PLUGIN_ROOT}/hooks/run-hook.cmd\" send-event",
36
- "async": true
37
- }]
38
- }],
39
- "PostToolUse": [{
40
- "hooks": [{
41
- "type": "command",
42
- "command": "\"${CLAUDE_PLUGIN_ROOT}/hooks/run-hook.cmd\" send-event",
43
- "async": true
44
- }]
45
- }],
46
- "Stop": [{
47
- "hooks": [{
48
- "type": "command",
49
- "command": "\"${CLAUDE_PLUGIN_ROOT}/hooks/run-hook.cmd\" send-event",
50
- "async": true
51
- }]
52
- }],
53
- "Notification": [{
54
- "hooks": [{
55
- "type": "command",
56
- "command": "\"${CLAUDE_PLUGIN_ROOT}/hooks/run-hook.cmd\" send-event",
57
- "async": true
58
- }]
59
- }],
60
- "PermissionRequest": [{
61
- "hooks": [{
62
- "type": "command",
63
- "command": "\"${CLAUDE_PLUGIN_ROOT}/hooks/run-hook.cmd\" send-event",
64
- "async": true
65
- }]
66
- }],
67
- "SubagentStart": [{
68
- "hooks": [{
69
- "type": "command",
70
- "command": "\"${CLAUDE_PLUGIN_ROOT}/hooks/run-hook.cmd\" send-event",
71
- "async": true
72
- }]
73
- }],
74
- "SubagentStop": [{
75
- "hooks": [{
76
- "type": "command",
77
- "command": "\"${CLAUDE_PLUGIN_ROOT}/hooks/run-hook.cmd\" send-event",
78
- "async": true
79
- }]
80
- }],
81
- "SessionEnd": [{
82
- "hooks": [{
83
- "type": "command",
84
- "command": "\"${CLAUDE_PLUGIN_ROOT}/hooks/run-hook.cmd\" send-event",
85
- "async": true
86
- }]
87
- }],
88
- "PostToolUseFailure": [{
89
- "hooks": [{
90
- "type": "command",
91
- "command": "\"${CLAUDE_PLUGIN_ROOT}/hooks/run-hook.cmd\" send-event",
92
- "async": true
93
- }]
94
- }],
95
- "UserPromptSubmit": [{
96
- "hooks": [{
97
- "type": "command",
98
- "command": "\"${CLAUDE_PLUGIN_ROOT}/hooks/run-hook.cmd\" send-event",
99
- "async": true
100
- }]
101
- }],
102
- "PreCompact": [{
103
- "match": { "trigger": ["manual", "auto"] },
104
- "hooks": [{
105
- "type": "command",
106
- "command": "\"${CLAUDE_PLUGIN_ROOT}/hooks/run-hook.cmd\" send-event",
107
- "async": true
108
- }]
109
- }],
110
- "PostCompact": [{
111
- "match": { "trigger": ["manual", "auto"] },
112
- "hooks": [{
113
- "type": "command",
114
- "command": "\"${CLAUDE_PLUGIN_ROOT}/hooks/run-hook.cmd\" send-event",
115
- "async": true
116
- }]
117
- }],
118
- "StopFailure": [{
119
- "hooks": [{
120
- "type": "command",
121
- "command": "\"${CLAUDE_PLUGIN_ROOT}/hooks/run-hook.cmd\" send-event",
122
- "async": true
123
- }]
124
- }],
125
- "TeammateIdle": [{
126
- "hooks": [{
127
- "type": "command",
128
- "command": "\"${CLAUDE_PLUGIN_ROOT}/hooks/run-hook.cmd\" send-event",
129
- "async": true
130
- }]
131
- }],
132
- "TaskCompleted": [{
133
- "hooks": [{
134
- "type": "command",
135
- "command": "\"${CLAUDE_PLUGIN_ROOT}/hooks/run-hook.cmd\" send-event",
136
- "async": true
137
- }]
138
- }],
139
- "ConfigChange": [{
140
- "hooks": [{
141
- "type": "command",
142
- "command": "\"${CLAUDE_PLUGIN_ROOT}/hooks/run-hook.cmd\" send-event",
143
- "async": true
144
- }]
145
- }],
146
- "Elicitation": [{
147
- "hooks": [{
148
- "type": "command",
149
- "command": "\"${CLAUDE_PLUGIN_ROOT}/hooks/run-hook.cmd\" send-event",
150
- "async": true
151
- }]
152
- }],
153
- "ElicitationResult": [{
154
- "hooks": [{
155
- "type": "command",
156
- "command": "\"${CLAUDE_PLUGIN_ROOT}/hooks/run-hook.cmd\" send-event",
157
- "async": true
158
- }]
159
- }]
160
- }
161
- }