@lucern/events 1.0.11 → 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: {
@@ -1430,6 +1452,60 @@ var REMOVE_LENS_FROM_TOPIC = {
1430
1452
  tier: "workhorse"
1431
1453
  };
1432
1454
 
1455
+ // ../contracts/src/tool-contracts.context-orientation.ts
1456
+ var LUCERN_ORIENT = {
1457
+ name: "lucern_orient",
1458
+ description: "Load the Lucern reasoning grammar before operating. Like `git help` plus a repository CONTRIBUTING guide for reasoning state - teaches the git-shaped model of topics, campaigns, lanes, worktrees, beliefs, questions, evidence, receipts, gates, and merges.",
1459
+ parameters: {
1460
+ audience: {
1461
+ type: "string",
1462
+ description: "Audience for the primer: agent, human, operator, or developer.",
1463
+ enum: ["agent", "human", "operator", "developer"]
1464
+ },
1465
+ depth: {
1466
+ type: "string",
1467
+ description: "Orientation depth: quick, standard, or deep.",
1468
+ enum: ["quick", "standard", "deep"]
1469
+ },
1470
+ situation: {
1471
+ type: "string",
1472
+ description: "Optional task or query context used to tailor suggested next calls."
1473
+ },
1474
+ includeExamples: {
1475
+ type: "boolean",
1476
+ description: "Whether to include concrete tool-call examples."
1477
+ },
1478
+ includeToolMap: {
1479
+ type: "boolean",
1480
+ description: "Whether to include situation-to-tool routing guidance."
1481
+ },
1482
+ includeFuture: {
1483
+ type: "boolean",
1484
+ description: "Whether to include future exemplar, gauntlet, and training-data capabilities."
1485
+ }
1486
+ },
1487
+ required: [],
1488
+ response: {
1489
+ description: "Canonical operator primer for Lucern's git-shaped reasoning substrate.",
1490
+ fields: {
1491
+ schemaVersion: "string - lucern_orientation.v1",
1492
+ canonicalMentalModel: "object - concise model of Lucern as git-shaped reasoning state",
1493
+ workflow: "array - recommended branch -> investigate -> prove gate -> merge workflow",
1494
+ grammarMap: "array - primitive-to-git-analogy map for topics, campaigns, worktrees, beliefs, questions, evidence, edges, contradictions, and gates",
1495
+ firstMoves: "array - recommended first tools for a cold-start agent",
1496
+ receiptRules: "array - how to interpret candidateCounts, broadening, coverageWarning, narrativeCoverage, synthesisLints, and noDefaultGlobalScan",
1497
+ safetyRules: "array - mutation and completion rules that preserve reasoning lineage",
1498
+ toolMap: "array | undefined - situation-to-tool routing map when requested",
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",
1501
+ suggestedNextCalls: "array - safe next tool calls for the current situation"
1502
+ }
1503
+ },
1504
+ ownerModule: "reasoning-kernel",
1505
+ ontologyPrimitive: "graph",
1506
+ tier: "showcase"
1507
+ };
1508
+
1433
1509
  // ../contracts/src/tool-contracts.ontology.ts
1434
1510
  var MANAGE_WRITE_POLICY = {
1435
1511
  name: "manage_write_policy",
@@ -3939,10 +4015,34 @@ var COMPILE_CONTEXT = {
3939
4015
  type: "string",
3940
4016
  description: "Optional source kind used as a resolver signal, such as cli, worktree, commit, or docs."
3941
4017
  },
4018
+ campaign: {
4019
+ type: "number",
4020
+ description: "Optional campaign dimension seed. When supplied without topicId, the compiler fans out across all carrier topics for that campaign instead of resolving a single topic."
4021
+ },
4022
+ lane: {
4023
+ type: "string",
4024
+ description: "Optional lane dimension seed. When supplied without topicId, the compiler reads all matching worktrees and their carrier topics."
4025
+ },
4026
+ status: {
4027
+ type: "string",
4028
+ description: "Optional state/status dimension seed for worktrees and graph rows."
4029
+ },
4030
+ principalId: {
4031
+ type: "string",
4032
+ description: "Optional principal seed for work authored, touched, or owned by a human, agent, group, or service principal."
4033
+ },
4034
+ workspaceId: {
4035
+ type: "string",
4036
+ description: "Optional workspace seed used by hosted MCP and SDK clients when compiling tenant-scoped context."
4037
+ },
3942
4038
  budget: {
3943
4039
  type: "number",
3944
4040
  description: "Token budget for prompt injection planning"
3945
4041
  },
4042
+ tokenBudget: {
4043
+ type: "number",
4044
+ description: "Compatibility alias for budget. External MCP clients may send tokenBudget when requesting prompt injection planning."
4045
+ },
3946
4046
  ranking: {
3947
4047
  type: "string",
3948
4048
  description: "Ranking profile for context ordering",
@@ -3978,7 +4078,9 @@ var COMPILE_CONTEXT = {
3978
4078
  recentEvidence: "array \u2014 recent evidence ranked for this query",
3979
4079
  contradictions: "array \u2014 unresolved contradiction records",
3980
4080
  relatedEntities: "array | undefined \u2014 ranked ontological entities in scope",
3981
- 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",
3982
4084
  injectionPolicy: "object \u2014 token-budgeted section selections",
3983
4085
  diagnostics: "object \u2014 scoring and utilization telemetry"
3984
4086
  }
@@ -4633,6 +4735,7 @@ var MCP_TOOL_CONTRACTS = {
4633
4735
  update_worktree_metadata: UPDATE_WORKTREE_METADATA,
4634
4736
  identity_whoami: IDENTITY_WHOAMI,
4635
4737
  resolve_interactive_principal: RESOLVE_INTERACTIVE_PRINCIPAL,
4738
+ lucern_orient: LUCERN_ORIENT,
4636
4739
  compile_context: COMPILE_CONTEXT,
4637
4740
  record_scope_learning: RECORD_SCOPE_LEARNING,
4638
4741
  pipeline_snapshot: PIPELINE_SNAPSHOT,
@@ -10348,6 +10451,20 @@ GRAPH_INTELLIGENCE_QUERIES.map((query) => {
10348
10451
  var WEBHOOK_MAX_ATTEMPTS = 5;
10349
10452
  var WEBHOOK_RETRY_DELAYS_MS = [1e3, 5e3, 3e4, 3e5];
10350
10453
 
10454
+ // ../contracts/src/ids.contract.ts
10455
+ var PREFIXED_ID_PATTERN = /^([a-z][a-z0-9]*)_(.+)$/;
10456
+ function decodePrefixedId(id) {
10457
+ const normalized = id.trim();
10458
+ const match = PREFIXED_ID_PATTERN.exec(normalized);
10459
+ if (!match) {
10460
+ throw new Error(`Invalid prefixed ID: ${id}`);
10461
+ }
10462
+ return {
10463
+ prefix: match[1],
10464
+ value: match[2]
10465
+ };
10466
+ }
10467
+
10351
10468
  // ../contracts/src/schema-helpers/spine/tables/epistemicNodes.ts
10352
10469
  var NODE_TYPES = [
10353
10470
  "decision",
@@ -11463,6 +11580,23 @@ function defineProjection(def) {
11463
11580
 
11464
11581
  // ../contracts/src/projections/create-evidence.projection.ts
11465
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
+ });
11466
11600
  var createEvidenceInputSchemaBase = z.object({
11467
11601
  projectId: z.string().optional(),
11468
11602
  topicId: z.string().optional(),
@@ -11484,7 +11618,8 @@ var createEvidenceInputSchemaBase = z.object({
11484
11618
  targetId: z.string().optional(),
11485
11619
  targetNodeId: z.string().optional(),
11486
11620
  linkedBeliefNodeId: z.string().optional(),
11487
- evidenceRelation: z.enum(["supports", "contradicts"]).optional(),
11621
+ evidenceRelation: evidenceRelationSchema.optional(),
11622
+ beliefRelations: z.array(beliefRelationSchema).optional(),
11488
11623
  confidence: z.number().optional(),
11489
11624
  weight: z.number().optional(),
11490
11625
  reasoning: z.string().optional(),
@@ -11510,15 +11645,103 @@ function isRecord(value) {
11510
11645
  function recordValue(value) {
11511
11646
  return isRecord(value) ? value : {};
11512
11647
  }
11648
+ function normalizeTopicIdForKernel(topicId) {
11649
+ const normalized = topicId?.trim();
11650
+ if (!normalized) {
11651
+ return void 0;
11652
+ }
11653
+ try {
11654
+ const decoded = decodePrefixedId(normalized);
11655
+ return decoded.prefix === "top" ? decoded.value : normalized;
11656
+ } catch {
11657
+ return normalized;
11658
+ }
11659
+ }
11660
+ function normalizeWorktreeId(value) {
11661
+ const normalized = value?.trim();
11662
+ if (!normalized) {
11663
+ return void 0;
11664
+ }
11665
+ if (normalized.startsWith("wt_")) {
11666
+ return normalized.slice("wt_".length);
11667
+ }
11668
+ return normalized;
11669
+ }
11670
+ function targetKind(targetId) {
11671
+ const normalized = targetId?.trim();
11672
+ if (!normalized) {
11673
+ return "unknown";
11674
+ }
11675
+ if (normalized.startsWith("wt_") || /^tn[a-z0-9]+$/i.test(normalized)) {
11676
+ return "worktree";
11677
+ }
11678
+ if (normalized.startsWith("que_")) {
11679
+ return "question";
11680
+ }
11681
+ if (normalized.startsWith("bel_")) {
11682
+ return "belief";
11683
+ }
11684
+ return "unknown";
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
+ }
11513
11727
  var createEvidenceProjection = defineProjection({
11514
11728
  contractName: "create_evidence",
11515
11729
  inputSchema: createEvidenceInputSchema,
11516
11730
  project: (input) => {
11517
11731
  const text = input.text ?? input.canonicalText;
11518
11732
  const weight = typeof input.weight === "number" ? input.weight : void 0;
11733
+ const target = input.targetId ?? input.targetNodeId;
11734
+ const kind = targetKind(target);
11735
+ const linkedWorktreeId = kind === "worktree" ? normalizeWorktreeId(target) : void 0;
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
+ );
11519
11742
  return compactRecord({
11520
11743
  projectId: input.projectId,
11521
- topicId: input.topicId,
11744
+ topicId: normalizeTopicIdForKernel(input.topicId),
11522
11745
  text,
11523
11746
  title: input.title ?? text,
11524
11747
  content: input.content ?? text,
@@ -11537,13 +11760,16 @@ var createEvidenceProjection = defineProjection({
11537
11760
  source: input.source,
11538
11761
  targetId: input.targetId,
11539
11762
  targetNodeId: input.targetNodeId,
11763
+ targetKind: kind === "unknown" ? void 0 : kind,
11764
+ linkedWorktreeId,
11540
11765
  weight,
11541
11766
  reasoning: input.reasoning,
11542
11767
  rationale: input.rationale
11543
11768
  }),
11544
- linkedBeliefNodeId: input.linkedBeliefNodeId ?? input.targetNodeId ?? input.targetId,
11545
- evidenceRelation: input.evidenceRelation ?? (weight === void 0 ? void 0 : weight < 0 ? "contradicts" : "supports"),
11546
- confidence: input.confidence ?? (weight === void 0 ? void 0 : Math.min(1, Math.max(0, Math.abs(weight)))),
11769
+ linkedBeliefNodeId,
11770
+ evidenceRelation,
11771
+ confidence,
11772
+ beliefRelations: beliefRelations && beliefRelations.length > 0 ? beliefRelations : void 0,
11547
11773
  rationale: input.rationale,
11548
11774
  trustedBypassAccessCheck: input.trustedBypassAccessCheck ?? true
11549
11775
  });
@@ -11572,6 +11798,16 @@ var createEvidenceProjection = defineProjection({
11572
11798
  v.literal("contradicts")
11573
11799
  )
11574
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
+ ),
11575
11811
  confidence: v.optional(v.number()),
11576
11812
  rationale: v.string(),
11577
11813
  trustedBypassAccessCheck: v.optional(v.boolean())
@@ -11805,6 +12041,12 @@ var internalSystem = {
11805
12041
  mcp: "internal",
11806
12042
  cli: "internal"
11807
12043
  };
12044
+ var internalSdkRestOnly = {
12045
+ sdk: "internal",
12046
+ rest: "internal",
12047
+ mcp: "none",
12048
+ cli: "none"
12049
+ };
11808
12050
  var publicWithInternalMcp = {
11809
12051
  sdk: "public",
11810
12052
  rest: "public",
@@ -11844,6 +12086,7 @@ function entries(names, surfaceClass, surfaceIntent, surfaces, rationale) {
11844
12086
  );
11845
12087
  }
11846
12088
  var MCP_CORE_OPERATION_NAMES = [
12089
+ "lucern_orient",
11847
12090
  "compile_context",
11848
12091
  "identity_whoami",
11849
12092
  "resolve_interactive_principal",
@@ -11853,7 +12096,6 @@ var MCP_CORE_OPERATION_NAMES = [
11853
12096
  "get_belief",
11854
12097
  "list_beliefs",
11855
12098
  "refine_belief",
11856
- "modulate_confidence",
11857
12099
  "fork_belief",
11858
12100
  "archive_belief",
11859
12101
  "search_beliefs",
@@ -12121,6 +12363,13 @@ var LUCERN_OPERATION_MANIFEST = {
12121
12363
  internalSystem,
12122
12364
  "Lucern system/background operation. Available to platform code paths, hidden from public MCP discovery."
12123
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
+ },
12124
12373
  ...entries(
12125
12374
  LEGACY_COMPAT_OPERATION_NAMES,
12126
12375
  "legacy_compat",
@@ -12472,6 +12721,14 @@ var observationContextArgs = z.object({
12472
12721
  limit: z.number().optional().describe("Maximum observations to return."),
12473
12722
  status: z.string().optional().describe("Observation status filter.")
12474
12723
  });
12724
+ var lucernOrientArgs = z.object({
12725
+ audience: z.enum(["agent", "human", "operator", "developer"]).optional().describe("Audience for the orientation primer."),
12726
+ depth: z.enum(["quick", "standard", "deep"]).optional().describe("How much orientation detail to include."),
12727
+ situation: z.string().optional().describe("Optional task or query context for suggested next calls."),
12728
+ includeExamples: z.boolean().optional().describe("Include concrete tool-call examples."),
12729
+ includeToolMap: z.boolean().optional().describe("Include situation-to-tool routing guidance."),
12730
+ includeFuture: z.boolean().optional().describe("Include future training and pedagogy capabilities.")
12731
+ });
12475
12732
  function isRecord2(value) {
12476
12733
  return Boolean(value) && typeof value === "object" && !Array.isArray(value);
12477
12734
  }
@@ -12499,6 +12756,20 @@ var observationInput = (input, context) => withUserId(
12499
12756
  context
12500
12757
  );
12501
12758
  var contextContracts = [
12759
+ surfaceContract({
12760
+ name: "lucern_orient",
12761
+ kind: "query",
12762
+ domain: "context",
12763
+ surfaceClass: "platform_public",
12764
+ path: "/context/orient",
12765
+ sdkNamespace: "context",
12766
+ sdkMethod: "lucernOrient",
12767
+ summary: "Return the canonical Lucern operator orientation primer.",
12768
+ gateway: {
12769
+ handler: "context.lucernOrient"
12770
+ },
12771
+ args: lucernOrientArgs
12772
+ }),
12502
12773
  surfaceContract({
12503
12774
  name: "compile_context",
12504
12775
  kind: "query",
@@ -12802,11 +13073,11 @@ var beliefsContracts = [
12802
13073
  name: "modulate_confidence",
12803
13074
  kind: "mutation",
12804
13075
  domain: "beliefs",
12805
- surfaceClass: "platform_public",
13076
+ surfaceClass: "platform_internal",
12806
13077
  path: "/beliefs/confidence",
12807
13078
  sdkNamespace: "beliefs",
12808
13079
  sdkMethod: "modulateConfidence",
12809
- summary: "Append a belief confidence modulation.",
13080
+ summary: "Internal SL ledger append. Public callers should attach evidence or contradiction relations instead.",
12810
13081
  convex: {
12811
13082
  module: "beliefs",
12812
13083
  functionName: "modulateConfidence",
@@ -12912,15 +13183,28 @@ var beliefsContracts = [
12912
13183
  })
12913
13184
  ];
12914
13185
  var jsonRecordSchema4 = z.record(z.unknown());
12915
- 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
+ });
12916
13197
  var createEvidenceArgs = z.object({
12917
13198
  topicId: z.string().optional().describe("Topic scope for the evidence."),
12918
13199
  text: z.string().describe("Canonical evidence text."),
12919
13200
  source: z.string().optional().describe("Source URL or source label."),
12920
13201
  sourceUrl: z.string().optional().describe("Canonical source URL."),
12921
- targetId: z.string().optional().describe("Belief or question identifier to link immediately."),
13202
+ targetId: z.string().optional().describe("Belief, question, or worktree identifier to link or preserve on the evidence record."),
12922
13203
  linkedBeliefNodeId: z.string().optional().describe("Belief node this evidence bears on."),
12923
- 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
+ ),
12924
13208
  confidence: z.number().optional().describe("Confidence in the evidence relation."),
12925
13209
  weight: z.number().optional().describe("Support weight from -1.0 to +1.0."),
12926
13210
  metadata: jsonRecordSchema4.optional().describe("Metadata merged into the canonical evidence node."),
@@ -12951,11 +13235,6 @@ var addEvidenceArgs = z.object({
12951
13235
  contentType: z.string().optional().describe("Content format or MIME hint."),
12952
13236
  metadata: jsonRecordSchema4.optional().describe("Optional metadata merged into the evidence node.")
12953
13237
  });
12954
- var evidenceIdInput = (input) => compactRecord4({
12955
- evidenceId: input.evidenceId,
12956
- insightId: input.insightId,
12957
- nodeId: input.nodeId ?? input.id ?? input.evidenceId
12958
- });
12959
13238
  var createEvidenceInput = (input, context) => {
12960
13239
  const parsed = createEvidenceProjection.inputSchema.safeParse(input);
12961
13240
  if (!parsed.success) {
@@ -12968,6 +13247,30 @@ var createEvidenceInput = (input, context) => {
12968
13247
  context
12969
13248
  );
12970
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
+ };
12971
13274
  var linkEvidenceToBeliefEdgeInput = (input, context) => withCreatedBy(
12972
13275
  compactRecord4({
12973
13276
  fromNodeId: input.insightId ?? input.evidenceNodeId ?? input.evidenceId,
@@ -13069,11 +13372,8 @@ var evidenceContracts = [
13069
13372
  sdkNamespace: "evidence",
13070
13373
  sdkMethod: "getEvidence",
13071
13374
  summary: "Get evidence.",
13072
- convex: {
13073
- module: "evidence",
13074
- functionName: "getById",
13075
- kind: "query",
13076
- inputProjection: evidenceIdInput
13375
+ gateway: {
13376
+ handler: "evidence.get"
13077
13377
  }
13078
13378
  }),
13079
13379
  surfaceContract({
@@ -13099,17 +13399,8 @@ var evidenceContracts = [
13099
13399
  sdkNamespace: "evidence",
13100
13400
  sdkMethod: "searchEvidence",
13101
13401
  summary: "Search evidence.",
13102
- convex: {
13103
- module: "nodes",
13104
- functionName: "search",
13105
- kind: "query",
13106
- inputProjection: (input) => compactRecord4({
13107
- searchQuery: input.searchQuery ?? input.q ?? input.query,
13108
- projectId: input.projectId,
13109
- topicId: input.topicId,
13110
- nodeType: "evidence",
13111
- limit: input.limit
13112
- })
13402
+ gateway: {
13403
+ handler: "evidence.search"
13113
13404
  }
13114
13405
  }),
13115
13406
  surfaceContract({
@@ -13122,10 +13413,10 @@ var evidenceContracts = [
13122
13413
  sdkMethod: "linkEvidenceToBelief",
13123
13414
  summary: "Link evidence to a belief.",
13124
13415
  convex: {
13125
- module: "edges",
13126
- functionName: "create",
13416
+ module: "beliefs",
13417
+ functionName: "linkEvidence",
13127
13418
  kind: "mutation",
13128
- inputProjection: linkEvidenceToBeliefEdgeInput
13419
+ inputProjection: linkEvidenceToBeliefInput
13129
13420
  }
13130
13421
  }),
13131
13422
  surfaceContract({
@@ -13697,10 +13988,8 @@ var topicsContracts = [
13697
13988
  sdkNamespace: "topics",
13698
13989
  sdkMethod: "getTopicGraphSpine",
13699
13990
  summary: "Verify topic nodes and parent-child graph edges.",
13700
- convex: {
13701
- module: "topics",
13702
- functionName: "getTopicGraphSpine",
13703
- kind: "query"
13991
+ gateway: {
13992
+ handler: "topics.graphSpine"
13704
13993
  },
13705
13994
  args: getTopicGraphSpineArgs
13706
13995
  })
@@ -15407,10 +15696,8 @@ var graphContracts = [
15407
15696
  sdkNamespace: "graphAnalysis",
15408
15697
  sdkMethod: "listGraphIntelligenceQueries",
15409
15698
  summary: "List Graph Intelligence query catalog entries.",
15410
- convex: {
15411
- module: "contextCompiler",
15412
- functionName: "listGraphIntelligenceQueries",
15413
- kind: "query"
15699
+ gateway: {
15700
+ handler: "graph.listIntelligenceQueries"
15414
15701
  },
15415
15702
  args: graphIntelligenceCatalogArgs
15416
15703
  }),