instar 0.24.18 → 0.24.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.
Files changed (42) hide show
  1. package/.claude/settings.json +120 -0
  2. package/.claude/skills/setup-wizard/skill.md +2 -2
  3. package/dashboard/index.html +221 -336
  4. package/dist/cli.js +0 -0
  5. package/dist/commands/init.d.ts.map +1 -1
  6. package/dist/commands/init.js +22 -4
  7. package/dist/commands/init.js.map +1 -1
  8. package/dist/commands/server.d.ts.map +1 -1
  9. package/dist/commands/server.js +18 -1
  10. package/dist/commands/server.js.map +1 -1
  11. package/dist/commands/setup.d.ts.map +1 -1
  12. package/dist/commands/setup.js +23 -2
  13. package/dist/commands/setup.js.map +1 -1
  14. package/dist/core/GitSync.d.ts +3 -2
  15. package/dist/core/GitSync.d.ts.map +1 -1
  16. package/dist/core/GitSync.js +19 -4
  17. package/dist/core/GitSync.js.map +1 -1
  18. package/dist/core/SessionManager.d.ts +1 -1
  19. package/dist/core/SessionManager.d.ts.map +1 -1
  20. package/dist/core/SessionManager.js.map +1 -1
  21. package/dist/lifeline/ServerSupervisor.d.ts.map +1 -1
  22. package/dist/lifeline/ServerSupervisor.js +31 -0
  23. package/dist/lifeline/ServerSupervisor.js.map +1 -1
  24. package/dist/messaging/slack/SlackAdapter.d.ts +25 -4
  25. package/dist/messaging/slack/SlackAdapter.d.ts.map +1 -1
  26. package/dist/messaging/slack/SlackAdapter.js +156 -12
  27. package/dist/messaging/slack/SlackAdapter.js.map +1 -1
  28. package/dist/messaging/slack/SocketModeClient.d.ts.map +1 -1
  29. package/dist/messaging/slack/SocketModeClient.js +11 -4
  30. package/dist/messaging/slack/SocketModeClient.js.map +1 -1
  31. package/dist/messaging/slack/types.d.ts +30 -0
  32. package/dist/messaging/slack/types.d.ts.map +1 -1
  33. package/dist/messaging/slack/types.js.map +1 -1
  34. package/package.json +1 -1
  35. package/src/data/builtin-manifest.json +4 -4
  36. package/upgrades/0.24.14.md +26 -0
  37. package/upgrades/0.24.18-beta.0.md +35 -0
  38. package/upgrades/0.24.18.md +26 -26
  39. package/upgrades/0.24.19.md +21 -0
  40. package/upgrades/0.24.21.md +25 -0
  41. package/upgrades/NEXT.md +45 -0
  42. /package/.claude/skills/secret-setup/{skill.md → SKILL.md} +0 -0
@@ -67,6 +67,126 @@
67
67
  }
68
68
  ]
69
69
  }
70
+ ],
71
+ "PostToolUse": [
72
+ {
73
+ "matcher": "",
74
+ "hooks": [
75
+ {
76
+ "type": "command",
77
+ "command": "node .instar/hooks/instar/hook-event-reporter.js",
78
+ "timeout": 3000
79
+ }
80
+ ]
81
+ }
82
+ ],
83
+ "SubagentStart": [
84
+ {
85
+ "matcher": "",
86
+ "hooks": [
87
+ {
88
+ "type": "command",
89
+ "command": "node .instar/hooks/instar/hook-event-reporter.js",
90
+ "timeout": 3000
91
+ }
92
+ ]
93
+ }
94
+ ],
95
+ "SubagentStop": [
96
+ {
97
+ "matcher": "",
98
+ "hooks": [
99
+ {
100
+ "type": "command",
101
+ "command": "node .instar/hooks/instar/hook-event-reporter.js",
102
+ "timeout": 3000
103
+ }
104
+ ]
105
+ }
106
+ ],
107
+ "Stop": [
108
+ {
109
+ "matcher": "",
110
+ "hooks": [
111
+ {
112
+ "type": "command",
113
+ "command": "node .instar/hooks/instar/hook-event-reporter.js",
114
+ "timeout": 3000
115
+ }
116
+ ]
117
+ }
118
+ ],
119
+ "WorktreeCreate": [
120
+ {
121
+ "matcher": "",
122
+ "hooks": [
123
+ {
124
+ "type": "command",
125
+ "command": "node .instar/hooks/instar/hook-event-reporter.js",
126
+ "timeout": 3000
127
+ }
128
+ ]
129
+ }
130
+ ],
131
+ "WorktreeRemove": [
132
+ {
133
+ "matcher": "",
134
+ "hooks": [
135
+ {
136
+ "type": "command",
137
+ "command": "node .instar/hooks/instar/hook-event-reporter.js",
138
+ "timeout": 3000
139
+ }
140
+ ]
141
+ }
142
+ ],
143
+ "TaskCompleted": [
144
+ {
145
+ "matcher": "",
146
+ "hooks": [
147
+ {
148
+ "type": "command",
149
+ "command": "node .instar/hooks/instar/hook-event-reporter.js",
150
+ "timeout": 3000
151
+ }
152
+ ]
153
+ }
154
+ ],
155
+ "SessionEnd": [
156
+ {
157
+ "matcher": "",
158
+ "hooks": [
159
+ {
160
+ "type": "command",
161
+ "command": "node .instar/hooks/instar/hook-event-reporter.js",
162
+ "timeout": 3000
163
+ }
164
+ ]
165
+ }
166
+ ],
167
+ "PreCompact": [
168
+ {
169
+ "matcher": "",
170
+ "hooks": [
171
+ {
172
+ "type": "command",
173
+ "command": "node .instar/hooks/instar/hook-event-reporter.js",
174
+ "timeout": 3000
175
+ }
176
+ ]
177
+ }
178
+ ],
179
+ "PermissionRequest": [
180
+ {
181
+ "matcher": "",
182
+ "hooks": [
183
+ {
184
+ "type": "command",
185
+ "command": "node .instar/hooks/instar/auto-approve-permissions.js",
186
+ "timeout": 5000
187
+ }
188
+ ]
189
+ }
70
190
  ]
71
191
  },
72
192
  "mcpServers": {
@@ -1621,8 +1621,8 @@ Build the app manifest JSON with minimal Phase 1 scopes:
1621
1621
  "oauth_config": {
1622
1622
  "scopes": {
1623
1623
  "bot": [
1624
- "channels:history", "channels:manage", "channels:read",
1625
- "chat:write", "im:history", "im:read", "im:write",
1624
+ "channels:history", "channels:join", "channels:manage", "channels:read",
1625
+ "chat:write", "files:read", "groups:history", "im:history", "im:read", "im:write",
1626
1626
  "pins:write", "reactions:read", "reactions:write", "users:read"
1627
1627
  ]
1628
1628
  }