@lucern/pack-host 1.0.0 → 1.0.2

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.
Files changed (62) hide show
  1. package/dist/domain-pack/authoring.core.d.ts +161 -0
  2. package/dist/domain-pack/authoring.core.js +411 -0
  3. package/dist/domain-pack/authoring.core.js.map +1 -0
  4. package/dist/domain-pack/authoring.d.ts +12 -170
  5. package/dist/domain-pack/authoring.js +1155 -1098
  6. package/dist/domain-pack/authoring.js.map +1 -1
  7. package/dist/domain-pack/authoring.validation.d.ts +28 -0
  8. package/dist/domain-pack/authoring.validation.js +1944 -0
  9. package/dist/domain-pack/authoring.validation.js.map +1 -0
  10. package/dist/domain-pack/index.d.ts +2 -1
  11. package/dist/domain-pack/index.js +1979 -1917
  12. package/dist/domain-pack/index.js.map +1 -1
  13. package/dist/domain-pack/packs/engineering-accelerator-tail.d.ts +256 -0
  14. package/dist/domain-pack/packs/engineering-accelerator-tail.js +716 -0
  15. package/dist/domain-pack/packs/engineering-accelerator-tail.js.map +1 -0
  16. package/dist/domain-pack/packs/engineering-accelerator.js +790 -785
  17. package/dist/domain-pack/packs/engineering-accelerator.js.map +1 -1
  18. package/dist/domain-pack/packs/index.js +790 -785
  19. package/dist/domain-pack/packs/index.js.map +1 -1
  20. package/dist/domain-pack.d.ts +2 -1
  21. package/dist/domain-pack.js +1979 -1917
  22. package/dist/domain-pack.js.map +1 -1
  23. package/dist/index.d.ts +3 -1
  24. package/dist/index.js +1843 -1661
  25. package/dist/index.js.map +1 -1
  26. package/dist/manifests/chat-v1.js +17 -6
  27. package/dist/manifests/chat-v1.js.map +1 -1
  28. package/dist/manifests/deals-v1.js +10 -7
  29. package/dist/manifests/deals-v1.js.map +1 -1
  30. package/dist/manifests/decisions-v1.js +11 -4
  31. package/dist/manifests/decisions-v1.js.map +1 -1
  32. package/dist/manifests/documents-v1.js +12 -12
  33. package/dist/manifests/documents-v1.js.map +1 -1
  34. package/dist/manifests/epistemic-algorithms-v1.js +11 -6
  35. package/dist/manifests/epistemic-algorithms-v1.js.map +1 -1
  36. package/dist/manifests/graph-visualization-v1.js +9 -5
  37. package/dist/manifests/graph-visualization-v1.js.map +1 -1
  38. package/dist/manifests/index.d.ts +1 -0
  39. package/dist/manifests/index.js +230 -110
  40. package/dist/manifests/index.js.map +1 -1
  41. package/dist/manifests/news-v1.js +12 -13
  42. package/dist/manifests/news-v1.js.map +1 -1
  43. package/dist/manifests/philosophy-mode-v1.js +10 -12
  44. package/dist/manifests/philosophy-mode-v1.js.map +1 -1
  45. package/dist/manifests/sprints-v1.d.ts +10 -0
  46. package/dist/manifests/sprints-v1.js +106 -0
  47. package/dist/manifests/sprints-v1.js.map +1 -0
  48. package/dist/manifests/task-management-v1.js +18 -6
  49. package/dist/manifests/task-management-v1.js.map +1 -1
  50. package/dist/manifests/team-analysis-v1.js +12 -9
  51. package/dist/manifests/team-analysis-v1.js.map +1 -1
  52. package/dist/manifests/themes-v1.js +12 -16
  53. package/dist/manifests/themes-v1.js.map +1 -1
  54. package/dist/manifests/user-profiles-v1.js +9 -13
  55. package/dist/manifests/user-profiles-v1.js.map +1 -1
  56. package/dist/manifests.d.ts +1 -0
  57. package/dist/manifests.js +230 -110
  58. package/dist/manifests.js.map +1 -1
  59. package/dist/proof-attestation.json +1 -1
  60. package/dist/registry.js +229 -109
  61. package/dist/registry.js.map +1 -1
  62. package/package.json +1 -1
@@ -44,12 +44,18 @@ var chatV1Manifest = defineAppPackManifest({
44
44
  },
45
45
  surfaces: {
46
46
  components: [
47
- "components/chat/*",
48
- "components/chat/sidebars/*",
49
- "components/chat/viewers/*"
47
+ "apps/web/components/lucern/dev/chat-debug-panel.tsx",
48
+ "apps/web/app/lucern/packs/_components/pack-try-it-panel.tsx"
50
49
  ],
51
- convex: ["convex/chats.ts", "convex/messages.ts", "convex/chatState.ts"],
52
- tools: ["lib/ai/tools/project-tools.ts"]
50
+ convex: [
51
+ "packages/reasoning-kernel/src/adapters/events.ts",
52
+ "services/master-control/convex/tools.ts",
53
+ "services/master-control/convex/toolAccess.ts"
54
+ ],
55
+ tools: [
56
+ "packages/mcp/src/handlers/functionSurface.ts",
57
+ "packages/server-core/src/mcp-context-tools.ts"
58
+ ]
53
59
  },
54
60
  policyProfile: {
55
61
  audiences: ["internal", "lp", "public"],
@@ -66,7 +72,12 @@ var chatV1Manifest = defineAppPackManifest({
66
72
  dataContract: {
67
73
  requiredNodeTypes: ["belief", "question", "evidence", "theme", "deal"],
68
74
  requiredEdgeTypes: ["informs", "answers", "belongs_to"],
69
- requiredTables: ["chats", "messages", "chatState", "projects"],
75
+ requiredTables: [
76
+ "agentMessages",
77
+ "platformAgentRuns",
78
+ "platformAgentRunToolCalls",
79
+ "epistemicNodes"
80
+ ],
70
81
  projectionBehavior: "inherits_policy"
71
82
  },
72
83
  templates: {
@@ -108,14 +119,17 @@ var dealsV1Manifest = defineAppPackManifest({
108
119
  },
109
120
  surfaces: {
110
121
  components: [
111
- "app/(projects)/projects/page.tsx",
112
- "components/project/*",
113
- "components/workspace/views/*"
122
+ "apps/web/app/lucern/tenant/workspaces/page.tsx",
123
+ "apps/web/app/lucern/tenant/_components/workspaces/*"
124
+ ],
125
+ convex: [
126
+ "packages/reasoning-kernel/src/adapters/topics.ts",
127
+ "packages/reasoning-kernel/src/adapters/decisions.ts",
128
+ "services/master-control/convex/workspaces.ts"
114
129
  ],
115
- convex: ["convex/projects.ts", "convex/epistemicDecisions.ts"],
116
130
  tools: [
117
- "lib/ai/tools/navigation-tools.ts",
118
- "lib/ai/tools/decision-tools.ts"
131
+ "packages/server-core/src/domain/topics.ts",
132
+ "packages/server-core/src/domain/worktrees.ts"
119
133
  ]
120
134
  },
121
135
  policyProfile: {
@@ -136,7 +150,7 @@ var dealsV1Manifest = defineAppPackManifest({
136
150
  "based_on_belief"
137
151
  ],
138
152
  requiredTables: [
139
- "projects",
153
+ "topics",
140
154
  "epistemicNodes",
141
155
  "epistemicEdges",
142
156
  "decisionEvents"
@@ -188,11 +202,18 @@ var decisionsV1Manifest = defineAppPackManifest({
188
202
  api: ["/api/thesis-audit/*", "/api/reports/*"]
189
203
  },
190
204
  surfaces: {
191
- components: ["app/(projects)/projects/[projectId]/decisions/page.tsx"],
192
- convex: ["convex/epistemicDecisions.ts", "convex/convictionEngine.ts"],
205
+ components: [
206
+ "apps/web/app/lucern/tenant/policy/page.tsx",
207
+ "apps/web/app/lucern/mc/policy/page.tsx"
208
+ ],
209
+ convex: [
210
+ "packages/reasoning-kernel/src/adapters/decisions.ts",
211
+ "packages/reasoning-kernel/src/adapters/questionsConvictionMutations.ts",
212
+ "packages/reasoning-kernel/src/adapters/beliefs.confidence.ts"
213
+ ],
193
214
  tools: [
194
- "lib/ai/tools/decision-tools.ts",
195
- "lib/ai/tools/conviction-tools.ts"
215
+ "packages/mcp/src/handlers/judgments.ts",
216
+ "packages/server-core/src/policy/index.ts"
196
217
  ]
197
218
  },
198
219
  policyProfile: {
@@ -273,14 +294,19 @@ var documentsV1Manifest = defineAppPackManifest({
273
294
  api: ["/api/documents/*", "/api/rag/document", "/api/rag/extract-pdf"]
274
295
  },
275
296
  surfaces: {
276
- components: ["components/documents/*", "components/document/*"],
297
+ components: [
298
+ "apps/web/app/lucern/tenant/_components/workspaces/workspace-pack-panel.tsx",
299
+ "apps/web/app/lucern/packs/_components/pack-detail-page.tsx"
300
+ ],
277
301
  convex: [
278
- "convex/projectDocuments.ts",
279
- "convex/documents.ts",
280
- "convex/documentAnnotations.ts",
281
- "convex/projectDocumentsActions.ts"
302
+ "packages/reasoning-kernel/src/adapters/evidence.ts",
303
+ "packages/reasoning-kernel/src/adapters/evidenceCreate.ts",
304
+ "packages/reasoning-kernel/src/adapters/epistemicSources.ts"
282
305
  ],
283
- tools: ["lib/ai/tools/create-document.ts"]
306
+ tools: [
307
+ "packages/server-core/src/domain/sources.ts",
308
+ "packages/mcp/src/handlers/evidence.ts"
309
+ ]
284
310
  },
285
311
  policyProfile: {
286
312
  audiences: ["internal", "lp"],
@@ -293,12 +319,7 @@ var documentsV1Manifest = defineAppPackManifest({
293
319
  dataContract: {
294
320
  requiredNodeTypes: ["source", "excerpt", "evidence", "synthesis"],
295
321
  requiredEdgeTypes: ["derived_from", "based_on", "informs"],
296
- requiredTables: [
297
- "projectDocuments",
298
- "projectDocumentsSyncLog",
299
- "documentAnnotations",
300
- "epistemicNodes"
301
- ],
322
+ requiredTables: ["researchJobs", "epistemicNodes", "epistemicEdges"],
302
323
  projectionBehavior: "inherits_policy"
303
324
  },
304
325
  templates: {
@@ -340,14 +361,19 @@ var epistemicAlgorithmsV1Manifest = defineAppPackManifest({
340
361
  api: ["/api/thesis-audit", "/api/graph-explain", "/api/lucern/*"]
341
362
  },
342
363
  surfaces: {
343
- components: ["components/epistemic/*", "components/contradiction/*"],
364
+ components: [
365
+ "apps/web/app/lucern/tenant/_components/graph/*",
366
+ "apps/web/lib/platform/react/components/ContradictionList.ts"
367
+ ],
344
368
  convex: [
345
- "convex/contradictions.ts",
346
- "convex/convictionEngine.ts",
347
- "convex/graphIntelligence.ts",
348
- "convex/thesisAuditAgents.ts"
369
+ "packages/reasoning-kernel/src/adapters/contradictions.ts",
370
+ "packages/reasoning-kernel/src/adapters/graphIntelligence.ts",
371
+ "packages/reasoning-kernel/src/adapters/graphAnalysisResults.ts"
349
372
  ],
350
- tools: ["lib/ai/tools/graph-intelligence-tools.ts"]
373
+ tools: [
374
+ "packages/mcp/src/handlers/contradictions.ts",
375
+ "packages/server-core/src/graph-analysis.ts"
376
+ ]
351
377
  },
352
378
  policyProfile: {
353
379
  audiences: ["internal", "lp"],
@@ -424,13 +450,17 @@ var graphVisualizationV1Manifest = defineAppPackManifest({
424
450
  },
425
451
  surfaces: {
426
452
  components: [
427
- "app/(projects)/projects/[projectId]/graph/components/*",
428
- "components/workspace/views/ProjectHomeView.tsx"
453
+ "apps/web/app/lucern/tenant/_components/graph/*",
454
+ "apps/web/app/lucern/tenant/graph/page.tsx"
455
+ ],
456
+ convex: [
457
+ "packages/reasoning-kernel/src/adapters/edgesQueries.ts",
458
+ "packages/reasoning-kernel/src/adapters/nodesQueries.ts",
459
+ "packages/reasoning-kernel/src/adapters/neo4jQueries.ts"
429
460
  ],
430
- convex: ["convex/epistemicQueries.ts", "convex/neo4jQueries.ts"],
431
461
  tools: [
432
- "lib/ai/tools/knowledge-graph-tools.ts",
433
- "lib/ai/tools/cypher-tools.ts"
462
+ "packages/mcp/src/handlers/graph.ts",
463
+ "packages/server-core/src/mcp-graph-tools.ts"
434
464
  ]
435
465
  },
436
466
  policyProfile: {
@@ -493,14 +523,19 @@ var newsV1Manifest = defineAppPackManifest({
493
523
  api: ["/api/news/search", "/api/intelligence/smart-news-search"]
494
524
  },
495
525
  surfaces: {
496
- components: ["components/news/*"],
526
+ components: [
527
+ "apps/web/app/lucern/packs/_components/pack-detail-page.tsx",
528
+ "apps/web/app/lucern/packs/_components/pack-catalog-page.tsx"
529
+ ],
497
530
  convex: [
498
- "convex/projectNews.ts",
499
- "convex/newsArticles.ts",
500
- "convex/newsCurationJobs.ts",
501
- "convex/articleCache.ts"
531
+ "packages/reasoning-kernel/src/adapters/evidence.ts",
532
+ "packages/reasoning-kernel/src/adapters/epistemicSources.ts",
533
+ "packages/server-core/src/domain/sources.ts"
502
534
  ],
503
- tools: ["lib/ai/tools/research-tools.ts"]
535
+ tools: [
536
+ "packages/server-core/src/sources.ts",
537
+ "packages/mcp/src/handlers/evidence.ts"
538
+ ]
504
539
  },
505
540
  policyProfile: {
506
541
  audiences: ["internal", "lp", "public"],
@@ -513,13 +548,7 @@ var newsV1Manifest = defineAppPackManifest({
513
548
  dataContract: {
514
549
  requiredNodeTypes: ["source", "evidence", "synthesis", "theme", "deal"],
515
550
  requiredEdgeTypes: ["derived_from", "informs", "belongs_to"],
516
- requiredTables: [
517
- "projectNews",
518
- "savedNewsArticles",
519
- "newsCurationJobs",
520
- "articleCache",
521
- "epistemicNodes"
522
- ],
551
+ requiredTables: ["researchJobs", "epistemicNodes", "epistemicEdges"],
523
552
  projectionBehavior: "inherits_policy"
524
553
  },
525
554
  templates: {
@@ -569,15 +598,18 @@ var philosophyModeV1Manifest = defineAppPackManifest({
569
598
  },
570
599
  surfaces: {
571
600
  components: [
572
- "components/chat/sidebars/PhilosophyModeSidebar.tsx",
573
- "components/philosophy/ArchetypeDisplay.tsx"
601
+ "apps/web/app/lucern/tenant/_components/people/*",
602
+ "apps/web/app/lucern/tenant/people/page.tsx"
574
603
  ],
575
604
  convex: [
576
- "convex/philosophy.ts",
577
- "convex/philosophyQueries.ts",
578
- "convex/projectPhilosophy.ts"
605
+ "services/master-control/convex/userSessions.ts",
606
+ "packages/reasoning-kernel/src/adapters/ontologies.ts",
607
+ "packages/reasoning-kernel/src/adapters/topics.ts"
579
608
  ],
580
- tools: ["lib/ai/tools/philosophy-tools.ts"]
609
+ tools: [
610
+ "packages/server-core/src/domain/ontologies.ts",
611
+ "packages/mcp/src/handlers/observations.ts"
612
+ ]
581
613
  },
582
614
  policyProfile: {
583
615
  audiences: ["internal"],
@@ -590,12 +622,7 @@ var philosophyModeV1Manifest = defineAppPackManifest({
590
622
  dataContract: {
591
623
  requiredNodeTypes: ["belief", "question", "theme"],
592
624
  requiredEdgeTypes: ["belongs_to", "relates_to_thesis"],
593
- requiredTables: [
594
- "marketPhilosophyProfiles",
595
- "marketPhilosophyAtoms",
596
- "marketPhilosophyContent",
597
- "philosophyUploads"
598
- ],
625
+ requiredTables: ["users", "epistemicNodes", "epistemicEdges"],
599
626
  projectionBehavior: "inherits_policy"
600
627
  },
601
628
  templates: {
@@ -621,6 +648,91 @@ var philosophyModeV1Manifest = defineAppPackManifest({
621
648
  }
622
649
  });
623
650
 
651
+ // src/manifests/sprints-v1.ts
652
+ var worktreesV1Manifest = defineAppPackManifest({
653
+ key: "sprints-v1",
654
+ name: "Worktrees",
655
+ version: "1.0.0",
656
+ lifecycle: "active",
657
+ category: "workflow",
658
+ description: "Structured research execution workflow with phases, scoring, and worktree-linked tasks.",
659
+ dependencies: ["chat-v1"],
660
+ capabilityFlags: [
661
+ "worktree.lifecycle",
662
+ "worktree.phase-navigation",
663
+ "worktree.scoring",
664
+ "worktree.workspace"
665
+ ],
666
+ routeNamespace: {
667
+ web: [
668
+ "/(projects)/topics/[topicId]/worktrees",
669
+ "/(projects)/topics/[topicId]/worktrees/[worktreeId]"
670
+ ],
671
+ api: [
672
+ "/api/sprint/assess-beliefs",
673
+ "/api/sprint/generate-thesis",
674
+ "/api/sprint/refine-thesis",
675
+ "/api/sprint/welcome"
676
+ ]
677
+ },
678
+ surfaces: {
679
+ components: [
680
+ "apps/web/app/lucern/tenant/_components/workspaces/*",
681
+ "apps/web/app/lucern/tenant/workspaces/page.tsx"
682
+ ],
683
+ convex: [
684
+ "packages/reasoning-kernel/src/adapters/worktrees.ts",
685
+ "modules/tasks/src/v1/engine/tasks.ts",
686
+ "packages/reasoning-kernel/src/adapters/questions.ts"
687
+ ],
688
+ tools: [
689
+ "packages/mcp/src/handlers/worktrees.ts",
690
+ "packages/server-core/src/worktrees.ts"
691
+ ]
692
+ },
693
+ policyProfile: {
694
+ audiences: ["internal", "lp"],
695
+ rules: [
696
+ { resource: "project", actions: ["read", "summarize", "mutate"] },
697
+ { resource: "task", actions: ["read", "mutate"] },
698
+ { resource: "tool_action", actions: ["read", "mutate"] }
699
+ ]
700
+ },
701
+ dataContract: {
702
+ requiredNodeTypes: ["belief", "question", "evidence", "theme"],
703
+ requiredEdgeTypes: ["tests", "informs", "belongs_to", "depends_on"],
704
+ requiredTables: [
705
+ "worktrees",
706
+ "workflowDefinitions",
707
+ "workflowStages",
708
+ "tasks"
709
+ ],
710
+ projectionBehavior: "inherits_policy"
711
+ },
712
+ templates: {
713
+ workflows: [
714
+ "worktree/hypothesis-formation",
715
+ "worktree/cluster-mapping",
716
+ "worktree/question-validation"
717
+ ],
718
+ prompts: ["worktree/main-system-prompt", "worktree/research-task-planning"],
719
+ reports: ["sprint_thesis"],
720
+ uiLabels: ["worktree", "phase", "conviction", "thesis"]
721
+ },
722
+ testSuite: {
723
+ parity: ["worktree-lifecycle-parity"],
724
+ policy: ["worktree-tool-enforcement"],
725
+ contract: ["worktrees-pack-contract-v1"]
726
+ },
727
+ sharedServices: [
728
+ {
729
+ service: "knowledge-compiler",
730
+ mode: "required",
731
+ contracts: ["knowledge-compiler-v1"]
732
+ }
733
+ ]
734
+ });
735
+
624
736
  // src/manifests/task-management-v1.ts
625
737
  var taskManagementV1Manifest = defineAppPackManifest({
626
738
  key: "task-management-v1",
@@ -646,13 +758,19 @@ var taskManagementV1Manifest = defineAppPackManifest({
646
758
  ]
647
759
  },
648
760
  surfaces: {
649
- components: ["components/task/*"],
761
+ components: [
762
+ "apps/web/app/lucern/tenant/tools/page.tsx",
763
+ "apps/web/app/lucern/tenant/_components/tools/*"
764
+ ],
650
765
  convex: [
651
- "convex/tasks.ts",
652
- "convex/_taskHelpers.ts",
653
- "convex/_taskQueryLogic.ts"
766
+ "modules/tasks/src/v1/engine/tasks.ts",
767
+ "modules/tasks/src/v1/engine/tasks.queries.ts",
768
+ "modules/tasks/src/v1/engine/tasks.mutations.ts"
654
769
  ],
655
- tools: ["lib/ai/tools/task-tools.ts"]
770
+ tools: [
771
+ "packages/mcp/src/handlers/tasks.ts",
772
+ "packages/server-core/src/tasks.ts"
773
+ ]
656
774
  },
657
775
  policyProfile: {
658
776
  audiences: ["internal", "lp"],
@@ -666,7 +784,13 @@ var taskManagementV1Manifest = defineAppPackManifest({
666
784
  dataContract: {
667
785
  requiredNodeTypes: ["belief", "question", "evidence", "synthesis"],
668
786
  requiredEdgeTypes: ["informs", "tests", "belongs_to"],
669
- requiredTables: ["tasks", "projects", "epistemicNodes", "epistemicEdges"],
787
+ requiredTables: [
788
+ "tasks",
789
+ "topics",
790
+ "worktrees",
791
+ "epistemicNodes",
792
+ "epistemicEdges"
793
+ ],
670
794
  projectionBehavior: "inherits_policy"
671
795
  },
672
796
  templates: {
@@ -706,13 +830,19 @@ var teamAnalysisV1Manifest = defineAppPackManifest({
706
830
  api: ["/api/coaching/*"]
707
831
  },
708
832
  surfaces: {
709
- components: ["components/charts/*", "components/coaching/*"],
833
+ components: [
834
+ "apps/web/app/lucern/mc/analytics/page.tsx",
835
+ "apps/web/app/lucern/tenant/_components/people/*"
836
+ ],
710
837
  convex: [
711
- "convex/users.ts",
712
- "convex/userAnalytics.ts",
713
- "convex/projectCards.ts"
838
+ "services/master-control/convex/identity.ts",
839
+ "services/master-control/convex/groups.ts",
840
+ "packages/reasoning-kernel/src/adapters/telemetry.ts"
714
841
  ],
715
- tools: []
842
+ tools: [
843
+ "packages/server-core/src/identity.ts",
844
+ "packages/mcp/src/handlers/observations.ts"
845
+ ]
716
846
  },
717
847
  policyProfile: {
718
848
  audiences: ["internal", "tenant_admin"],
@@ -727,13 +857,10 @@ var teamAnalysisV1Manifest = defineAppPackManifest({
727
857
  requiredEdgeTypes: ["informs", "tests"],
728
858
  requiredTables: [
729
859
  "users",
730
- "userEpistemicJourney",
731
860
  "epistemicAudit",
732
- "proposalEvents",
733
- "biSuggestions",
734
861
  "beliefConfidence",
735
862
  "contradictions",
736
- "worktrees",
863
+ "calibrationScores",
737
864
  "tasks"
738
865
  ],
739
866
  projectionBehavior: "none"
@@ -791,22 +918,19 @@ var themesV1Manifest = defineAppPackManifest({
791
918
  },
792
919
  surfaces: {
793
920
  components: [
794
- "components/project/*",
795
- "components/belief/*",
796
- "components/question/*",
797
- "components/research/*",
798
- "components/reports/*"
921
+ "apps/web/app/lucern/tenant/_components/graph/*",
922
+ "apps/web/app/lucern/tenant/_components/workspaces/*"
799
923
  ],
800
924
  convex: [
801
- "convex/themes.ts",
802
- "convex/projects.ts",
803
- "convex/thematicWorkflow.ts",
804
- "convex/reports.ts"
925
+ "packages/reasoning-kernel/src/adapters/topics.ts",
926
+ "packages/reasoning-kernel/src/adapters/beliefs.ts",
927
+ "packages/reasoning-kernel/src/adapters/questions.ts",
928
+ "packages/reasoning-kernel/src/adapters/evidence.ts"
805
929
  ],
806
930
  tools: [
807
- "lib/ai/tools/belief-tools.ts",
808
- "lib/ai/tools/question-tools.ts",
809
- "lib/ai/tools/navigation-tools.ts"
931
+ "packages/mcp/src/handlers/beliefs.ts",
932
+ "packages/mcp/src/handlers/questions.ts",
933
+ "packages/mcp/src/handlers/evidence.ts"
810
934
  ]
811
935
  },
812
936
  policyProfile: {
@@ -822,12 +946,11 @@ var themesV1Manifest = defineAppPackManifest({
822
946
  requiredNodeTypes: ["theme", "belief", "question", "evidence", "synthesis"],
823
947
  requiredEdgeTypes: ["belongs_to", "relates_to_thesis", "informs", "tests"],
824
948
  requiredTables: [
825
- "projects",
949
+ "topics",
826
950
  "epistemicNodes",
827
951
  "epistemicEdges",
828
- "reports",
829
- "reportSections",
830
- "reportTemplates"
952
+ "workflowDefinitions",
953
+ "workflowStages"
831
954
  ],
832
955
  projectionBehavior: "projection_required"
833
956
  },
@@ -876,16 +999,15 @@ var userProfilesV1Manifest = defineAppPackManifest({
876
999
  },
877
1000
  surfaces: {
878
1001
  components: [
879
- "components/user/*",
880
- "components/philosophy/ArchetypeDisplay.tsx"
1002
+ "apps/web/app/lucern/tenant/_components/people/*",
1003
+ "apps/web/app/lucern/tenant/people/page.tsx"
881
1004
  ],
882
1005
  convex: [
883
- "convex/users.ts",
884
- "convex/userJourney.ts",
885
- "convex/userSessions.ts",
886
- "convex/userAnalytics.ts"
1006
+ "services/master-control/convex/identity.ts",
1007
+ "services/master-control/convex/userSessions.ts",
1008
+ "services/master-control/convex/groups.ts"
887
1009
  ],
888
- tools: []
1010
+ tools: ["packages/server-core/src/identity.ts"]
889
1011
  },
890
1012
  policyProfile: {
891
1013
  audiences: ["internal", "tenant_admin"],
@@ -904,13 +1026,10 @@ var userProfilesV1Manifest = defineAppPackManifest({
904
1026
  requiredEdgeTypes: [],
905
1027
  requiredTables: [
906
1028
  "users",
907
- "userEpistemicJourney",
908
1029
  "userSessions",
909
- "investorProfiles",
910
- "investorProfileAtoms",
911
- "voiceProfiles",
912
- "userVoiceSettings",
913
- "archetypeHistory"
1030
+ "principals",
1031
+ "principalIdentityAliases",
1032
+ "calibrationScores"
914
1033
  ],
915
1034
  projectionBehavior: "none"
916
1035
  },
@@ -938,6 +1057,7 @@ var userProfilesV1Manifest = defineAppPackManifest({
938
1057
  var allAppPackManifests = [
939
1058
  philosophyModeV1Manifest,
940
1059
  chatV1Manifest,
1060
+ worktreesV1Manifest,
941
1061
  graphVisualizationV1Manifest,
942
1062
  epistemicAlgorithmsV1Manifest,
943
1063
  themesV1Manifest,
@@ -950,6 +1070,6 @@ var allAppPackManifests = [
950
1070
  taskManagementV1Manifest
951
1071
  ];
952
1072
 
953
- export { allAppPackManifests, chatV1Manifest, dealsV1Manifest, decisionsV1Manifest, documentsV1Manifest, epistemicAlgorithmsV1Manifest, graphVisualizationV1Manifest, newsV1Manifest, philosophyModeV1Manifest, taskManagementV1Manifest, teamAnalysisV1Manifest, themesV1Manifest, userProfilesV1Manifest };
1073
+ export { allAppPackManifests, chatV1Manifest, dealsV1Manifest, decisionsV1Manifest, documentsV1Manifest, epistemicAlgorithmsV1Manifest, graphVisualizationV1Manifest, newsV1Manifest, philosophyModeV1Manifest, taskManagementV1Manifest, teamAnalysisV1Manifest, themesV1Manifest, userProfilesV1Manifest, worktreesV1Manifest };
954
1074
  //# sourceMappingURL=index.js.map
955
1075
  //# sourceMappingURL=index.js.map