@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.
- package/dist/domain-pack/authoring.core.d.ts +161 -0
- package/dist/domain-pack/authoring.core.js +411 -0
- package/dist/domain-pack/authoring.core.js.map +1 -0
- package/dist/domain-pack/authoring.d.ts +12 -170
- package/dist/domain-pack/authoring.js +1155 -1098
- package/dist/domain-pack/authoring.js.map +1 -1
- package/dist/domain-pack/authoring.validation.d.ts +28 -0
- package/dist/domain-pack/authoring.validation.js +1944 -0
- package/dist/domain-pack/authoring.validation.js.map +1 -0
- package/dist/domain-pack/index.d.ts +2 -1
- package/dist/domain-pack/index.js +1979 -1917
- package/dist/domain-pack/index.js.map +1 -1
- package/dist/domain-pack/packs/engineering-accelerator-tail.d.ts +256 -0
- package/dist/domain-pack/packs/engineering-accelerator-tail.js +716 -0
- package/dist/domain-pack/packs/engineering-accelerator-tail.js.map +1 -0
- package/dist/domain-pack/packs/engineering-accelerator.js +790 -785
- package/dist/domain-pack/packs/engineering-accelerator.js.map +1 -1
- package/dist/domain-pack/packs/index.js +790 -785
- package/dist/domain-pack/packs/index.js.map +1 -1
- package/dist/domain-pack.d.ts +2 -1
- package/dist/domain-pack.js +1979 -1917
- package/dist/domain-pack.js.map +1 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +1843 -1661
- package/dist/index.js.map +1 -1
- package/dist/manifests/chat-v1.js +17 -6
- package/dist/manifests/chat-v1.js.map +1 -1
- package/dist/manifests/deals-v1.js +10 -7
- package/dist/manifests/deals-v1.js.map +1 -1
- package/dist/manifests/decisions-v1.js +11 -4
- package/dist/manifests/decisions-v1.js.map +1 -1
- package/dist/manifests/documents-v1.js +12 -12
- package/dist/manifests/documents-v1.js.map +1 -1
- package/dist/manifests/epistemic-algorithms-v1.js +11 -6
- package/dist/manifests/epistemic-algorithms-v1.js.map +1 -1
- package/dist/manifests/graph-visualization-v1.js +9 -5
- package/dist/manifests/graph-visualization-v1.js.map +1 -1
- package/dist/manifests/index.d.ts +1 -0
- package/dist/manifests/index.js +230 -110
- package/dist/manifests/index.js.map +1 -1
- package/dist/manifests/news-v1.js +12 -13
- package/dist/manifests/news-v1.js.map +1 -1
- package/dist/manifests/philosophy-mode-v1.js +10 -12
- package/dist/manifests/philosophy-mode-v1.js.map +1 -1
- package/dist/manifests/sprints-v1.d.ts +10 -0
- package/dist/manifests/sprints-v1.js +106 -0
- package/dist/manifests/sprints-v1.js.map +1 -0
- package/dist/manifests/task-management-v1.js +18 -6
- package/dist/manifests/task-management-v1.js.map +1 -1
- package/dist/manifests/team-analysis-v1.js +12 -9
- package/dist/manifests/team-analysis-v1.js.map +1 -1
- package/dist/manifests/themes-v1.js +12 -16
- package/dist/manifests/themes-v1.js.map +1 -1
- package/dist/manifests/user-profiles-v1.js +9 -13
- package/dist/manifests/user-profiles-v1.js.map +1 -1
- package/dist/manifests.d.ts +1 -0
- package/dist/manifests.js +230 -110
- package/dist/manifests.js.map +1 -1
- package/dist/proof-attestation.json +1 -1
- package/dist/registry.js +229 -109
- package/dist/registry.js.map +1 -1
- package/package.json +1 -1
package/dist/manifests/index.js
CHANGED
|
@@ -44,12 +44,18 @@ var chatV1Manifest = defineAppPackManifest({
|
|
|
44
44
|
},
|
|
45
45
|
surfaces: {
|
|
46
46
|
components: [
|
|
47
|
-
"components/chat
|
|
48
|
-
"
|
|
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: [
|
|
52
|
-
|
|
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: [
|
|
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/
|
|
112
|
-
"
|
|
113
|
-
|
|
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
|
-
"
|
|
118
|
-
"
|
|
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
|
-
"
|
|
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: [
|
|
192
|
-
|
|
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
|
-
"
|
|
195
|
-
"
|
|
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: [
|
|
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
|
-
"
|
|
279
|
-
"
|
|
280
|
-
"
|
|
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: [
|
|
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: [
|
|
364
|
+
components: [
|
|
365
|
+
"apps/web/app/lucern/tenant/_components/graph/*",
|
|
366
|
+
"apps/web/lib/platform/react/components/ContradictionList.ts"
|
|
367
|
+
],
|
|
344
368
|
convex: [
|
|
345
|
-
"
|
|
346
|
-
"
|
|
347
|
-
"
|
|
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: [
|
|
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/
|
|
428
|
-
"
|
|
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
|
-
"
|
|
433
|
-
"
|
|
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: [
|
|
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
|
-
"
|
|
499
|
-
"
|
|
500
|
-
"
|
|
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: [
|
|
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
|
-
"
|
|
573
|
-
"
|
|
601
|
+
"apps/web/app/lucern/tenant/_components/people/*",
|
|
602
|
+
"apps/web/app/lucern/tenant/people/page.tsx"
|
|
574
603
|
],
|
|
575
604
|
convex: [
|
|
576
|
-
"convex/
|
|
577
|
-
"
|
|
578
|
-
"
|
|
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: [
|
|
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: [
|
|
761
|
+
components: [
|
|
762
|
+
"apps/web/app/lucern/tenant/tools/page.tsx",
|
|
763
|
+
"apps/web/app/lucern/tenant/_components/tools/*"
|
|
764
|
+
],
|
|
650
765
|
convex: [
|
|
651
|
-
"
|
|
652
|
-
"
|
|
653
|
-
"
|
|
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: [
|
|
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: [
|
|
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: [
|
|
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/
|
|
712
|
-
"convex/
|
|
713
|
-
"
|
|
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
|
-
"
|
|
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
|
-
"
|
|
795
|
-
"
|
|
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
|
-
"
|
|
802
|
-
"
|
|
803
|
-
"
|
|
804
|
-
"
|
|
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
|
-
"
|
|
808
|
-
"
|
|
809
|
-
"
|
|
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
|
-
"
|
|
949
|
+
"topics",
|
|
826
950
|
"epistemicNodes",
|
|
827
951
|
"epistemicEdges",
|
|
828
|
-
"
|
|
829
|
-
"
|
|
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
|
-
"
|
|
880
|
-
"
|
|
1002
|
+
"apps/web/app/lucern/tenant/_components/people/*",
|
|
1003
|
+
"apps/web/app/lucern/tenant/people/page.tsx"
|
|
881
1004
|
],
|
|
882
1005
|
convex: [
|
|
883
|
-
"convex/
|
|
884
|
-
"convex/
|
|
885
|
-
"convex/
|
|
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
|
-
"
|
|
910
|
-
"
|
|
911
|
-
"
|
|
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
|