@oscharko-dev/keiko-server 0.2.5 → 0.2.7
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/.tsbuildinfo +1 -1
- package/dist/chat-compaction-evidence.d.ts +12 -0
- package/dist/chat-compaction-evidence.d.ts.map +1 -0
- package/dist/chat-compaction-evidence.js +46 -0
- package/dist/chat-handlers.d.ts +16 -0
- package/dist/chat-handlers.d.ts.map +1 -1
- package/dist/chat-handlers.js +78 -28
- package/dist/chat-stream-handlers.d.ts.map +1 -1
- package/dist/chat-stream-handlers.js +13 -1
- package/dist/conversation-compaction.d.ts +12 -0
- package/dist/conversation-compaction.d.ts.map +1 -0
- package/dist/conversation-compaction.js +102 -0
- package/dist/deps.d.ts +2 -0
- package/dist/deps.d.ts.map +1 -1
- package/dist/deps.js +3 -2
- package/dist/grounded-context-diagnostics.d.ts +5 -0
- package/dist/grounded-context-diagnostics.d.ts.map +1 -0
- package/dist/grounded-context-diagnostics.js +77 -0
- package/dist/grounded-orchestrator.d.ts +2 -0
- package/dist/grounded-orchestrator.d.ts.map +1 -1
- package/dist/grounded-orchestrator.js +122 -53
- package/dist/grounded-qa-hybrid.d.ts.map +1 -1
- package/dist/grounded-qa-hybrid.js +5 -4
- package/dist/grounded-qa-multi-source.d.ts.map +1 -1
- package/dist/grounded-qa-multi-source.js +48 -2
- package/dist/grounded-qa.d.ts +4 -0
- package/dist/grounded-qa.d.ts.map +1 -1
- package/dist/grounded-qa.js +35 -2
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +5 -0
- package/package.json +19 -19
package/dist/index.js
CHANGED
|
@@ -27,6 +27,11 @@ export { exportMemoryDiagnostics, } from "./memory-diagnostics.js";
|
|
|
27
27
|
export { createMemoryEmbedder, selectMemoryEmbeddingModelId, } from "./memory-embedding.js";
|
|
28
28
|
export { buildTerminalEvidenceEntry, appendTerminalEvidence, } from "./terminal-evidence.js";
|
|
29
29
|
export { handleFilesContent, listFilesDirectories, readFilesContent, readFilesPreview, readFilesTree, writeFilesContent, } from "./files.js";
|
|
30
|
+
// PR4-W4 (ADR-0055) — additive exports so the deterministic context-quality gate
|
|
31
|
+
// (scripts/check-context-quality.mjs) can drive the REAL chat history-compaction splice end-to-end.
|
|
32
|
+
// Behavior-preserving: these names already exist on their modules; only the barrel surface widens.
|
|
33
|
+
export { conversationForGateway, MAX_CONTEXT_MESSAGES, } from "./chat-handlers.js";
|
|
34
|
+
export { conversationForGatewayWithCompaction, } from "./conversation-compaction.js";
|
|
30
35
|
// Epic #1307 / Issue #1314 — Prompt Enhancer governed surface. The BFF route handler and the reusable,
|
|
31
36
|
// deterministic orchestration the CLI command (`keiko prompt-enhancer`) drives so both surfaces produce
|
|
32
37
|
// byte-identical enhancements (AC1). Routed through the Model Gateway; never dispatches a model.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oscharko-dev/keiko-server",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.7",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"description": "Internal server package: local loopback BFF runtime (HTTP/SSE/WebSocket router, CSP, host check, CSRF gate, terminal, browser, files, run engine, SQLite-backed UI store) that mediates the browser presentation tier and the Node-side domain packages (ADR-0019). Not published independently.",
|
|
@@ -29,24 +29,24 @@
|
|
|
29
29
|
"node": ">=22"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@oscharko-dev/keiko-contracts": "0.2.
|
|
33
|
-
"@oscharko-dev/keiko-security": "0.2.
|
|
34
|
-
"@oscharko-dev/keiko-model-gateway": "0.2.
|
|
35
|
-
"@oscharko-dev/keiko-quality-intelligence": "0.2.
|
|
36
|
-
"@oscharko-dev/keiko-local-knowledge": "0.2.
|
|
37
|
-
"@oscharko-dev/keiko-workspace": "0.2.
|
|
38
|
-
"@oscharko-dev/keiko-sandbox": "0.2.
|
|
39
|
-
"@oscharko-dev/keiko-tools": "0.2.
|
|
40
|
-
"@oscharko-dev/keiko-evidence": "0.2.
|
|
41
|
-
"@oscharko-dev/keiko-verification": "0.2.
|
|
42
|
-
"@oscharko-dev/keiko-harness": "0.2.
|
|
43
|
-
"@oscharko-dev/keiko-sdk": "0.2.
|
|
44
|
-
"@oscharko-dev/keiko-workflows": "0.2.
|
|
45
|
-
"@oscharko-dev/keiko-memory-vault": "0.2.
|
|
46
|
-
"@oscharko-dev/keiko-memory-governance": "0.2.
|
|
47
|
-
"@oscharko-dev/keiko-memory-retrieval": "0.2.
|
|
48
|
-
"@oscharko-dev/keiko-memory-capture": "0.2.
|
|
49
|
-
"@oscharko-dev/keiko-memory-consolidation": "0.2.
|
|
32
|
+
"@oscharko-dev/keiko-contracts": "0.2.7",
|
|
33
|
+
"@oscharko-dev/keiko-security": "0.2.7",
|
|
34
|
+
"@oscharko-dev/keiko-model-gateway": "0.2.7",
|
|
35
|
+
"@oscharko-dev/keiko-quality-intelligence": "0.2.7",
|
|
36
|
+
"@oscharko-dev/keiko-local-knowledge": "0.2.7",
|
|
37
|
+
"@oscharko-dev/keiko-workspace": "0.2.7",
|
|
38
|
+
"@oscharko-dev/keiko-sandbox": "0.2.7",
|
|
39
|
+
"@oscharko-dev/keiko-tools": "0.2.7",
|
|
40
|
+
"@oscharko-dev/keiko-evidence": "0.2.7",
|
|
41
|
+
"@oscharko-dev/keiko-verification": "0.2.7",
|
|
42
|
+
"@oscharko-dev/keiko-harness": "0.2.7",
|
|
43
|
+
"@oscharko-dev/keiko-sdk": "0.2.7",
|
|
44
|
+
"@oscharko-dev/keiko-workflows": "0.2.7",
|
|
45
|
+
"@oscharko-dev/keiko-memory-vault": "0.2.7",
|
|
46
|
+
"@oscharko-dev/keiko-memory-governance": "0.2.7",
|
|
47
|
+
"@oscharko-dev/keiko-memory-retrieval": "0.2.7",
|
|
48
|
+
"@oscharko-dev/keiko-memory-capture": "0.2.7",
|
|
49
|
+
"@oscharko-dev/keiko-memory-consolidation": "0.2.7",
|
|
50
50
|
"typescript": "^6.0.3"
|
|
51
51
|
}
|
|
52
52
|
}
|