iranti 0.3.16 → 0.3.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.
|
@@ -449,7 +449,7 @@ async function main() {
|
|
|
449
449
|
}
|
|
450
450
|
const server = new mcp_js_1.McpServer({
|
|
451
451
|
name: 'iranti-mcp',
|
|
452
|
-
version: '0.3.
|
|
452
|
+
version: '0.3.17',
|
|
453
453
|
});
|
|
454
454
|
server.registerTool('iranti_handshake', {
|
|
455
455
|
description: `Initialize or refresh an agent's working-memory brief for the current task.
|
package/dist/src/api/server.js
CHANGED
|
@@ -50,7 +50,7 @@ const RUNTIME_AUTHORITY = (0, runtimeLifecycle_1.resolveRuntimeAuthorityFromEnv)
|
|
|
50
50
|
const INSTANCE_DIR = RUNTIME_AUTHORITY.instanceDir;
|
|
51
51
|
const INSTANCE_RUNTIME_FILE = RUNTIME_AUTHORITY.runtimeFile;
|
|
52
52
|
const INSTANCE_NAME = process.env.IRANTI_INSTANCE_NAME?.trim() || (INSTANCE_DIR ? path_1.default.basename(INSTANCE_DIR) : 'adhoc');
|
|
53
|
-
const VERSION = '0.3.
|
|
53
|
+
const VERSION = '0.3.17';
|
|
54
54
|
const PORT_RAW = (process.env.IRANTI_PORT ?? '3001').trim();
|
|
55
55
|
const PORT = Number.parseInt(PORT_RAW, 10);
|
|
56
56
|
const runtimeMetadataHealth = (0, healthChecks_1.createHealthCheckState)({
|