instar 0.24.31 → 0.24.33

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/dist/cli.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "instar",
3
- "version": "0.24.31",
3
+ "version": "0.24.33",
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:43:29.604Z",
5
+ "instarVersion": "0.24.33",
6
6
  "entryCount": 179,
7
7
  "entries": {
8
8
  "hook:session-start": {
@@ -0,0 +1,19 @@
1
+ # Upgrade Guide — vNEXT
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 |
File without changes