instar 0.24.18-beta.0 → 0.24.18
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/dashboard/index.html +16 -8
- package/dist/cli.js +0 -0
- package/package.json +1 -1
- package/src/data/builtin-manifest.json +2 -2
- package/upgrades/0.24.14.md +0 -26
- package/upgrades/NEXT.md +0 -35
- /package/.claude/skills/secret-setup/{SKILL.md → skill.md} +0 -0
- /package/upgrades/{0.24.18-beta.0.md → 0.24.18.md} +0 -0
package/dashboard/index.html
CHANGED
|
@@ -3007,16 +3007,24 @@
|
|
|
3007
3007
|
<!-- Systems Tab -->
|
|
3008
3008
|
<div class="systems-container" id="systemsTab" style="display:none">
|
|
3009
3009
|
<div class="systems-main">
|
|
3010
|
-
|
|
3011
|
-
|
|
3012
|
-
<
|
|
3010
|
+
<!-- Overview (card grid) -->
|
|
3011
|
+
<div id="systemsOverview">
|
|
3012
|
+
<div class="systems-header">
|
|
3013
|
+
<h2>Systems</h2>
|
|
3014
|
+
<button class="systems-refresh" onclick="loadSystems()">Refresh</button>
|
|
3015
|
+
</div>
|
|
3016
|
+
<div id="systemsBanner">
|
|
3017
|
+
<div style="padding:20px;color:var(--text-dim);text-align:center">Loading...</div>
|
|
3018
|
+
</div>
|
|
3019
|
+
<div id="systemsIssues"></div>
|
|
3020
|
+
<div id="systemsCapabilities"></div>
|
|
3021
|
+
<div id="systemsEvents"></div>
|
|
3013
3022
|
</div>
|
|
3014
|
-
|
|
3015
|
-
|
|
3023
|
+
<!-- Detail view (single capability) -->
|
|
3024
|
+
<div class="cap-detail-view" id="systemsDetailView">
|
|
3025
|
+
<button class="cap-detail-back" onclick="showSystemsOverview()">◀ Back to overview</button>
|
|
3026
|
+
<div id="systemsDetailContent"></div>
|
|
3016
3027
|
</div>
|
|
3017
|
-
<div id="systemsIssues"></div>
|
|
3018
|
-
<div id="systemsCapabilities"></div>
|
|
3019
|
-
<div id="systemsEvents"></div>
|
|
3020
3028
|
</div>
|
|
3021
3029
|
</div>
|
|
3022
3030
|
|
package/dist/cli.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "./builtin-manifest.schema.json",
|
|
3
3
|
"schemaVersion": 1,
|
|
4
|
-
"generatedAt": "2026-03-
|
|
5
|
-
"instarVersion": "0.24.18
|
|
4
|
+
"generatedAt": "2026-03-28T21:31:33.464Z",
|
|
5
|
+
"instarVersion": "0.24.18",
|
|
6
6
|
"entryCount": 179,
|
|
7
7
|
"entries": {
|
|
8
8
|
"hook:session-start": {
|
package/upgrades/0.24.14.md
DELETED
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
# Upgrade Guide — v0.24.14
|
|
2
|
-
|
|
3
|
-
## What Changed
|
|
4
|
-
|
|
5
|
-
### Server Supervisor Self-Healing
|
|
6
|
-
|
|
7
|
-
The ServerSupervisor now runs preflight diagnostics before every server spawn attempt. Previously, if the shadow install was missing or the node symlink was broken, the server would crash immediately on startup — and restarting via `/lifeline restart` would just repeat the same failure.
|
|
8
|
-
|
|
9
|
-
Now, before each spawn, the supervisor checks and auto-repairs:
|
|
10
|
-
|
|
11
|
-
- **Missing shadow install** — reinstalls via npm automatically
|
|
12
|
-
- **Broken node symlink** — recreates it from available node binaries
|
|
13
|
-
- **Stale lifeline locks** — removes locks older than 10 minutes
|
|
14
|
-
|
|
15
|
-
This means `/lifeline restart` now actually fixes the problem instead of blindly retrying a broken state. Agents on remote machines can self-recover from common post-update failures without manual SSH intervention.
|
|
16
|
-
|
|
17
|
-
## What to Tell Your User
|
|
18
|
-
|
|
19
|
-
Your agent's server is now more resilient. If the server goes down due to a missing or corrupted install, the system will automatically detect and fix the issue before restarting. The /lifeline restart command in Telegram now does real recovery, not just a blind retry.
|
|
20
|
-
|
|
21
|
-
## Summary of New Capabilities
|
|
22
|
-
|
|
23
|
-
- **Preflight self-healing**: Server supervisor diagnoses and fixes common startup failures before each spawn
|
|
24
|
-
- **Shadow install auto-repair**: Missing shadow installs are reinstalled automatically
|
|
25
|
-
- **Node symlink recovery**: Broken node symlinks are recreated from available binaries
|
|
26
|
-
- **Stale lock cleanup**: Old lifeline locks are removed to prevent restart deadlocks
|
package/upgrades/NEXT.md
DELETED
|
@@ -1,35 +0,0 @@
|
|
|
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"] |
|
|
File without changes
|
|
File without changes
|