@atrib/daemon 0.2.0 → 0.2.1
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 +2 -3
- package/dist/index.js +5 -4
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -133,9 +133,8 @@ and mirror stay on the host.
|
|
|
133
133
|
`node scripts/update-primitives-runtime.mjs --runtime atribd`. It discovers
|
|
134
134
|
`com.nader.atribd.*` LaunchAgents running this package's `dist/index.js`,
|
|
135
135
|
builds the dependency closure, restarts, probes health and the direct MCP
|
|
136
|
-
surface, and gates on the daemon health shape.
|
|
137
|
-
|
|
138
|
-
read the legacy shape.
|
|
136
|
+
surface, and gates on the daemon health shape. All operator profiles now
|
|
137
|
+
run `@atrib/daemon`; the topology gate validates the daemon shape.
|
|
139
138
|
- **Deprecated session flags.** `--session-idle-ms` and
|
|
140
139
|
`ATRIB_PRIMITIVES_SESSION_IDLE_MS` are accepted and ignored with a
|
|
141
140
|
one-line stderr notice, never a fatal error. The stateless daemon has no
|
package/dist/index.js
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
// SPDX-License-Identifier: Apache-2.0
|
|
3
3
|
/**
|
|
4
|
-
* atribd: the local daemon for atrib's
|
|
4
|
+
* atribd: the local daemon for atrib's cognitive surface.
|
|
5
5
|
*
|
|
6
|
-
* One host-owned process mounts the
|
|
7
|
-
* and
|
|
8
|
-
*
|
|
6
|
+
* One host-owned process mounts the attest write home, the recall read
|
|
7
|
+
* home, and summarize in process and serves the seventeen-tool alias-window
|
|
8
|
+
* union (fifteen legacy names plus the attest and recall verbs) as thin
|
|
9
|
+
* aliases over two internal handlers (write, read). Transports: stateless Streamable HTTP (the
|
|
9
10
|
* recommended daemon topology), direct stdio (in-process), and a
|
|
10
11
|
* stdio-to-HTTP proxy shim for startup-spawn harnesses.
|
|
11
12
|
*
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atrib/daemon",
|
|
3
|
-
"version": "0.2.
|
|
4
|
-
"description": "Local daemon for atrib. Serves the
|
|
3
|
+
"version": "0.2.1",
|
|
4
|
+
"description": "Local daemon for atrib. Serves the attest/recall verbs plus the legacy alias tools from one stateless-native process over Streamable HTTP or stdio.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"atrib",
|
|
7
7
|
"mcp",
|
|
@@ -41,9 +41,9 @@
|
|
|
41
41
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
42
42
|
"@atrib/attest": "0.1.0",
|
|
43
43
|
"@atrib/mcp": "0.21.0",
|
|
44
|
-
"@atrib/recall": "
|
|
45
|
-
"@atrib/
|
|
46
|
-
"@atrib/
|
|
44
|
+
"@atrib/recall": "2.0.0",
|
|
45
|
+
"@atrib/summarize": "0.4.23",
|
|
46
|
+
"@atrib/verify": "0.10.0"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
49
|
"@types/node": "^25.9.3",
|