@lucern/pack-host 0.3.0-alpha.9 → 1.0.1
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 +2 -1
|
@@ -0,0 +1,256 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Private tail for the engineering accelerator domain pack.
|
|
3
|
+
*/
|
|
4
|
+
declare const ENGINEERING_ACCELERATOR_TAIL: {
|
|
5
|
+
inquiryShaping: {
|
|
6
|
+
questionTemplates: ({
|
|
7
|
+
templateId: string;
|
|
8
|
+
questionType: "comparison";
|
|
9
|
+
priority: "high";
|
|
10
|
+
template: string;
|
|
11
|
+
whenObjectiveIncludes: string[];
|
|
12
|
+
} | {
|
|
13
|
+
templateId: string;
|
|
14
|
+
questionType: "falsification";
|
|
15
|
+
priority: "critical";
|
|
16
|
+
template: string;
|
|
17
|
+
whenObjectiveIncludes: string[];
|
|
18
|
+
} | {
|
|
19
|
+
templateId: string;
|
|
20
|
+
questionType: "counterfactual";
|
|
21
|
+
priority: "high";
|
|
22
|
+
template: string;
|
|
23
|
+
whenObjectiveIncludes: string[];
|
|
24
|
+
} | {
|
|
25
|
+
templateId: string;
|
|
26
|
+
questionType: "mechanism";
|
|
27
|
+
priority: "high";
|
|
28
|
+
template: string;
|
|
29
|
+
whenObjectiveIncludes: string[];
|
|
30
|
+
} | {
|
|
31
|
+
templateId: string;
|
|
32
|
+
questionType: "validation";
|
|
33
|
+
priority: "high";
|
|
34
|
+
template: string;
|
|
35
|
+
whenObjectiveIncludes: string[];
|
|
36
|
+
})[];
|
|
37
|
+
taskTemplates: ({
|
|
38
|
+
templateId: string;
|
|
39
|
+
title: string;
|
|
40
|
+
description: string;
|
|
41
|
+
taskType: "analysis";
|
|
42
|
+
priority: "urgent";
|
|
43
|
+
whenObjectiveIncludes: string[];
|
|
44
|
+
} | {
|
|
45
|
+
templateId: string;
|
|
46
|
+
title: string;
|
|
47
|
+
description: string;
|
|
48
|
+
taskType: "analysis";
|
|
49
|
+
priority: "high";
|
|
50
|
+
whenObjectiveIncludes: string[];
|
|
51
|
+
} | {
|
|
52
|
+
templateId: string;
|
|
53
|
+
title: string;
|
|
54
|
+
description: string;
|
|
55
|
+
taskType: "review";
|
|
56
|
+
priority: "high";
|
|
57
|
+
whenObjectiveIncludes: string[];
|
|
58
|
+
} | {
|
|
59
|
+
templateId: string;
|
|
60
|
+
title: string;
|
|
61
|
+
description: string;
|
|
62
|
+
taskType: "analysis";
|
|
63
|
+
priority: "medium";
|
|
64
|
+
whenObjectiveIncludes: string[];
|
|
65
|
+
})[];
|
|
66
|
+
frameworkHints: {
|
|
67
|
+
frameworkName: string;
|
|
68
|
+
whenObjectiveIncludes: string[];
|
|
69
|
+
boost: number;
|
|
70
|
+
reason: string;
|
|
71
|
+
}[];
|
|
72
|
+
};
|
|
73
|
+
operatingSystem: {
|
|
74
|
+
prompts: ({
|
|
75
|
+
promptId: string;
|
|
76
|
+
description: string;
|
|
77
|
+
source: "file";
|
|
78
|
+
ref: string;
|
|
79
|
+
channel: "bootstrap";
|
|
80
|
+
required: true;
|
|
81
|
+
runtimeTargets: ("claude-code" | "hybrid")[];
|
|
82
|
+
} | {
|
|
83
|
+
promptId: string;
|
|
84
|
+
description: string;
|
|
85
|
+
source: "file";
|
|
86
|
+
ref: string;
|
|
87
|
+
channel: "workflow";
|
|
88
|
+
required: true;
|
|
89
|
+
runtimeTargets: ("claude-code" | "codex" | "hybrid")[];
|
|
90
|
+
} | {
|
|
91
|
+
promptId: string;
|
|
92
|
+
description: string;
|
|
93
|
+
source: "file";
|
|
94
|
+
ref: string;
|
|
95
|
+
channel: "analysis";
|
|
96
|
+
required: true;
|
|
97
|
+
runtimeTargets: ("claude-code" | "codex" | "hybrid")[];
|
|
98
|
+
} | {
|
|
99
|
+
promptId: string;
|
|
100
|
+
description: string;
|
|
101
|
+
source: "file";
|
|
102
|
+
ref: string;
|
|
103
|
+
channel: "review";
|
|
104
|
+
required: true;
|
|
105
|
+
runtimeTargets: ("claude-code" | "codex" | "hybrid")[];
|
|
106
|
+
} | {
|
|
107
|
+
promptId: string;
|
|
108
|
+
description: string;
|
|
109
|
+
source: "langfuse";
|
|
110
|
+
ref: string;
|
|
111
|
+
channel: "analysis";
|
|
112
|
+
required: true;
|
|
113
|
+
runtimeTargets: ("claude-code" | "codex" | "hybrid" | "portable")[];
|
|
114
|
+
} | {
|
|
115
|
+
promptId: string;
|
|
116
|
+
description: string;
|
|
117
|
+
source: "langfuse";
|
|
118
|
+
ref: string;
|
|
119
|
+
channel: "review";
|
|
120
|
+
required: true;
|
|
121
|
+
runtimeTargets: ("claude-code" | "codex" | "hybrid" | "portable")[];
|
|
122
|
+
})[];
|
|
123
|
+
tools: ({
|
|
124
|
+
toolId: string;
|
|
125
|
+
description: string;
|
|
126
|
+
kind: "mcp";
|
|
127
|
+
entrypoint: string;
|
|
128
|
+
required: true;
|
|
129
|
+
runtimeTargets: ("claude-code" | "codex" | "hybrid" | "portable")[];
|
|
130
|
+
} | {
|
|
131
|
+
toolId: string;
|
|
132
|
+
description: string;
|
|
133
|
+
kind: "hook";
|
|
134
|
+
entrypoint: string;
|
|
135
|
+
required: true;
|
|
136
|
+
runtimeTargets: ("claude-code" | "hybrid")[];
|
|
137
|
+
} | {
|
|
138
|
+
toolId: string;
|
|
139
|
+
description: string;
|
|
140
|
+
kind: "cli";
|
|
141
|
+
entrypoint: string;
|
|
142
|
+
required: true;
|
|
143
|
+
runtimeTargets: ("claude-code" | "codex" | "hybrid")[];
|
|
144
|
+
})[];
|
|
145
|
+
setupAssets: ({
|
|
146
|
+
assetId: string;
|
|
147
|
+
kind: "instruction";
|
|
148
|
+
description: string;
|
|
149
|
+
path: string;
|
|
150
|
+
required: true;
|
|
151
|
+
runtimeTargets: ("claude-code" | "hybrid")[];
|
|
152
|
+
} | {
|
|
153
|
+
assetId: string;
|
|
154
|
+
kind: "instruction";
|
|
155
|
+
description: string;
|
|
156
|
+
path: string;
|
|
157
|
+
required: true;
|
|
158
|
+
runtimeTargets: ("codex" | "hybrid")[];
|
|
159
|
+
} | {
|
|
160
|
+
assetId: string;
|
|
161
|
+
kind: "manifest";
|
|
162
|
+
description: string;
|
|
163
|
+
path: string;
|
|
164
|
+
required: true;
|
|
165
|
+
runtimeTargets: ("claude-code" | "codex" | "hybrid")[];
|
|
166
|
+
} | {
|
|
167
|
+
assetId: string;
|
|
168
|
+
kind: "script";
|
|
169
|
+
description: string;
|
|
170
|
+
path: string;
|
|
171
|
+
required: true;
|
|
172
|
+
runtimeTargets: ("claude-code" | "codex" | "hybrid")[];
|
|
173
|
+
} | {
|
|
174
|
+
assetId: string;
|
|
175
|
+
kind: "settings";
|
|
176
|
+
description: string;
|
|
177
|
+
path: string;
|
|
178
|
+
required: true;
|
|
179
|
+
runtimeTargets: ("claude-code" | "hybrid")[];
|
|
180
|
+
} | {
|
|
181
|
+
assetId: string;
|
|
182
|
+
kind: "hook";
|
|
183
|
+
description: string;
|
|
184
|
+
path: string;
|
|
185
|
+
required: true;
|
|
186
|
+
runtimeTargets: ("claude-code" | "hybrid")[];
|
|
187
|
+
} | {
|
|
188
|
+
assetId: string;
|
|
189
|
+
kind: "template";
|
|
190
|
+
description: string;
|
|
191
|
+
path: string;
|
|
192
|
+
required: true;
|
|
193
|
+
runtimeTargets: ("claude-code" | "codex" | "hybrid")[];
|
|
194
|
+
} | {
|
|
195
|
+
assetId: string;
|
|
196
|
+
kind: "agent";
|
|
197
|
+
description: string;
|
|
198
|
+
path: string;
|
|
199
|
+
required: true;
|
|
200
|
+
runtimeTargets: ("claude-code" | "hybrid")[];
|
|
201
|
+
} | {
|
|
202
|
+
assetId: string;
|
|
203
|
+
kind: "skill";
|
|
204
|
+
description: string;
|
|
205
|
+
path: string;
|
|
206
|
+
required: true;
|
|
207
|
+
runtimeTargets: ("claude-code" | "hybrid")[];
|
|
208
|
+
} | {
|
|
209
|
+
assetId: string;
|
|
210
|
+
kind: "ui";
|
|
211
|
+
description: string;
|
|
212
|
+
path: string;
|
|
213
|
+
required: false;
|
|
214
|
+
runtimeTargets: ("claude-code" | "codex" | "hybrid" | "portable")[];
|
|
215
|
+
})[];
|
|
216
|
+
topicTemplates: {
|
|
217
|
+
slug: string;
|
|
218
|
+
name: string;
|
|
219
|
+
description: string;
|
|
220
|
+
parentSlug: string;
|
|
221
|
+
ontologyId: string;
|
|
222
|
+
}[];
|
|
223
|
+
installProfiles: ({
|
|
224
|
+
profileId: string;
|
|
225
|
+
name: string;
|
|
226
|
+
description: string;
|
|
227
|
+
runtimeTarget: "claude-code";
|
|
228
|
+
promptIds: string[];
|
|
229
|
+
toolIds: string[];
|
|
230
|
+
assetIds: string[];
|
|
231
|
+
defaultTopicSlugs: string[];
|
|
232
|
+
} | {
|
|
233
|
+
profileId: string;
|
|
234
|
+
name: string;
|
|
235
|
+
description: string;
|
|
236
|
+
runtimeTarget: "codex";
|
|
237
|
+
promptIds: string[];
|
|
238
|
+
toolIds: string[];
|
|
239
|
+
assetIds: string[];
|
|
240
|
+
defaultTopicSlugs: string[];
|
|
241
|
+
} | {
|
|
242
|
+
profileId: string;
|
|
243
|
+
name: string;
|
|
244
|
+
description: string;
|
|
245
|
+
runtimeTarget: "hybrid";
|
|
246
|
+
promptIds: string[];
|
|
247
|
+
toolIds: string[];
|
|
248
|
+
assetIds: string[];
|
|
249
|
+
defaultTopicSlugs: string[];
|
|
250
|
+
})[];
|
|
251
|
+
};
|
|
252
|
+
appPackKeys: string[];
|
|
253
|
+
methodologyPackId: string;
|
|
254
|
+
};
|
|
255
|
+
|
|
256
|
+
export { ENGINEERING_ACCELERATOR_TAIL };
|