instar 0.19.1 → 0.19.3
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/README.md +5 -3
- package/dist/commands/server.js +1 -1
- package/dist/commands/server.js.map +1 -1
- package/dist/commands/setup.d.ts.map +1 -1
- package/dist/commands/setup.js +35 -7
- package/dist/commands/setup.js.map +1 -1
- package/dist/threadline/relay/ConnectionManager.d.ts.map +1 -1
- package/dist/threadline/relay/ConnectionManager.js +11 -6
- package/dist/threadline/relay/ConnectionManager.js.map +1 -1
- package/dist/threadline/relay/RelayServer.d.ts.map +1 -1
- package/dist/threadline/relay/RelayServer.js +52 -9
- package/dist/threadline/relay/RelayServer.js.map +1 -1
- package/dist/threadline/relay/types.d.ts +2 -1
- package/dist/threadline/relay/types.d.ts.map +1 -1
- package/dist/threadline/relay/types.js.map +1 -1
- package/package.json +1 -1
- package/src/data/builtin-manifest.json +2 -2
- package/upgrades/0.12.23.md +3 -1
- package/upgrades/0.19.2.md +27 -0
- package/upgrades/0.19.3.md +32 -0
package/README.md
CHANGED
|
@@ -112,17 +112,17 @@ Instar solves the six dimensions of agent coherence:
|
|
|
112
112
|
| **Intent Alignment** | Decision journaling, drift detection, organizational constraints | [→](https://instar.sh/features/intent/) |
|
|
113
113
|
| **Multi-Machine** | Ed25519/X25519 crypto identity, encrypted sync, automatic failover | [→](https://instar.sh/features/multi-machine/) |
|
|
114
114
|
| **Serendipity Protocol** | Sub-agents capture out-of-scope discoveries without breaking focus. HMAC-signed, secret-scanned | [→](https://instar.sh/features/serendipity/) |
|
|
115
|
-
| **Threadline Protocol** | Agent-to-agent conversations with crypto identity, MCP tools, and framework-agnostic discovery. 1,
|
|
115
|
+
| **Threadline Protocol** | Agent-to-agent conversations with crypto identity, MCP tools, and framework-agnostic discovery. 1,817 tests across 52 test files | [→](https://instar.sh/features/threadline/) |
|
|
116
116
|
| **Self-Healing** | LLM-powered stall detection, session recovery, promise tracking | [→](https://instar.sh/features/self-healing/) |
|
|
117
117
|
| **AutoUpdater** | Built-in update engine. Checks npm, auto-applies, self-restarts | [→](https://instar.sh/features/autoupdater/) |
|
|
118
|
-
| **Behavioral Hooks** |
|
|
118
|
+
| **Behavioral Hooks** | 9 automatic hooks: command guards, safety gates, identity grounding, topic context | [→](https://instar.sh/reference/hooks/) |
|
|
119
119
|
| **Default Jobs** | Health checks, reflection, evolution, relationship maintenance | [→](https://instar.sh/reference/default-jobs/) |
|
|
120
120
|
|
|
121
121
|
> **Reference:** [CLI Commands](https://instar.sh/reference/cli/) · [API Endpoints](https://instar.sh/reference/api/) · [Configuration](https://instar.sh/reference/configuration/) · [File Structure](https://instar.sh/reference/file-structure/)
|
|
122
122
|
|
|
123
123
|
## Agent Skills
|
|
124
124
|
|
|
125
|
-
Instar ships
|
|
125
|
+
Instar ships 12 skills that follow the [Agent Skills open standard](https://agentskills.io) -- portable across Claude Code, Codex, Cursor, VS Code, and 35+ other platforms.
|
|
126
126
|
|
|
127
127
|
**Standalone skills** work with zero dependencies. Copy a SKILL.md into your project and go:
|
|
128
128
|
|
|
@@ -133,6 +133,8 @@ Instar ships 10 skills that follow the [Agent Skills open standard](https://agen
|
|
|
133
133
|
| [command-guard](skills/command-guard/) | PreToolUse hook that blocks `rm -rf`, force push, database drops before they execute |
|
|
134
134
|
| [credential-leak-detector](skills/credential-leak-detector/) | PostToolUse hook that scans output for 14 credential patterns -- blocks, redacts, or warns |
|
|
135
135
|
| [smart-web-fetch](skills/smart-web-fetch/) | Fetch web content with automatic markdown conversion and intelligent extraction |
|
|
136
|
+
| [knowledge-base](skills/knowledge-base/) | Ingest and search a local knowledge base |
|
|
137
|
+
| [systematic-debugging](skills/systematic-debugging/) | Structured debugging methodology for complex issues |
|
|
136
138
|
|
|
137
139
|
**Instar-powered skills** unlock capabilities that need persistent infrastructure:
|
|
138
140
|
|
package/dist/commands/server.js
CHANGED
|
@@ -1256,7 +1256,7 @@ export async function startServer(options) {
|
|
|
1256
1256
|
process.exit(0);
|
|
1257
1257
|
}
|
|
1258
1258
|
// Run post-update migration on startup — ensures agent knowledge stays current
|
|
1259
|
-
//
|
|
1259
|
+
// regardless of how the update was applied (shadow install, npx, etc.).
|
|
1260
1260
|
// This is the SAFETY NET: catches all upgrades regardless of how they were applied.
|
|
1261
1261
|
try {
|
|
1262
1262
|
const installedVersion = getInstalledVersion();
|