@lucern/sdk 1.0.14 → 1.0.16
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/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,12 @@ All notable changes to `@lucern/sdk` will be documented in this file.
|
|
|
5
5
|
## [Unreleased]
|
|
6
6
|
- No unreleased changes yet.
|
|
7
7
|
|
|
8
|
+
## [1.0.16] - 2026-06-01
|
|
9
|
+
- Release notes pending.
|
|
10
|
+
|
|
11
|
+
## [1.0.15] - 2026-06-01
|
|
12
|
+
- Release notes pending.
|
|
13
|
+
|
|
8
14
|
## [1.0.14] - 2026-06-01
|
|
9
15
|
- Release notes pending.
|
|
10
16
|
|
package/dist/contextTypes.d.ts
CHANGED
|
@@ -29,6 +29,13 @@ export type CompileContextInput = {
|
|
|
29
29
|
packWeightOverrides?: PackWeightOverride[];
|
|
30
30
|
tokenBudget?: number;
|
|
31
31
|
rankingProfile?: ContextRankingProfile;
|
|
32
|
+
/**
|
|
33
|
+
* Dimension-seeded compiles synthesize every scoped worktree but bound raw
|
|
34
|
+
* belief/question/evidence enrichment to a ranked carrier-topic sample.
|
|
35
|
+
* Raise this, up to the hosted maximum, when callers need denser raw
|
|
36
|
+
* enrichment in the returned pack.
|
|
37
|
+
*/
|
|
38
|
+
contentTopicLimit?: number;
|
|
32
39
|
};
|
|
33
40
|
export type PublicContextBelief = {
|
|
34
41
|
beliefId: string;
|
|
@@ -475,6 +475,12 @@ export type ContextPackRequestV1 = {
|
|
|
475
475
|
sessionId?: string;
|
|
476
476
|
/** Pack weight overrides from domain pack binding (RS-2). */
|
|
477
477
|
packWeightOverrides?: PackWeightOverride[];
|
|
478
|
+
/**
|
|
479
|
+
* Maximum carrier topics to enrich with raw belief/question/evidence rows for
|
|
480
|
+
* explicit dimension-seeded compiles. The full dimension is still synthesized
|
|
481
|
+
* through worktrees and receipts; this only bounds raw content fan-out.
|
|
482
|
+
*/
|
|
483
|
+
contentTopicLimit?: number;
|
|
478
484
|
};
|
|
479
485
|
/**
|
|
480
486
|
* Question statuses that are considered "resolved" (not open).
|
package/dist/version.d.ts
CHANGED
package/dist/version.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lucern/sdk",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.16",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -113,10 +113,10 @@
|
|
|
113
113
|
"typecheck": "tsc --project tsconfig.typecheck.json --noEmit"
|
|
114
114
|
},
|
|
115
115
|
"dependencies": {
|
|
116
|
-
"@lucern/contracts": "1.0.
|
|
117
|
-
"@lucern/reasoning-kernel": "1.0.
|
|
118
|
-
"@lucern/secrets": "1.0.
|
|
119
|
-
"@lucern/transport-core": "1.0.
|
|
116
|
+
"@lucern/contracts": "1.0.16",
|
|
117
|
+
"@lucern/reasoning-kernel": "1.0.16",
|
|
118
|
+
"@lucern/secrets": "1.0.16",
|
|
119
|
+
"@lucern/transport-core": "1.0.16",
|
|
120
120
|
"effect": "^3.21.2",
|
|
121
121
|
"zod": "^3.25.76"
|
|
122
122
|
},
|