@lucern/contracts 0.3.0-alpha.7 → 0.3.0-alpha.8
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/context-pack.contract.d.ts +5 -3
- package/dist/context-pack.contract.js.map +1 -1
- package/dist/function-registry/beliefs.js +4 -4
- package/dist/function-registry/beliefs.js.map +1 -1
- package/dist/function-registry/coding.js +4 -4
- package/dist/function-registry/coding.js.map +1 -1
- package/dist/function-registry/context.js +5 -5
- package/dist/function-registry/context.js.map +1 -1
- package/dist/function-registry/contracts.js +4 -4
- package/dist/function-registry/contracts.js.map +1 -1
- package/dist/function-registry/coordination.js +4 -4
- package/dist/function-registry/coordination.js.map +1 -1
- package/dist/function-registry/edges.js +4 -4
- package/dist/function-registry/edges.js.map +1 -1
- package/dist/function-registry/evidence.js +4 -4
- package/dist/function-registry/evidence.js.map +1 -1
- package/dist/function-registry/graph.js +4 -4
- package/dist/function-registry/graph.js.map +1 -1
- package/dist/function-registry/helpers.js +4 -4
- package/dist/function-registry/helpers.js.map +1 -1
- package/dist/function-registry/identity.js +4 -4
- package/dist/function-registry/identity.js.map +1 -1
- package/dist/function-registry/index.js +4 -4
- package/dist/function-registry/index.js.map +1 -1
- package/dist/function-registry/judgments.js +4 -4
- package/dist/function-registry/judgments.js.map +1 -1
- package/dist/function-registry/legacy.js +4 -4
- package/dist/function-registry/legacy.js.map +1 -1
- package/dist/function-registry/lenses.js +4 -4
- package/dist/function-registry/lenses.js.map +1 -1
- package/dist/function-registry/ontologies.js +4 -4
- package/dist/function-registry/ontologies.js.map +1 -1
- package/dist/function-registry/pipeline.js +4 -4
- package/dist/function-registry/pipeline.js.map +1 -1
- package/dist/function-registry/questions.js +4 -4
- package/dist/function-registry/questions.js.map +1 -1
- package/dist/function-registry/tasks.js +4 -4
- package/dist/function-registry/tasks.js.map +1 -1
- package/dist/function-registry/topics.js +4 -4
- package/dist/function-registry/topics.js.map +1 -1
- package/dist/function-registry/worktrees.js +4 -4
- package/dist/function-registry/worktrees.js.map +1 -1
- package/dist/index.js +6 -6
- package/dist/index.js.map +1 -1
- package/dist/sdk-tools.contract.js +4 -4
- package/dist/sdk-tools.contract.js.map +1 -1
- package/dist/tenant-bootstrap-seed.contract.d.ts +4 -4
- package/dist/tenant-bootstrap-seed.contract.js +2 -2
- package/dist/tenant-bootstrap-seed.contract.js.map +1 -1
- package/dist/tool-contracts.js +4 -4
- package/dist/tool-contracts.js.map +1 -1
- package/package.json +1 -1
|
@@ -2085,15 +2085,15 @@ var IDENTITY_WHOAMI = {
|
|
|
2085
2085
|
};
|
|
2086
2086
|
var COMPILE_CONTEXT = {
|
|
2087
2087
|
name: "compile_context",
|
|
2088
|
-
description: "Compile a focused reasoning context
|
|
2088
|
+
description: "Compile a focused reasoning context. If topicId is omitted, Lucern resolves the best topic from the query. Like `git log --graph --decorate` for the reasoning substrate \u2014 returns the canonical Pillar 3 context pack through the public API shape.",
|
|
2089
2089
|
parameters: {
|
|
2090
2090
|
topicId: {
|
|
2091
2091
|
type: "string",
|
|
2092
|
-
description: "
|
|
2092
|
+
description: "Optional topic scope ID. Omit to resolve the topic from query."
|
|
2093
2093
|
},
|
|
2094
2094
|
query: {
|
|
2095
2095
|
type: "string",
|
|
2096
|
-
description: "
|
|
2096
|
+
description: "Focus query used to resolve the topic and rank context items. Required when topicId is omitted."
|
|
2097
2097
|
},
|
|
2098
2098
|
budget: {
|
|
2099
2099
|
type: "number",
|
|
@@ -2117,7 +2117,7 @@ var COMPILE_CONTEXT = {
|
|
|
2117
2117
|
description: "Include related ontological entities in the compiled result"
|
|
2118
2118
|
}
|
|
2119
2119
|
},
|
|
2120
|
-
required: [
|
|
2120
|
+
required: [],
|
|
2121
2121
|
response: {
|
|
2122
2122
|
description: "Compiled context pack for the requested topic",
|
|
2123
2123
|
fields: {
|
|
@@ -4594,7 +4594,7 @@ var contextContracts = [
|
|
|
4594
4594
|
path: "/context/compile",
|
|
4595
4595
|
sdkNamespace: "context",
|
|
4596
4596
|
sdkMethod: "compileContext",
|
|
4597
|
-
summary: "Compile a focused reasoning context
|
|
4597
|
+
summary: "Compile a focused reasoning context, resolving topic from query when omitted.",
|
|
4598
4598
|
convex: {
|
|
4599
4599
|
module: "contextCompiler",
|
|
4600
4600
|
functionName: "compile",
|