instar 0.24.31 → 0.24.32

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.24.31",
3
+ "version": "0.24.32",
4
4
  "description": "Persistent autonomy infrastructure for AI agents",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "$schema": "./builtin-manifest.schema.json",
3
3
  "schemaVersion": 1,
4
- "generatedAt": "2026-03-29T21:03:54.862Z",
5
- "instarVersion": "0.24.31",
4
+ "generatedAt": "2026-03-29T21:40:54.187Z",
5
+ "instarVersion": "0.24.32",
6
6
  "entryCount": 179,
7
7
  "entries": {
8
8
  "hook:session-start": {
@@ -0,0 +1,35 @@
1
+ # Upgrade Guide — vNEXT
2
+
3
+ <!-- bump: patch -->
4
+ <!-- Valid values: patch, minor, major -->
5
+ <!-- patch = bug fixes, refactors, test additions, doc updates -->
6
+ <!-- minor = new features, new APIs, new capabilities (backwards-compatible) -->
7
+ <!-- major = breaking changes to existing APIs or behavior -->
8
+
9
+ ## What Changed
10
+
11
+ <!-- Describe what changed technically. What new features, APIs, behavioral changes? -->
12
+ <!-- Write this for the AGENT — they need to understand the system deeply. -->
13
+
14
+ ## What to Tell Your User
15
+
16
+ <!-- Write talking points the agent should relay to their user. -->
17
+ <!-- This should be warm, conversational, user-facing — not a changelog. -->
18
+ <!-- Focus on what THEY can now do, not internal plumbing. -->
19
+ <!-- -->
20
+ <!-- PROHIBITED in this section (will fail validation): -->
21
+ <!-- camelCase config keys: silentReject, maxRetries, telegramNotify -->
22
+ <!-- Inline code backtick references like silentReject: false -->
23
+ <!-- Fenced code blocks -->
24
+ <!-- Instructions to edit files or run commands -->
25
+ <!-- -->
26
+ <!-- CORRECT style: "I can turn that on for you" not "set X to false" -->
27
+ <!-- The agent relays this to their user — keep it human. -->
28
+
29
+ - **[Feature name]**: "[Brief, friendly description of what this means for the user]"
30
+
31
+ ## Summary of New Capabilities
32
+
33
+ | Capability | How to Use |
34
+ |-----------|-----------|
35
+ | [Capability] | [Endpoint, command, or "automatic"] |
@@ -0,0 +1,19 @@
1
+ # Upgrade Guide — v0.24.32
2
+
3
+ <!-- bump: patch -->
4
+
5
+ ## What Changed
6
+
7
+ **Autonomous stop hook migration for existing agents.** v0.24.31 added the autonomous stop hook for new agents (via init), but existing agents didn't get the PostUpdateMigrator migration. This release adds `ensureAutonomousStopHook()` to the migrator so existing agents get the hook deployed and registered automatically on server restart.
8
+
9
+ Also fixes execSync security test exemptions for commands/init.ts, commands/setup.ts, and core/AgentRegistry.ts.
10
+
11
+ ## What to Tell Your User
12
+
13
+ - **Autonomous mode fix (existing agents)**: "Autonomous mode should now work properly. The stop hook that keeps sessions running through task lists is now automatically deployed when you update."
14
+
15
+ ## Summary of New Capabilities
16
+
17
+ | Capability | How to Use |
18
+ |-----------|-----------|
19
+ | Autonomous stop hook migration | Automatic — runs on server restart after update |