@atrib/annotate 0.2.18 → 0.2.20
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/dist/index.js +1 -1
- package/package.json +17 -3
package/dist/index.js
CHANGED
|
@@ -25,7 +25,7 @@ export const AnnotateInput = z.object({
|
|
|
25
25
|
annotates: z.string().regex(SHA256_REF_PATTERN).describe("'sha256:<64-hex>' record_hash this annotation describes per spec §1.2.7 / D058. " +
|
|
26
26
|
'REQUIRED. The target record can be any prior record (yours or another agent\'s).'),
|
|
27
27
|
importance: Importance.describe('Felt importance for future-self recall ranking. ' +
|
|
28
|
-
"'critical' (
|
|
28
|
+
"'critical' (decisions that shape future recall, identity claims), " +
|
|
29
29
|
"'high' (worth surfacing in default recall), " +
|
|
30
30
|
"'medium' (general signal), " +
|
|
31
31
|
"'low' (background noting), " +
|
package/package.json
CHANGED
|
@@ -1,7 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atrib/annotate",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.20",
|
|
4
4
|
"description": "MCP server for atrib. Lets agents mark a past record's importance and meaning. Adds an ANNOTATES graph edge so recall surfaces weighted annotations ahead of flat scans.",
|
|
5
|
+
"author": "atrib <hello@atrib.dev>",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"atrib",
|
|
8
|
+
"mcp",
|
|
9
|
+
"model-context-protocol",
|
|
10
|
+
"attribution",
|
|
11
|
+
"verifiable",
|
|
12
|
+
"agent",
|
|
13
|
+
"cognitive-primitive",
|
|
14
|
+
"annotation",
|
|
15
|
+
"recall",
|
|
16
|
+
"signed-records"
|
|
17
|
+
],
|
|
18
|
+
"homepage": "https://atrib.dev",
|
|
5
19
|
"license": "Apache-2.0",
|
|
6
20
|
"type": "module",
|
|
7
21
|
"main": "./dist/index.js",
|
|
@@ -11,8 +25,8 @@
|
|
|
11
25
|
"dependencies": {
|
|
12
26
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
13
27
|
"zod": "^3.25.76",
|
|
14
|
-
"@atrib/emit": "0.14.
|
|
15
|
-
"@atrib/mcp": "0.15.
|
|
28
|
+
"@atrib/emit": "0.14.11",
|
|
29
|
+
"@atrib/mcp": "0.15.1"
|
|
16
30
|
},
|
|
17
31
|
"devDependencies": {
|
|
18
32
|
"@types/node": "^25.9.1",
|