@lucern/contracts 1.0.12 → 1.0.14
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 +7 -0
- package/dist/function-registry/beliefs.js +48 -11
- package/dist/function-registry/beliefs.js.map +1 -1
- package/dist/function-registry/coding.js +46 -9
- package/dist/function-registry/coding.js.map +1 -1
- package/dist/function-registry/context.js +46 -9
- package/dist/function-registry/context.js.map +1 -1
- package/dist/function-registry/contracts.js +46 -9
- package/dist/function-registry/contracts.js.map +1 -1
- package/dist/function-registry/coordination.js +46 -9
- package/dist/function-registry/coordination.js.map +1 -1
- package/dist/function-registry/edges.js +46 -9
- package/dist/function-registry/edges.js.map +1 -1
- package/dist/function-registry/evidence.js +227 -25
- package/dist/function-registry/evidence.js.map +1 -1
- package/dist/function-registry/graph.js +46 -9
- package/dist/function-registry/graph.js.map +1 -1
- package/dist/function-registry/helpers.js +46 -9
- package/dist/function-registry/helpers.js.map +1 -1
- package/dist/function-registry/identity.js +46 -9
- package/dist/function-registry/identity.js.map +1 -1
- package/dist/function-registry/index.js +46 -9
- package/dist/function-registry/index.js.map +1 -1
- package/dist/function-registry/judgments.js +46 -9
- package/dist/function-registry/judgments.js.map +1 -1
- package/dist/function-registry/legacy.js +46 -9
- package/dist/function-registry/legacy.js.map +1 -1
- package/dist/function-registry/lenses.js +46 -9
- package/dist/function-registry/lenses.js.map +1 -1
- package/dist/function-registry/manifest.d.ts +10 -4
- package/dist/function-registry/manifest.js +13 -1
- package/dist/function-registry/manifest.js.map +1 -1
- package/dist/function-registry/nodes.js +46 -9
- package/dist/function-registry/nodes.js.map +1 -1
- package/dist/function-registry/ontologies.js +46 -9
- package/dist/function-registry/ontologies.js.map +1 -1
- package/dist/function-registry/pipeline.js +46 -9
- package/dist/function-registry/pipeline.js.map +1 -1
- package/dist/function-registry/questions.js +46 -9
- package/dist/function-registry/questions.js.map +1 -1
- package/dist/function-registry/tasks.js +46 -9
- package/dist/function-registry/tasks.js.map +1 -1
- package/dist/function-registry/topics.js +46 -9
- package/dist/function-registry/topics.js.map +1 -1
- package/dist/function-registry/worktrees.js +46 -9
- package/dist/function-registry/worktrees.js.map +1 -1
- package/dist/index.js +160 -16
- package/dist/index.js.map +1 -1
- package/dist/manifests/invariants/index.js +24 -5
- package/dist/manifests/invariants/index.js.map +1 -1
- package/dist/manifests/invariants/inv-1-beliefs-append-only.js +24 -5
- package/dist/manifests/invariants/inv-1-beliefs-append-only.js.map +1 -1
- package/dist/projections/check-convex-args-shape.js +127 -8
- package/dist/projections/check-convex-args-shape.js.map +1 -1
- package/dist/projections/create-evidence.projection.d.ts +168 -0
- package/dist/projections/create-evidence.projection.js +127 -8
- package/dist/projections/create-evidence.projection.js.map +1 -1
- package/dist/projections/index.d.ts +28 -0
- package/dist/projections/index.js +127 -8
- package/dist/projections/index.js.map +1 -1
- package/dist/proof-attestation.json +1 -1
- package/dist/sdk-methods.contract.d.ts +3 -2
- package/dist/sdk-tools.contract.js +33 -8
- package/dist/sdk-tools.contract.js.map +1 -1
- package/dist/sdk-tools.contract.registry.js +33 -8
- package/dist/sdk-tools.contract.registry.js.map +1 -1
- package/dist/sdk-tools.contract.values.js +33 -8
- package/dist/sdk-tools.contract.values.js.map +1 -1
- package/dist/tool-contracts.context-orientation.js +2 -1
- package/dist/tool-contracts.context-orientation.js.map +1 -1
- package/dist/tool-contracts.intelligence-evidence.js +26 -4
- package/dist/tool-contracts.intelligence-evidence.js.map +1 -1
- package/dist/tool-contracts.js +33 -8
- package/dist/tool-contracts.js.map +1 -1
- package/dist/tool-contracts.lifecycle.js +2 -2
- package/dist/tool-contracts.lifecycle.js.map +1 -1
- package/dist/tool-contracts.questions-listing.js +3 -1
- package/dist/tool-contracts.questions-listing.js.map +1 -1
- package/dist/tool-contracts.values.js +33 -8
- package/dist/tool-contracts.values.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// src/tool-contracts.lifecycle.ts
|
|
2
2
|
var CREATE_BELIEF = {
|
|
3
3
|
name: "create_belief",
|
|
4
|
-
description: "Commit a new belief (knowledge unit) to the reasoning graph. Like `git commit` \u2014 creates an atomic, traceable knowledge object with a prior. Creation stores the vacuous opinion `(0, 0, 1, a)`;
|
|
4
|
+
description: "Commit a new belief (knowledge unit) to the reasoning graph. Like `git commit` \u2014 creates an atomic, traceable knowledge object with a prior. Creation stores the vacuous opinion `(0, 0, 1, a)`; attach supporting or contradicting evidence with create_evidence or link_evidence_to_belief to record evidential updates.",
|
|
5
5
|
parameters: {
|
|
6
6
|
canonicalText: {
|
|
7
7
|
type: "string",
|
|
@@ -87,7 +87,7 @@ var REFINE_BELIEF = {
|
|
|
87
87
|
};
|
|
88
88
|
var MODULATE_CONFIDENCE = {
|
|
89
89
|
name: "modulate_confidence",
|
|
90
|
-
description: "
|
|
90
|
+
description: "Internal-only subjective-logic ledger append. Like `git commit` to the credence log for the scoring engine \u2014 never an operator-facing way to assert confidence. Agents, SDK callers, CLI users, and MCP clients must instead create or link evidence with `evidenceRelation: supports|contradicts`; the kernel derives the next opinion from that evidence. This compatibility primitive is reserved for governed system scoring paths that already hold a full subjective-logic tuple and truth-bearing provenance.",
|
|
91
91
|
parameters: {
|
|
92
92
|
nodeId: { type: "string", description: "The belief to score" },
|
|
93
93
|
belief: {
|
|
@@ -1695,10 +1695,11 @@ var LUCERN_ORIENT = {
|
|
|
1695
1695
|
workflow: "array - recommended branch -> investigate -> prove gate -> merge workflow",
|
|
1696
1696
|
grammarMap: "array - primitive-to-git-analogy map for topics, campaigns, worktrees, beliefs, questions, evidence, edges, contradictions, and gates",
|
|
1697
1697
|
firstMoves: "array - recommended first tools for a cold-start agent",
|
|
1698
|
-
receiptRules: "array - how to interpret candidateCounts, broadening, coverageWarning, and noDefaultGlobalScan",
|
|
1698
|
+
receiptRules: "array - how to interpret candidateCounts, broadening, coverageWarning, narrativeCoverage, synthesisLints, and noDefaultGlobalScan",
|
|
1699
1699
|
safetyRules: "array - mutation and completion rules that preserve reasoning lineage",
|
|
1700
1700
|
toolMap: "array | undefined - situation-to-tool routing map when requested",
|
|
1701
1701
|
examples: "array | undefined - concrete tool-call examples when requested",
|
|
1702
|
+
futureCapabilities: "array | undefined - exemplar, gauntlet, trace-corpus, and native-model-training capabilities when requested",
|
|
1702
1703
|
suggestedNextCalls: "array - safe next tool calls for the current situation"
|
|
1703
1704
|
}
|
|
1704
1705
|
},
|
|
@@ -1861,7 +1862,7 @@ var SEARCH_EVIDENCE = {
|
|
|
1861
1862
|
};
|
|
1862
1863
|
var CREATE_EVIDENCE = {
|
|
1863
1864
|
name: "create_evidence",
|
|
1864
|
-
description: "Commit evidence to the reasoning graph. Like `git commit` \u2014 creates a traceable evidence record with canonical public IDs. Optionally links the evidence to a belief or question in the same operation.",
|
|
1865
|
+
description: "Commit evidence to the reasoning graph. Like `git commit` \u2014 creates a traceable evidence record with canonical public IDs. Optionally links the evidence to a belief or question in the same operation. When evidence bears on beliefs, state whether it supports or contradicts; SL confidence is derived from these evidence relations.",
|
|
1865
1866
|
parameters: {
|
|
1866
1867
|
topicId: { type: "string", description: "Topic scope" },
|
|
1867
1868
|
text: { type: "string", description: "Canonical evidence text" },
|
|
@@ -1872,7 +1873,20 @@ var CREATE_EVIDENCE = {
|
|
|
1872
1873
|
},
|
|
1873
1874
|
weight: {
|
|
1874
1875
|
type: "number",
|
|
1875
|
-
description: "
|
|
1876
|
+
description: "Optional support weight: -1.0 (contradicts) to +1.0 (supports). If omitted, evidenceRelation + confidence determine the weight."
|
|
1877
|
+
},
|
|
1878
|
+
evidenceRelation: {
|
|
1879
|
+
type: "string",
|
|
1880
|
+
enum: ["supports", "contradicts"],
|
|
1881
|
+
description: "Canonical relation to targetId/linkedBeliefNodeId. Prefer this over relying on signed weight inference."
|
|
1882
|
+
},
|
|
1883
|
+
confidence: {
|
|
1884
|
+
type: "number",
|
|
1885
|
+
description: "Confidence in the evidence relation, 0.0 to 1.0"
|
|
1886
|
+
},
|
|
1887
|
+
beliefRelations: {
|
|
1888
|
+
type: "array",
|
|
1889
|
+
description: "Optional additional belief relations: [{ beliefId|beliefNodeId|targetId, evidenceRelation|relation, confidence?, weight?, rationale? }]. Use one evidence node with multiple relations when the same fact supports or contradicts several beliefs."
|
|
1876
1890
|
},
|
|
1877
1891
|
metadata: {
|
|
1878
1892
|
type: "object",
|
|
@@ -1982,7 +1996,7 @@ var LINK_EVIDENCE = {
|
|
|
1982
1996
|
};
|
|
1983
1997
|
var LINK_EVIDENCE_TO_BELIEF = {
|
|
1984
1998
|
name: "link_evidence_to_belief",
|
|
1985
|
-
description: "Link evidence to a belief with a support weight. Like `git add` \u2014 stages evidence in support of (or against) a belief. The weight ranges from -1.0 (strongly contradicts) to +1.0 (strongly supports).",
|
|
1999
|
+
description: "Link evidence to a belief with a support weight. Like `git add` \u2014 stages evidence in support of (or against) a belief. The weight ranges from -1.0 (strongly contradicts) to +1.0 (strongly supports). This relation appends to the SL confidence ledger; do not hand-write confidence separately.",
|
|
1986
2000
|
parameters: {
|
|
1987
2001
|
evidenceId: { type: "string", description: "The evidence node ID" },
|
|
1988
2002
|
beliefId: { type: "string", description: "The belief node ID" },
|
|
@@ -1990,9 +2004,18 @@ var LINK_EVIDENCE_TO_BELIEF = {
|
|
|
1990
2004
|
type: "number",
|
|
1991
2005
|
description: "Support weight: -1.0 (contradicts) to +1.0 (supports)"
|
|
1992
2006
|
},
|
|
2007
|
+
evidenceRelation: {
|
|
2008
|
+
type: "string",
|
|
2009
|
+
enum: ["supports", "contradicts"],
|
|
2010
|
+
description: "Canonical semantic relation. If omitted, the sign of weight is used."
|
|
2011
|
+
},
|
|
2012
|
+
confidence: {
|
|
2013
|
+
type: "number",
|
|
2014
|
+
description: "Confidence in this evidence-to-belief relation, 0.0 to 1.0"
|
|
2015
|
+
},
|
|
1993
2016
|
rationale: { type: "string", description: "Why this evidence is relevant" }
|
|
1994
2017
|
},
|
|
1995
|
-
required: ["evidenceId", "beliefId"
|
|
2018
|
+
required: ["evidenceId", "beliefId"],
|
|
1996
2019
|
response: {
|
|
1997
2020
|
description: "The created edge linking evidence to belief",
|
|
1998
2021
|
fields: {
|
|
@@ -2820,7 +2843,9 @@ var COMPILE_CONTEXT = {
|
|
|
2820
2843
|
recentEvidence: "array \u2014 recent evidence ranked for this query",
|
|
2821
2844
|
contradictions: "array \u2014 unresolved contradiction records",
|
|
2822
2845
|
relatedEntities: "array | undefined \u2014 ranked ontological entities in scope",
|
|
2823
|
-
contextNarrative: "array \u2014
|
|
2846
|
+
contextNarrative: "array \u2014 ordered synthesis blocks with kind/text, starting with executive_summary and canonical narrative blocks before raw objects",
|
|
2847
|
+
retrievalReceipt: "object \u2014 candidateCounts, coverageWarning, narrativeCoverage, synthesisLints, and suggestedNextActions",
|
|
2848
|
+
narrativeCoverage: "object \u2014 recordsSynthesized, recordsNamed, recordsOmitted, and blocksEmitted for the narrative",
|
|
2824
2849
|
injectionPolicy: "object \u2014 token-budgeted section selections",
|
|
2825
2850
|
diagnostics: "object \u2014 scoring and utilization telemetry"
|
|
2826
2851
|
}
|