@lucern/events 1.0.12 → 1.0.13

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/webhooks.js CHANGED
@@ -546,7 +546,7 @@ var SEARCH_EVIDENCE = {
546
546
  };
547
547
  var CREATE_EVIDENCE = {
548
548
  name: "create_evidence",
549
- 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.",
549
+ 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.",
550
550
  parameters: {
551
551
  topicId: { type: "string", description: "Topic scope" },
552
552
  text: { type: "string", description: "Canonical evidence text" },
@@ -557,7 +557,20 @@ var CREATE_EVIDENCE = {
557
557
  },
558
558
  weight: {
559
559
  type: "number",
560
- description: "Support weight: -1.0 (contradicts) to +1.0 (supports)"
560
+ description: "Optional support weight: -1.0 (contradicts) to +1.0 (supports). If omitted, evidenceRelation + confidence determine the weight."
561
+ },
562
+ evidenceRelation: {
563
+ type: "string",
564
+ enum: ["supports", "contradicts"],
565
+ description: "Canonical relation to targetId/linkedBeliefNodeId. Prefer this over relying on signed weight inference."
566
+ },
567
+ confidence: {
568
+ type: "number",
569
+ description: "Confidence in the evidence relation, 0.0 to 1.0"
570
+ },
571
+ beliefRelations: {
572
+ type: "array",
573
+ 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."
561
574
  },
562
575
  metadata: {
563
576
  type: "object",
@@ -667,7 +680,7 @@ var LINK_EVIDENCE = {
667
680
  };
668
681
  var LINK_EVIDENCE_TO_BELIEF = {
669
682
  name: "link_evidence_to_belief",
670
- 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).",
683
+ 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.",
671
684
  parameters: {
672
685
  evidenceId: { type: "string", description: "The evidence node ID" },
673
686
  beliefId: { type: "string", description: "The belief node ID" },
@@ -675,9 +688,18 @@ var LINK_EVIDENCE_TO_BELIEF = {
675
688
  type: "number",
676
689
  description: "Support weight: -1.0 (contradicts) to +1.0 (supports)"
677
690
  },
691
+ evidenceRelation: {
692
+ type: "string",
693
+ enum: ["supports", "contradicts"],
694
+ description: "Canonical semantic relation. If omitted, the sign of weight is used."
695
+ },
696
+ confidence: {
697
+ type: "number",
698
+ description: "Confidence in this evidence-to-belief relation, 0.0 to 1.0"
699
+ },
678
700
  rationale: { type: "string", description: "Why this evidence is relevant" }
679
701
  },
680
- required: ["evidenceId", "beliefId", "weight"],
702
+ required: ["evidenceId", "beliefId"],
681
703
  response: {
682
704
  description: "The created edge linking evidence to belief",
683
705
  fields: {
@@ -695,7 +717,7 @@ var LINK_EVIDENCE_TO_BELIEF = {
695
717
  // ../contracts/src/tool-contracts.lifecycle.ts
696
718
  var CREATE_BELIEF = {
697
719
  name: "create_belief",
698
- 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)`; use modulate_confidence to record the first evidential update.",
720
+ 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.",
699
721
  parameters: {
700
722
  canonicalText: {
701
723
  type: "string",
@@ -781,7 +803,7 @@ var REFINE_BELIEF = {
781
803
  };
782
804
  var MODULATE_CONFIDENCE = {
783
805
  name: "modulate_confidence",
784
- description: "Record a confidence change for a belief. Like `git commit` to the credence log \u2014 an atomic, append-only write. Each modulation is a new entry in the history, not an overwrite. Scoring happens via merge; this tool records the individual data points. Pass the full subjective-logic tuple (`belief`, `disbelief`, `uncertainty`, `baseRate`) directly. If a caller only has a scalar probability, use `@lucern/sdk` helpers `opinionFromBaseRate`, `opinionFromDogmatic`, or `opinionFromProjected` to name the intended interpretation before calling this tool. Every modulation must cite a truth-bearing artifact: triggeringEvidenceId, triggeringQuestionId, triggeringAnswerId, triggeringContradictionId, or triggeringWorktreeId. Triggers: evidence_added, evidence_removed, contradiction_detected, contradiction_resolved, agent_assessment, worktree_outcome, worktree_completed, fusion, discount, deduction.",
806
+ 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.",
785
807
  parameters: {
786
808
  nodeId: { type: "string", description: "The belief to score" },
787
809
  belief: {
@@ -1471,10 +1493,11 @@ var LUCERN_ORIENT = {
1471
1493
  workflow: "array - recommended branch -> investigate -> prove gate -> merge workflow",
1472
1494
  grammarMap: "array - primitive-to-git-analogy map for topics, campaigns, worktrees, beliefs, questions, evidence, edges, contradictions, and gates",
1473
1495
  firstMoves: "array - recommended first tools for a cold-start agent",
1474
- receiptRules: "array - how to interpret candidateCounts, broadening, coverageWarning, and noDefaultGlobalScan",
1496
+ receiptRules: "array - how to interpret candidateCounts, broadening, coverageWarning, narrativeCoverage, synthesisLints, and noDefaultGlobalScan",
1475
1497
  safetyRules: "array - mutation and completion rules that preserve reasoning lineage",
1476
1498
  toolMap: "array | undefined - situation-to-tool routing map when requested",
1477
1499
  examples: "array | undefined - concrete tool-call examples when requested",
1500
+ futureCapabilities: "array | undefined - exemplar, gauntlet, trace-corpus, and native-model-training capabilities when requested",
1478
1501
  suggestedNextCalls: "array - safe next tool calls for the current situation"
1479
1502
  }
1480
1503
  },
@@ -4055,7 +4078,9 @@ var COMPILE_CONTEXT = {
4055
4078
  recentEvidence: "array \u2014 recent evidence ranked for this query",
4056
4079
  contradictions: "array \u2014 unresolved contradiction records",
4057
4080
  relatedEntities: "array | undefined \u2014 ranked ontological entities in scope",
4058
- contextNarrative: "array \u2014 guidance for prompt assembly",
4081
+ contextNarrative: "array \u2014 ordered synthesis blocks with kind/text, starting with executive_summary and canonical narrative blocks before raw objects",
4082
+ retrievalReceipt: "object \u2014 candidateCounts, coverageWarning, narrativeCoverage, synthesisLints, and suggestedNextActions",
4083
+ narrativeCoverage: "object \u2014 recordsSynthesized, recordsNamed, recordsOmitted, and blocksEmitted for the narrative",
4059
4084
  injectionPolicy: "object \u2014 token-budgeted section selections",
4060
4085
  diagnostics: "object \u2014 scoring and utilization telemetry"
4061
4086
  }
@@ -11555,6 +11580,23 @@ function defineProjection(def) {
11555
11580
 
11556
11581
  // ../contracts/src/projections/create-evidence.projection.ts
11557
11582
  var jsonRecordSchema = z.record(z.unknown());
11583
+ var evidenceRelationSchema = z.enum(["supports", "contradicts"]);
11584
+ var evidenceRelationAliasSchema = z.enum([
11585
+ "supports",
11586
+ "contradicts",
11587
+ "supporting",
11588
+ "contradicting"
11589
+ ]);
11590
+ var beliefRelationSchema = z.object({
11591
+ beliefId: z.string().optional(),
11592
+ beliefNodeId: z.string().optional(),
11593
+ targetId: z.string().optional(),
11594
+ relation: evidenceRelationAliasSchema.optional(),
11595
+ evidenceRelation: evidenceRelationSchema.optional(),
11596
+ confidence: z.number().optional(),
11597
+ weight: z.number().optional(),
11598
+ rationale: z.string().optional()
11599
+ });
11558
11600
  var createEvidenceInputSchemaBase = z.object({
11559
11601
  projectId: z.string().optional(),
11560
11602
  topicId: z.string().optional(),
@@ -11576,7 +11618,8 @@ var createEvidenceInputSchemaBase = z.object({
11576
11618
  targetId: z.string().optional(),
11577
11619
  targetNodeId: z.string().optional(),
11578
11620
  linkedBeliefNodeId: z.string().optional(),
11579
- evidenceRelation: z.enum(["supports", "contradicts"]).optional(),
11621
+ evidenceRelation: evidenceRelationSchema.optional(),
11622
+ beliefRelations: z.array(beliefRelationSchema).optional(),
11580
11623
  confidence: z.number().optional(),
11581
11624
  weight: z.number().optional(),
11582
11625
  reasoning: z.string().optional(),
@@ -11640,6 +11683,47 @@ function targetKind(targetId) {
11640
11683
  }
11641
11684
  return "unknown";
11642
11685
  }
11686
+ function normalizeRelation(value, weight) {
11687
+ if (value === "supports" || value === "supporting") {
11688
+ return "supports";
11689
+ }
11690
+ if (value === "contradicts" || value === "contradicting") {
11691
+ return "contradicts";
11692
+ }
11693
+ if (weight === void 0) {
11694
+ return void 0;
11695
+ }
11696
+ return weight < 0 ? "contradicts" : "supports";
11697
+ }
11698
+ function normalizeConfidence(confidence, weight) {
11699
+ if (confidence !== void 0) {
11700
+ return Math.min(1, Math.max(0, confidence));
11701
+ }
11702
+ if (weight === void 0) {
11703
+ return void 0;
11704
+ }
11705
+ return Math.min(1, Math.max(0, Math.abs(weight)));
11706
+ }
11707
+ function normalizeBeliefRelation(relation) {
11708
+ const beliefNodeId = relation.beliefNodeId ?? relation.beliefId ?? relation.targetId;
11709
+ if (!beliefNodeId) {
11710
+ return void 0;
11711
+ }
11712
+ const weight = typeof relation.weight === "number" ? relation.weight : void 0;
11713
+ const evidenceRelation = normalizeRelation(
11714
+ relation.evidenceRelation ?? relation.relation,
11715
+ weight
11716
+ );
11717
+ if (!evidenceRelation) {
11718
+ return void 0;
11719
+ }
11720
+ return compactRecord({
11721
+ beliefNodeId,
11722
+ relation: evidenceRelation,
11723
+ confidence: normalizeConfidence(relation.confidence, weight),
11724
+ rationale: relation.rationale
11725
+ });
11726
+ }
11643
11727
  var createEvidenceProjection = defineProjection({
11644
11728
  contractName: "create_evidence",
11645
11729
  inputSchema: createEvidenceInputSchema,
@@ -11650,6 +11734,11 @@ var createEvidenceProjection = defineProjection({
11650
11734
  const kind = targetKind(target);
11651
11735
  const linkedWorktreeId = kind === "worktree" ? normalizeWorktreeId(target) : void 0;
11652
11736
  const linkedBeliefNodeId = input.linkedBeliefNodeId ?? (kind === "belief" || kind === "unknown" ? input.targetNodeId ?? input.targetId : void 0);
11737
+ const evidenceRelation = linkedBeliefNodeId ? normalizeRelation(input.evidenceRelation, weight) : void 0;
11738
+ const confidence = evidenceRelation ? normalizeConfidence(input.confidence, weight) : void 0;
11739
+ const beliefRelations = input.beliefRelations?.map(normalizeBeliefRelation).filter(
11740
+ (relation) => relation !== void 0
11741
+ );
11653
11742
  return compactRecord({
11654
11743
  projectId: input.projectId,
11655
11744
  topicId: normalizeTopicIdForKernel(input.topicId),
@@ -11678,8 +11767,9 @@ var createEvidenceProjection = defineProjection({
11678
11767
  rationale: input.rationale
11679
11768
  }),
11680
11769
  linkedBeliefNodeId,
11681
- evidenceRelation: input.evidenceRelation ?? (weight === void 0 ? void 0 : weight < 0 ? "contradicts" : "supports"),
11682
- confidence: input.confidence ?? (weight === void 0 ? void 0 : Math.min(1, Math.max(0, Math.abs(weight)))),
11770
+ evidenceRelation,
11771
+ confidence,
11772
+ beliefRelations: beliefRelations && beliefRelations.length > 0 ? beliefRelations : void 0,
11683
11773
  rationale: input.rationale,
11684
11774
  trustedBypassAccessCheck: input.trustedBypassAccessCheck ?? true
11685
11775
  });
@@ -11708,6 +11798,16 @@ var createEvidenceProjection = defineProjection({
11708
11798
  v.literal("contradicts")
11709
11799
  )
11710
11800
  ),
11801
+ beliefRelations: v.optional(
11802
+ v.array(
11803
+ v.object({
11804
+ beliefNodeId: v.string(),
11805
+ relation: v.union(v.literal("supports"), v.literal("contradicts")),
11806
+ confidence: v.optional(v.number()),
11807
+ rationale: v.optional(v.string())
11808
+ })
11809
+ )
11810
+ ),
11711
11811
  confidence: v.optional(v.number()),
11712
11812
  rationale: v.string(),
11713
11813
  trustedBypassAccessCheck: v.optional(v.boolean())
@@ -11941,6 +12041,12 @@ var internalSystem = {
11941
12041
  mcp: "internal",
11942
12042
  cli: "internal"
11943
12043
  };
12044
+ var internalSdkRestOnly = {
12045
+ sdk: "internal",
12046
+ rest: "internal",
12047
+ mcp: "none",
12048
+ cli: "none"
12049
+ };
11944
12050
  var publicWithInternalMcp = {
11945
12051
  sdk: "public",
11946
12052
  rest: "public",
@@ -11990,7 +12096,6 @@ var MCP_CORE_OPERATION_NAMES = [
11990
12096
  "get_belief",
11991
12097
  "list_beliefs",
11992
12098
  "refine_belief",
11993
- "modulate_confidence",
11994
12099
  "fork_belief",
11995
12100
  "archive_belief",
11996
12101
  "search_beliefs",
@@ -12258,6 +12363,13 @@ var LUCERN_OPERATION_MANIFEST = {
12258
12363
  internalSystem,
12259
12364
  "Lucern system/background operation. Available to platform code paths, hidden from public MCP discovery."
12260
12365
  ),
12366
+ modulate_confidence: {
12367
+ name: "modulate_confidence",
12368
+ surfaceClass: "platform_internal",
12369
+ surfaceIntent: "system",
12370
+ surfaces: internalSdkRestOnly,
12371
+ rationale: "Internal SL ledger append primitive. Public callers attach evidence or contradiction relations; confidence is derived algorithmically."
12372
+ },
12261
12373
  ...entries(
12262
12374
  LEGACY_COMPAT_OPERATION_NAMES,
12263
12375
  "legacy_compat",
@@ -12961,11 +13073,11 @@ var beliefsContracts = [
12961
13073
  name: "modulate_confidence",
12962
13074
  kind: "mutation",
12963
13075
  domain: "beliefs",
12964
- surfaceClass: "platform_public",
13076
+ surfaceClass: "platform_internal",
12965
13077
  path: "/beliefs/confidence",
12966
13078
  sdkNamespace: "beliefs",
12967
13079
  sdkMethod: "modulateConfidence",
12968
- summary: "Append a belief confidence modulation.",
13080
+ summary: "Internal SL ledger append. Public callers should attach evidence or contradiction relations instead.",
12969
13081
  convex: {
12970
13082
  module: "beliefs",
12971
13083
  functionName: "modulateConfidence",
@@ -13071,7 +13183,17 @@ var beliefsContracts = [
13071
13183
  })
13072
13184
  ];
13073
13185
  var jsonRecordSchema4 = z.record(z.unknown());
13074
- var evidenceRelationSchema = z.enum(["supports", "contradicts"]);
13186
+ var evidenceRelationSchema2 = z.enum(["supports", "contradicts"]);
13187
+ var beliefRelationSchema2 = z.object({
13188
+ beliefId: z.string().optional().describe("Belief ID this evidence bears on."),
13189
+ beliefNodeId: z.string().optional().describe("Belief node ID this evidence bears on."),
13190
+ targetId: z.string().optional().describe("Belief target ID alias for beliefId/beliefNodeId."),
13191
+ relation: z.enum(["supports", "contradicts", "supporting", "contradicting"]).optional().describe("Relation alias for how the evidence bears on the belief."),
13192
+ evidenceRelation: evidenceRelationSchema2.optional().describe("Canonical relation: supports or contradicts."),
13193
+ confidence: z.number().optional().describe("Confidence in this evidence-to-belief relation."),
13194
+ weight: z.number().optional().describe("Support weight from -1.0 to +1.0 for this belief."),
13195
+ rationale: z.string().optional().describe("Why this relation exists.")
13196
+ });
13075
13197
  var createEvidenceArgs = z.object({
13076
13198
  topicId: z.string().optional().describe("Topic scope for the evidence."),
13077
13199
  text: z.string().describe("Canonical evidence text."),
@@ -13079,7 +13201,10 @@ var createEvidenceArgs = z.object({
13079
13201
  sourceUrl: z.string().optional().describe("Canonical source URL."),
13080
13202
  targetId: z.string().optional().describe("Belief, question, or worktree identifier to link or preserve on the evidence record."),
13081
13203
  linkedBeliefNodeId: z.string().optional().describe("Belief node this evidence bears on."),
13082
- evidenceRelation: evidenceRelationSchema.optional().describe("How the evidence relates to the linked belief."),
13204
+ evidenceRelation: evidenceRelationSchema2.optional().describe("How the evidence relates to the linked belief."),
13205
+ beliefRelations: z.array(beliefRelationSchema2).optional().describe(
13206
+ "Additional belief relations for one evidence record. Use when the same evidence supports or contradicts multiple beliefs."
13207
+ ),
13083
13208
  confidence: z.number().optional().describe("Confidence in the evidence relation."),
13084
13209
  weight: z.number().optional().describe("Support weight from -1.0 to +1.0."),
13085
13210
  metadata: jsonRecordSchema4.optional().describe("Metadata merged into the canonical evidence node."),
@@ -13122,6 +13247,30 @@ var createEvidenceInput = (input, context) => {
13122
13247
  context
13123
13248
  );
13124
13249
  };
13250
+ function relationWeight(input) {
13251
+ if (typeof input.weight === "number") {
13252
+ return input.weight;
13253
+ }
13254
+ const confidence = typeof input.confidence === "number" ? Math.max(0, Math.min(1, input.confidence)) : 0.7;
13255
+ const relation = String(
13256
+ input.evidenceRelation ?? input.relation ?? input.type ?? ""
13257
+ );
13258
+ return relation === "contradicts" || relation === "contradicting" ? -confidence : confidence;
13259
+ }
13260
+ var linkEvidenceToBeliefInput = (input, context) => {
13261
+ const weight = relationWeight(input);
13262
+ return withUserId(
13263
+ compactRecord4({
13264
+ beliefNodeId: input.beliefNodeId ?? input.beliefId ?? input.targetId,
13265
+ insightId: input.insightId ?? input.evidenceNodeId ?? input.evidenceId,
13266
+ type: weight < 0 ? "contradicting" : "supporting",
13267
+ confidence: Math.min(1, Math.abs(weight)),
13268
+ rationale: input.rationale ?? input.context,
13269
+ trustedBypassAccessCheck: input.trustedBypassAccessCheck ?? true
13270
+ }),
13271
+ context
13272
+ );
13273
+ };
13125
13274
  var linkEvidenceToBeliefEdgeInput = (input, context) => withCreatedBy(
13126
13275
  compactRecord4({
13127
13276
  fromNodeId: input.insightId ?? input.evidenceNodeId ?? input.evidenceId,
@@ -13264,10 +13413,10 @@ var evidenceContracts = [
13264
13413
  sdkMethod: "linkEvidenceToBelief",
13265
13414
  summary: "Link evidence to a belief.",
13266
13415
  convex: {
13267
- module: "edges",
13268
- functionName: "create",
13416
+ module: "beliefs",
13417
+ functionName: "linkEvidence",
13269
13418
  kind: "mutation",
13270
- inputProjection: linkEvidenceToBeliefEdgeInput
13419
+ inputProjection: linkEvidenceToBeliefInput
13271
13420
  }
13272
13421
  }),
13273
13422
  surfaceContract({