signetai 0.164.2 → 0.164.4
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/mcp-stdio.js +19 -9
- package/native-manifest.json +12 -12
- package/package.json +6 -6
package/dist/mcp-stdio.js
CHANGED
|
@@ -36538,7 +36538,8 @@ function readEpisodicMemory(db, agentId, id) {
|
|
|
36538
36538
|
project: row.project,
|
|
36539
36539
|
harness: readNonEmptyTrimmed(row.who),
|
|
36540
36540
|
capturedAt: row.created_at,
|
|
36541
|
-
evidenceMeta: row.evidence_meta
|
|
36541
|
+
evidenceMeta: row.evidence_meta,
|
|
36542
|
+
completed: true
|
|
36542
36543
|
};
|
|
36543
36544
|
}
|
|
36544
36545
|
function readEpisodicArtifact(db, agentId, id) {
|
|
@@ -36571,16 +36572,22 @@ function readEpisodicArtifact(db, agentId, id) {
|
|
|
36571
36572
|
project: row.project,
|
|
36572
36573
|
harness: row.harness,
|
|
36573
36574
|
capturedAt: row.captured_at ?? row.updated_at,
|
|
36574
|
-
evidenceMeta: null
|
|
36575
|
+
evidenceMeta: null,
|
|
36576
|
+
completed: true
|
|
36575
36577
|
};
|
|
36576
36578
|
}
|
|
36577
36579
|
function readEpisodicTranscript(db, agentId, id) {
|
|
36578
36580
|
const ids = sourceIdCandidates(id);
|
|
36579
36581
|
const placeholders = ids.map(() => "?").join(", ");
|
|
36580
|
-
const row = db.prepare(`SELECT session_key, content, harness, project, created_at, updated_at
|
|
36581
|
-
|
|
36582
|
-
|
|
36583
|
-
|
|
36582
|
+
const row = db.prepare(`SELECT st.session_key, st.content, st.harness, st.project, st.created_at, st.updated_at,
|
|
36583
|
+
EXISTS (
|
|
36584
|
+
SELECT 1 FROM summary_jobs AS sj
|
|
36585
|
+
WHERE sj.agent_id = st.agent_id AND sj.session_key = st.session_key
|
|
36586
|
+
AND sj.trigger IN ('session_end', 'ttl_expired')
|
|
36587
|
+
) AS completed
|
|
36588
|
+
FROM session_transcripts AS st
|
|
36589
|
+
WHERE st.agent_id = ? AND st.session_key IN (${placeholders})
|
|
36590
|
+
ORDER BY st.updated_at DESC, st.created_at DESC
|
|
36584
36591
|
LIMIT 1`).get(agentId, ...ids);
|
|
36585
36592
|
if (!row)
|
|
36586
36593
|
return null;
|
|
@@ -36595,7 +36602,8 @@ function readEpisodicTranscript(db, agentId, id) {
|
|
|
36595
36602
|
project: row.project,
|
|
36596
36603
|
harness: row.harness,
|
|
36597
36604
|
capturedAt: row.updated_at ?? row.created_at,
|
|
36598
|
-
evidenceMeta: null
|
|
36605
|
+
evidenceMeta: null,
|
|
36606
|
+
completed: row.completed === 1
|
|
36599
36607
|
};
|
|
36600
36608
|
}
|
|
36601
36609
|
function readEpisodicSummary(db, agentId, id) {
|
|
@@ -36622,7 +36630,8 @@ function readEpisodicSummary(db, agentId, id) {
|
|
|
36622
36630
|
project: row.project,
|
|
36623
36631
|
harness: row.harness,
|
|
36624
36632
|
capturedAt: row.latest_at,
|
|
36625
|
-
evidenceMeta: null
|
|
36633
|
+
evidenceMeta: null,
|
|
36634
|
+
completed: true
|
|
36626
36635
|
};
|
|
36627
36636
|
}
|
|
36628
36637
|
function readEpisodicSource(db, options) {
|
|
@@ -52960,6 +52969,7 @@ function projectEvidenceItem(source, content, contentOffset, contentLength) {
|
|
|
52960
52969
|
contentTruncated: contentOffset > 0 || contentOffset + content.length < contentLength,
|
|
52961
52970
|
contentHasPrevious: contentOffset > 0,
|
|
52962
52971
|
contentHasNext: contentOffset + content.length < contentLength,
|
|
52972
|
+
completed: source.completed,
|
|
52963
52973
|
sourceKind: source.sourceKind,
|
|
52964
52974
|
sourceId: source.sourceId,
|
|
52965
52975
|
sourcePath: source.sourcePath,
|
|
@@ -53170,7 +53180,7 @@ function createDreamingCapabilities(params) {
|
|
|
53170
53180
|
}
|
|
53171
53181
|
return { ok: true, result: getOntologyLinkEvidence(accessor, { agentId: scopeId, id: ref3.id }) };
|
|
53172
53182
|
}),
|
|
53173
|
-
capability("search_evidence", "Search episodic evidence", "Full-text search immutable episodic memories, artifacts, transcripts, and summaries in one agent scope. Results contain exact bounded excerpts of the rendered evidence with contentOffset/contentLength; use sourceRef for citations, which are validated against the complete canonical source. If contentTruncated is true, page exact fragments with the same sourceRef and chunkSize: start at offset=0 when contentHasPrevious is true, then use offset=contentOffset+content.length from the fragment just returned until contentHasNext is false. Omit the query to list the most recent sources (e.g. with since as a cutoff). Artifacts are deduped by content hash: content-identical files across vault paths collapse to one canonical entry.", true, exports_external.object({
|
|
53183
|
+
capability("search_evidence", "Search episodic evidence", "Full-text search immutable episodic memories, artifacts, transcripts, and summaries in one agent scope. Results contain exact bounded excerpts of the rendered evidence with contentOffset/contentLength; use sourceRef for citations, which are validated against the complete canonical source. Each record carries completed: memory, artifact, and summary records are settled captures (true); a transcript is true once a session-end summary job has been triggered for its session (the session ended), whether or not the summary itself landed, and false while the session is still running — do not file claims from a still-growing transcript, since its states may be contradicted by the session's end. If contentTruncated is true, page exact fragments with the same sourceRef and chunkSize: start at offset=0 when contentHasPrevious is true, then use offset=contentOffset+content.length from the fragment just returned until contentHasNext is false. Omit the query to list the most recent sources (e.g. with since as a cutoff). Artifacts are deduped by content hash: content-identical files across vault paths collapse to one canonical entry.", true, exports_external.object({
|
|
53174
53184
|
agentId: exports_external.string().min(1),
|
|
53175
53185
|
query: exports_external.string().optional(),
|
|
53176
53186
|
since: exports_external.string().optional(),
|
package/native-manifest.json
CHANGED
|
@@ -1,43 +1,43 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": 1,
|
|
3
|
-
"version": "0.164.
|
|
3
|
+
"version": "0.164.4",
|
|
4
4
|
"assets": [
|
|
5
5
|
{
|
|
6
6
|
"name": "signet-darwin-arm64",
|
|
7
7
|
"platform": "darwin-arm64",
|
|
8
|
-
"sha256": "
|
|
8
|
+
"sha256": "abbd69eccef51280c46829cb3e38eb61bdb879343df0a5dff4164d8317f7c070",
|
|
9
9
|
"size": 116912800
|
|
10
10
|
},
|
|
11
11
|
{
|
|
12
12
|
"name": "signet-darwin-x64",
|
|
13
13
|
"platform": "darwin-x64",
|
|
14
|
-
"sha256": "
|
|
14
|
+
"sha256": "055d857332bb87a719016723faffa58e74f58cc9183fc24f2c2f19207c5eb2f4",
|
|
15
15
|
"size": 121539136
|
|
16
16
|
},
|
|
17
17
|
{
|
|
18
18
|
"name": "signet-linux-arm64",
|
|
19
19
|
"platform": "linux-arm64",
|
|
20
|
-
"sha256": "
|
|
21
|
-
"size":
|
|
20
|
+
"sha256": "4e3b13e685a462475c65080692020de73527d30dccc86b9dfb8f9677ba6062df",
|
|
21
|
+
"size": 154151808
|
|
22
22
|
},
|
|
23
23
|
{
|
|
24
24
|
"name": "signet-linux-x64",
|
|
25
25
|
"platform": "linux-x64",
|
|
26
|
-
"sha256": "
|
|
27
|
-
"size":
|
|
26
|
+
"sha256": "691d75e564fd8fd4bea0a5639ef56ca167cf95313a260e7d7e80048dd3c00787",
|
|
27
|
+
"size": 154710793
|
|
28
28
|
},
|
|
29
29
|
{
|
|
30
30
|
"name": "signet-win32-x64.exe",
|
|
31
31
|
"platform": "win32-x64",
|
|
32
|
-
"sha256": "
|
|
33
|
-
"size":
|
|
32
|
+
"sha256": "03b1fcc14ccf1dd10bf85d8f023015f545ad9616c528fc02b37ca627dbb436ef",
|
|
33
|
+
"size": 170844160
|
|
34
34
|
}
|
|
35
35
|
],
|
|
36
36
|
"components": {
|
|
37
37
|
"connectors": {
|
|
38
|
-
"url": "signet-connectors-0.164.
|
|
39
|
-
"sha256": "
|
|
40
|
-
"size":
|
|
38
|
+
"url": "signet-connectors-0.164.4.tar.gz",
|
|
39
|
+
"sha256": "4dc3d1ff69b24c59d751c12df729edc1c6a2bea4a227401815aa602363afe972",
|
|
40
|
+
"size": 16156
|
|
41
41
|
}
|
|
42
42
|
}
|
|
43
43
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "signetai",
|
|
3
|
-
"version": "0.164.
|
|
3
|
+
"version": "0.164.4",
|
|
4
4
|
"description": "Signet native CLI installer wrapper",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -65,10 +65,10 @@
|
|
|
65
65
|
"access": "public"
|
|
66
66
|
},
|
|
67
67
|
"optionalDependencies": {
|
|
68
|
-
"signetai-darwin-arm64": "https://github.com/Signet-AI/signetai/releases/download/v0.164.
|
|
69
|
-
"signetai-darwin-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.164.
|
|
70
|
-
"signetai-linux-arm64": "https://github.com/Signet-AI/signetai/releases/download/v0.164.
|
|
71
|
-
"signetai-linux-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.164.
|
|
72
|
-
"signetai-win32-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.164.
|
|
68
|
+
"signetai-darwin-arm64": "https://github.com/Signet-AI/signetai/releases/download/v0.164.4/signetai-darwin-arm64-0.164.4.tgz",
|
|
69
|
+
"signetai-darwin-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.164.4/signetai-darwin-x64-0.164.4.tgz",
|
|
70
|
+
"signetai-linux-arm64": "https://github.com/Signet-AI/signetai/releases/download/v0.164.4/signetai-linux-arm64-0.164.4.tgz",
|
|
71
|
+
"signetai-linux-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.164.4/signetai-linux-x64-0.164.4.tgz",
|
|
72
|
+
"signetai-win32-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.164.4/signetai-win32-x64-0.164.4.tgz"
|
|
73
73
|
}
|
|
74
74
|
}
|