instar 0.28.15 → 0.28.17

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": "instar",
3
- "version": "0.28.15",
3
+ "version": "0.28.17",
4
4
  "description": "Persistent autonomy infrastructure for AI agents",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -74,8 +74,7 @@
74
74
  ".claude/skills/secret-setup",
75
75
  ".claude/skills/autonomous",
76
76
  ".claude/skills/build",
77
- ".claude/hooks",
78
- ".claude/settings.json"
77
+ ".claude/hooks"
79
78
  ],
80
79
  "license": "MIT",
81
80
  "engines": {
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "$schema": "./builtin-manifest.schema.json",
3
3
  "schemaVersion": 1,
4
- "generatedAt": "2026-04-09T20:30:29.181Z",
5
- "instarVersion": "0.28.15",
4
+ "generatedAt": "2026-04-09T21:47:09.389Z",
5
+ "instarVersion": "0.28.17",
6
6
  "entryCount": 186,
7
7
  "entries": {
8
8
  "hook:session-start": {
@@ -0,0 +1,11 @@
1
+ ## What Changed
2
+
3
+ - **Stopped shipping `.claude/settings.json` in the npm package.** The dev settings file was being included, full of hook references to `.instar/hooks/instar/*` paths that only exist in a fully-initialized agent state directory. When `npx instar` spawned Claude Code with `cwd=instarRoot`, Claude Code picked up those settings and tried to fire hooks against non-existent files, causing module-not-found errors during the setup wizard / secret-setup micro-sessions. Removing the file from the `files` field in package.json means the npx-installed package no longer carries the dev-only hook config.
4
+
5
+ ## What to Tell Your User
6
+
7
+ Nothing — this is a fix to the setup experience. The setup wizard will no longer throw module-not-found errors during onboarding.
8
+
9
+ ## Summary of New Capabilities
10
+
11
+ No new capabilities — bug fix to the setup wizard / secret-setup spawn flow.
@@ -0,0 +1,11 @@
1
+ ## What Changed
2
+
3
+ - **Stopped shipping `.claude/settings.json` in the npm package.** The dev settings file was being included, full of hook references to `.instar/hooks/instar/*` paths that only exist in a fully-initialized agent state directory. When `npx instar` spawned Claude Code with `cwd=instarRoot`, Claude Code picked up those settings and tried to fire hooks against non-existent files, causing module-not-found errors during the setup wizard / secret-setup micro-sessions. Removing the file from the `files` field in package.json means the npx-installed package no longer carries the dev-only hook config.
4
+
5
+ ## What to Tell Your User
6
+
7
+ Nothing — this is a fix to the setup experience. The setup wizard will no longer throw module-not-found errors during onboarding.
8
+
9
+ ## Summary of New Capabilities
10
+
11
+ No new capabilities — bug fix to the setup wizard / secret-setup spawn flow.
@@ -1,211 +0,0 @@
1
- {
2
- "hooks": {
3
- "PreToolUse": [
4
- {
5
- "matcher": "AskUserQuestion",
6
- "hooks": [
7
- {
8
- "type": "command",
9
- "command": "bash $CLAUDE_PROJECT_DIR/.claude/hooks/free-text-guard.sh",
10
- "blocking": true,
11
- "timeout": 5000
12
- }
13
- ]
14
- },
15
- {
16
- "matcher": "mcp__.*",
17
- "hooks": [
18
- {
19
- "type": "command",
20
- "command": "node .instar/hooks/instar/external-operation-gate.js",
21
- "blocking": true,
22
- "timeout": 5000
23
- }
24
- ]
25
- }
26
- ],
27
- "SessionStart": [
28
- {
29
- "matcher": "startup",
30
- "hooks": [
31
- {
32
- "type": "command",
33
- "command": "bash .instar/hooks/instar/session-start.sh",
34
- "timeout": 5
35
- }
36
- ]
37
- },
38
- {
39
- "matcher": "resume",
40
- "hooks": [
41
- {
42
- "type": "command",
43
- "command": "bash .instar/hooks/instar/session-start.sh",
44
- "timeout": 5
45
- }
46
- ]
47
- },
48
- {
49
- "matcher": "compact",
50
- "hooks": [
51
- {
52
- "type": "command",
53
- "command": "bash .instar/hooks/instar/session-start.sh",
54
- "timeout": 5
55
- }
56
- ]
57
- }
58
- ],
59
- "UserPromptSubmit": [
60
- {
61
- "matcher": "",
62
- "hooks": [
63
- {
64
- "type": "command",
65
- "command": "bash .instar/hooks/instar/telegram-topic-context.sh",
66
- "timeout": 5000
67
- }
68
- ]
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
- "matcher": "",
120
- "hooks": [
121
- {
122
- "type": "command",
123
- "command": "bash .instar/hooks/instar/build-stop-hook.sh",
124
- "timeout": 10000
125
- }
126
- ]
127
- }
128
- ],
129
- "WorktreeCreate": [
130
- {
131
- "matcher": "",
132
- "hooks": [
133
- {
134
- "type": "command",
135
- "command": "node .instar/hooks/instar/hook-event-reporter.js",
136
- "timeout": 3000
137
- }
138
- ]
139
- }
140
- ],
141
- "WorktreeRemove": [
142
- {
143
- "matcher": "",
144
- "hooks": [
145
- {
146
- "type": "command",
147
- "command": "node .instar/hooks/instar/hook-event-reporter.js",
148
- "timeout": 3000
149
- }
150
- ]
151
- }
152
- ],
153
- "TaskCompleted": [
154
- {
155
- "matcher": "",
156
- "hooks": [
157
- {
158
- "type": "command",
159
- "command": "node .instar/hooks/instar/hook-event-reporter.js",
160
- "timeout": 3000
161
- }
162
- ]
163
- }
164
- ],
165
- "SessionEnd": [
166
- {
167
- "matcher": "",
168
- "hooks": [
169
- {
170
- "type": "command",
171
- "command": "node .instar/hooks/instar/hook-event-reporter.js",
172
- "timeout": 3000
173
- }
174
- ]
175
- }
176
- ],
177
- "PreCompact": [
178
- {
179
- "matcher": "",
180
- "hooks": [
181
- {
182
- "type": "command",
183
- "command": "node .instar/hooks/instar/hook-event-reporter.js",
184
- "timeout": 3000
185
- }
186
- ]
187
- }
188
- ],
189
- "PermissionRequest": [
190
- {
191
- "matcher": "",
192
- "hooks": [
193
- {
194
- "type": "command",
195
- "command": "node .instar/hooks/instar/auto-approve-permissions.js",
196
- "timeout": 5000
197
- }
198
- ]
199
- }
200
- ]
201
- },
202
- "mcpServers": {
203
- "playwright": {
204
- "command": "npx",
205
- "args": [
206
- "-y",
207
- "@playwright/mcp@latest"
208
- ]
209
- }
210
- }
211
- }