iranti 0.3.34 → 0.3.35
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.
|
@@ -460,7 +460,7 @@ async function main() {
|
|
|
460
460
|
}
|
|
461
461
|
const server = new mcp_js_1.McpServer({
|
|
462
462
|
name: 'iranti-mcp',
|
|
463
|
-
version: '0.3.
|
|
463
|
+
version: '0.3.35',
|
|
464
464
|
});
|
|
465
465
|
server.registerTool('iranti_handshake', {
|
|
466
466
|
description: `Initialize or refresh an agent's working-memory brief for the current task.
|
package/dist/src/api/server.js
CHANGED
|
@@ -71,7 +71,7 @@ const RUNTIME_AUTHORITY = (0, runtimeLifecycle_1.resolveRuntimeAuthorityFromEnv)
|
|
|
71
71
|
const INSTANCE_DIR = RUNTIME_AUTHORITY.instanceDir;
|
|
72
72
|
const INSTANCE_RUNTIME_FILE = RUNTIME_AUTHORITY.runtimeFile;
|
|
73
73
|
const INSTANCE_NAME = process.env.IRANTI_INSTANCE_NAME?.trim() || (INSTANCE_DIR ? path_1.default.basename(INSTANCE_DIR) : 'adhoc');
|
|
74
|
-
const VERSION = '0.3.
|
|
74
|
+
const VERSION = '0.3.35';
|
|
75
75
|
const PORT_RAW = (process.env.IRANTI_PORT ?? '3001').trim();
|
|
76
76
|
const PORT = Number.parseInt(PORT_RAW, 10);
|
|
77
77
|
const runtimeMetadataHealth = (0, healthChecks_1.createHealthCheckState)({
|
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "iranti",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.35",
|
|
4
|
+
"mcpName": "io.github.nfemmanuel/iranti",
|
|
4
5
|
"description": "Memory infrastructure for multi-agent AI systems",
|
|
5
6
|
"main": "dist/src/sdk/index.js",
|
|
6
7
|
"files": [
|
|
@@ -156,6 +157,9 @@
|
|
|
156
157
|
"devDependencies": {
|
|
157
158
|
"@types/express": "^5.0.6",
|
|
158
159
|
"@types/pg": "^8.16.0",
|
|
160
|
+
"@types/react": "^19.2.14",
|
|
161
|
+
"react": "^19.2.5",
|
|
162
|
+
"react-dom": "^19.2.5",
|
|
159
163
|
"ts-node": "^10.9.2",
|
|
160
164
|
"typescript": "^5.0.0"
|
|
161
165
|
},
|