@fenglimg/fabric-shared 2.0.0-rc.28 → 2.0.0-rc.30
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/{chunk-DXQVLDEB.js → chunk-225L7D4T.js} +35 -13
- package/dist/{chunk-G32HVF7H.js → chunk-Y2YBFL2G.js} +38 -14
- package/dist/i18n/index.js +1 -1
- package/dist/index-DkXJGQCD.d.ts +271 -0
- package/dist/index.d.ts +160 -244
- package/dist/index.js +44 -8
- package/dist/node/mcp-payload-guard.d.ts +3 -1
- package/dist/node/mcp-payload-guard.js +6 -2
- package/dist/schemas/api-contracts.d.ts +176 -121
- package/dist/schemas/api-contracts.js +1 -1
- package/dist/types/index.d.ts +2 -121
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { AgentsMetaNode, AgentsIdentitySource, AgentsLayer, AgentsTopologyType, HumanLockEntry, AgentsMeta, LedgerEntry } from './
|
|
2
|
-
export { AgentsActivationTier, AgentsMetaCountersEnvelope, AgentsMetaKnowledgeTypeCounters, AgentsMetaNodeActivation, AiLedgerEntry, AuditMode, ClientPaths, DefaultLayerFilter, FabricConfig, FabricLanguage, HumanLedgerEntry, McpPayloadLimits, RuleDescription, RuleDescriptionIndexItem } from './
|
|
1
|
+
import { A as AgentsMetaNode, a as AgentsIdentitySource, b as AgentsLayer, c as AgentsTopologyType, H as HumanLockEntry, f as fabricConfigSchema, d as AgentsMeta, L as LedgerEntry } from './index-DkXJGQCD.js';
|
|
2
|
+
export { e as AgentsActivationTier, g as AgentsMetaCountersEnvelope, h as AgentsMetaKnowledgeTypeCounters, i as AgentsMetaNodeActivation, j as AiLedgerEntry, k as AuditMode, C as ClientPaths, D as DefaultLayerFilter, F as FabricConfig, l as FabricLanguage, m as HumanLedgerEntry, M as McpPayloadLimits, R as RuleDescription, n as RuleDescriptionIndexItem, o as auditModeSchema, p as clientPathsSchema, q as defaultLayerFilterSchema, r as fabricLanguageSchema, s as mcpPayloadLimitsSchema, t as selectionTokenTtlMsSchema } from './index-DkXJGQCD.js';
|
|
3
3
|
export { Locale, Messages, PROTECTED_TOKENS, ProtectedToken, TranslationKey, Translator, createTranslator, defaultMessages, detectNodeLocale, enMessages, normalizeLocale, resolveFabricLocale, zhCNMessages } from './i18n/index.js';
|
|
4
4
|
import { z } from 'zod';
|
|
5
5
|
import { Layer, KnowledgeType, StableId } from './schemas/api-contracts.js';
|
|
@@ -26,7 +26,7 @@ declare const ruleDescriptionSchema: z.ZodObject<{
|
|
|
26
26
|
must_read_if: z.ZodString;
|
|
27
27
|
entities: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
28
28
|
id: z.ZodOptional<z.ZodString>;
|
|
29
|
-
knowledge_type: z.ZodOptional<z.ZodEnum<["
|
|
29
|
+
knowledge_type: z.ZodOptional<z.ZodEnum<["models", "decisions", "guidelines", "pitfalls", "processes"]>>;
|
|
30
30
|
maturity: z.ZodOptional<z.ZodEnum<["draft", "verified", "proven"]>>;
|
|
31
31
|
knowledge_layer: z.ZodOptional<z.ZodEnum<["personal", "team"]>>;
|
|
32
32
|
layer_reason: z.ZodOptional<z.ZodString>;
|
|
@@ -44,7 +44,7 @@ declare const ruleDescriptionSchema: z.ZodObject<{
|
|
|
44
44
|
must_read_if: string;
|
|
45
45
|
entities?: string[] | undefined;
|
|
46
46
|
id?: string | undefined;
|
|
47
|
-
knowledge_type?: "
|
|
47
|
+
knowledge_type?: "models" | "decisions" | "guidelines" | "pitfalls" | "processes" | undefined;
|
|
48
48
|
maturity?: "draft" | "verified" | "proven" | undefined;
|
|
49
49
|
knowledge_layer?: "personal" | "team" | undefined;
|
|
50
50
|
layer_reason?: string | undefined;
|
|
@@ -60,7 +60,7 @@ declare const ruleDescriptionSchema: z.ZodObject<{
|
|
|
60
60
|
relevance_paths?: string[] | undefined;
|
|
61
61
|
entities?: string[] | undefined;
|
|
62
62
|
id?: string | undefined;
|
|
63
|
-
knowledge_type?: "
|
|
63
|
+
knowledge_type?: "models" | "decisions" | "guidelines" | "pitfalls" | "processes" | undefined;
|
|
64
64
|
maturity?: "draft" | "verified" | "proven" | undefined;
|
|
65
65
|
knowledge_layer?: "personal" | "team" | undefined;
|
|
66
66
|
layer_reason?: string | undefined;
|
|
@@ -80,7 +80,7 @@ declare const ruleDescriptionIndexItemSchema: z.ZodObject<{
|
|
|
80
80
|
must_read_if: z.ZodString;
|
|
81
81
|
entities: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
82
82
|
id: z.ZodOptional<z.ZodString>;
|
|
83
|
-
knowledge_type: z.ZodOptional<z.ZodEnum<["
|
|
83
|
+
knowledge_type: z.ZodOptional<z.ZodEnum<["models", "decisions", "guidelines", "pitfalls", "processes"]>>;
|
|
84
84
|
maturity: z.ZodOptional<z.ZodEnum<["draft", "verified", "proven"]>>;
|
|
85
85
|
knowledge_layer: z.ZodOptional<z.ZodEnum<["personal", "team"]>>;
|
|
86
86
|
layer_reason: z.ZodOptional<z.ZodString>;
|
|
@@ -98,7 +98,7 @@ declare const ruleDescriptionIndexItemSchema: z.ZodObject<{
|
|
|
98
98
|
must_read_if: string;
|
|
99
99
|
entities?: string[] | undefined;
|
|
100
100
|
id?: string | undefined;
|
|
101
|
-
knowledge_type?: "
|
|
101
|
+
knowledge_type?: "models" | "decisions" | "guidelines" | "pitfalls" | "processes" | undefined;
|
|
102
102
|
maturity?: "draft" | "verified" | "proven" | undefined;
|
|
103
103
|
knowledge_layer?: "personal" | "team" | undefined;
|
|
104
104
|
layer_reason?: string | undefined;
|
|
@@ -114,7 +114,7 @@ declare const ruleDescriptionIndexItemSchema: z.ZodObject<{
|
|
|
114
114
|
relevance_paths?: string[] | undefined;
|
|
115
115
|
entities?: string[] | undefined;
|
|
116
116
|
id?: string | undefined;
|
|
117
|
-
knowledge_type?: "
|
|
117
|
+
knowledge_type?: "models" | "decisions" | "guidelines" | "pitfalls" | "processes" | undefined;
|
|
118
118
|
maturity?: "draft" | "verified" | "proven" | undefined;
|
|
119
119
|
knowledge_layer?: "personal" | "team" | undefined;
|
|
120
120
|
layer_reason?: string | undefined;
|
|
@@ -132,7 +132,7 @@ declare const ruleDescriptionIndexItemSchema: z.ZodObject<{
|
|
|
132
132
|
must_read_if: string;
|
|
133
133
|
entities?: string[] | undefined;
|
|
134
134
|
id?: string | undefined;
|
|
135
|
-
knowledge_type?: "
|
|
135
|
+
knowledge_type?: "models" | "decisions" | "guidelines" | "pitfalls" | "processes" | undefined;
|
|
136
136
|
maturity?: "draft" | "verified" | "proven" | undefined;
|
|
137
137
|
knowledge_layer?: "personal" | "team" | undefined;
|
|
138
138
|
layer_reason?: string | undefined;
|
|
@@ -154,7 +154,7 @@ declare const ruleDescriptionIndexItemSchema: z.ZodObject<{
|
|
|
154
154
|
relevance_paths?: string[] | undefined;
|
|
155
155
|
entities?: string[] | undefined;
|
|
156
156
|
id?: string | undefined;
|
|
157
|
-
knowledge_type?: "
|
|
157
|
+
knowledge_type?: "models" | "decisions" | "guidelines" | "pitfalls" | "processes" | undefined;
|
|
158
158
|
maturity?: "draft" | "verified" | "proven" | undefined;
|
|
159
159
|
knowledge_layer?: "personal" | "team" | undefined;
|
|
160
160
|
layer_reason?: string | undefined;
|
|
@@ -191,7 +191,7 @@ declare const agentsMetaNodeSchema: z.ZodEffects<z.ZodObject<{
|
|
|
191
191
|
must_read_if: z.ZodString;
|
|
192
192
|
entities: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
193
193
|
id: z.ZodOptional<z.ZodString>;
|
|
194
|
-
knowledge_type: z.ZodOptional<z.ZodEnum<["
|
|
194
|
+
knowledge_type: z.ZodOptional<z.ZodEnum<["models", "decisions", "guidelines", "pitfalls", "processes"]>>;
|
|
195
195
|
maturity: z.ZodOptional<z.ZodEnum<["draft", "verified", "proven"]>>;
|
|
196
196
|
knowledge_layer: z.ZodOptional<z.ZodEnum<["personal", "team"]>>;
|
|
197
197
|
layer_reason: z.ZodOptional<z.ZodString>;
|
|
@@ -209,7 +209,7 @@ declare const agentsMetaNodeSchema: z.ZodEffects<z.ZodObject<{
|
|
|
209
209
|
must_read_if: string;
|
|
210
210
|
entities?: string[] | undefined;
|
|
211
211
|
id?: string | undefined;
|
|
212
|
-
knowledge_type?: "
|
|
212
|
+
knowledge_type?: "models" | "decisions" | "guidelines" | "pitfalls" | "processes" | undefined;
|
|
213
213
|
maturity?: "draft" | "verified" | "proven" | undefined;
|
|
214
214
|
knowledge_layer?: "personal" | "team" | undefined;
|
|
215
215
|
layer_reason?: string | undefined;
|
|
@@ -225,7 +225,7 @@ declare const agentsMetaNodeSchema: z.ZodEffects<z.ZodObject<{
|
|
|
225
225
|
relevance_paths?: string[] | undefined;
|
|
226
226
|
entities?: string[] | undefined;
|
|
227
227
|
id?: string | undefined;
|
|
228
|
-
knowledge_type?: "
|
|
228
|
+
knowledge_type?: "models" | "decisions" | "guidelines" | "pitfalls" | "processes" | undefined;
|
|
229
229
|
maturity?: "draft" | "verified" | "proven" | undefined;
|
|
230
230
|
knowledge_layer?: "personal" | "team" | undefined;
|
|
231
231
|
layer_reason?: string | undefined;
|
|
@@ -258,7 +258,7 @@ declare const agentsMetaNodeSchema: z.ZodEffects<z.ZodObject<{
|
|
|
258
258
|
must_read_if: z.ZodString;
|
|
259
259
|
entities: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
260
260
|
id: z.ZodOptional<z.ZodString>;
|
|
261
|
-
knowledge_type: z.ZodOptional<z.ZodEnum<["
|
|
261
|
+
knowledge_type: z.ZodOptional<z.ZodEnum<["models", "decisions", "guidelines", "pitfalls", "processes"]>>;
|
|
262
262
|
maturity: z.ZodOptional<z.ZodEnum<["draft", "verified", "proven"]>>;
|
|
263
263
|
knowledge_layer: z.ZodOptional<z.ZodEnum<["personal", "team"]>>;
|
|
264
264
|
layer_reason: z.ZodOptional<z.ZodString>;
|
|
@@ -276,7 +276,7 @@ declare const agentsMetaNodeSchema: z.ZodEffects<z.ZodObject<{
|
|
|
276
276
|
must_read_if: string;
|
|
277
277
|
entities?: string[] | undefined;
|
|
278
278
|
id?: string | undefined;
|
|
279
|
-
knowledge_type?: "
|
|
279
|
+
knowledge_type?: "models" | "decisions" | "guidelines" | "pitfalls" | "processes" | undefined;
|
|
280
280
|
maturity?: "draft" | "verified" | "proven" | undefined;
|
|
281
281
|
knowledge_layer?: "personal" | "team" | undefined;
|
|
282
282
|
layer_reason?: string | undefined;
|
|
@@ -292,7 +292,7 @@ declare const agentsMetaNodeSchema: z.ZodEffects<z.ZodObject<{
|
|
|
292
292
|
relevance_paths?: string[] | undefined;
|
|
293
293
|
entities?: string[] | undefined;
|
|
294
294
|
id?: string | undefined;
|
|
295
|
-
knowledge_type?: "
|
|
295
|
+
knowledge_type?: "models" | "decisions" | "guidelines" | "pitfalls" | "processes" | undefined;
|
|
296
296
|
maturity?: "draft" | "verified" | "proven" | undefined;
|
|
297
297
|
knowledge_layer?: "personal" | "team" | undefined;
|
|
298
298
|
layer_reason?: string | undefined;
|
|
@@ -325,7 +325,7 @@ declare const agentsMetaNodeSchema: z.ZodEffects<z.ZodObject<{
|
|
|
325
325
|
must_read_if: z.ZodString;
|
|
326
326
|
entities: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
327
327
|
id: z.ZodOptional<z.ZodString>;
|
|
328
|
-
knowledge_type: z.ZodOptional<z.ZodEnum<["
|
|
328
|
+
knowledge_type: z.ZodOptional<z.ZodEnum<["models", "decisions", "guidelines", "pitfalls", "processes"]>>;
|
|
329
329
|
maturity: z.ZodOptional<z.ZodEnum<["draft", "verified", "proven"]>>;
|
|
330
330
|
knowledge_layer: z.ZodOptional<z.ZodEnum<["personal", "team"]>>;
|
|
331
331
|
layer_reason: z.ZodOptional<z.ZodString>;
|
|
@@ -343,7 +343,7 @@ declare const agentsMetaNodeSchema: z.ZodEffects<z.ZodObject<{
|
|
|
343
343
|
must_read_if: string;
|
|
344
344
|
entities?: string[] | undefined;
|
|
345
345
|
id?: string | undefined;
|
|
346
|
-
knowledge_type?: "
|
|
346
|
+
knowledge_type?: "models" | "decisions" | "guidelines" | "pitfalls" | "processes" | undefined;
|
|
347
347
|
maturity?: "draft" | "verified" | "proven" | undefined;
|
|
348
348
|
knowledge_layer?: "personal" | "team" | undefined;
|
|
349
349
|
layer_reason?: string | undefined;
|
|
@@ -359,7 +359,7 @@ declare const agentsMetaNodeSchema: z.ZodEffects<z.ZodObject<{
|
|
|
359
359
|
relevance_paths?: string[] | undefined;
|
|
360
360
|
entities?: string[] | undefined;
|
|
361
361
|
id?: string | undefined;
|
|
362
|
-
knowledge_type?: "
|
|
362
|
+
knowledge_type?: "models" | "decisions" | "guidelines" | "pitfalls" | "processes" | undefined;
|
|
363
363
|
maturity?: "draft" | "verified" | "proven" | undefined;
|
|
364
364
|
knowledge_layer?: "personal" | "team" | undefined;
|
|
365
365
|
layer_reason?: string | undefined;
|
|
@@ -392,7 +392,7 @@ declare const agentsMetaNodeSchema: z.ZodEffects<z.ZodObject<{
|
|
|
392
392
|
must_read_if: z.ZodString;
|
|
393
393
|
entities: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
394
394
|
id: z.ZodOptional<z.ZodString>;
|
|
395
|
-
knowledge_type: z.ZodOptional<z.ZodEnum<["
|
|
395
|
+
knowledge_type: z.ZodOptional<z.ZodEnum<["models", "decisions", "guidelines", "pitfalls", "processes"]>>;
|
|
396
396
|
maturity: z.ZodOptional<z.ZodEnum<["draft", "verified", "proven"]>>;
|
|
397
397
|
knowledge_layer: z.ZodOptional<z.ZodEnum<["personal", "team"]>>;
|
|
398
398
|
layer_reason: z.ZodOptional<z.ZodString>;
|
|
@@ -410,7 +410,7 @@ declare const agentsMetaNodeSchema: z.ZodEffects<z.ZodObject<{
|
|
|
410
410
|
must_read_if: string;
|
|
411
411
|
entities?: string[] | undefined;
|
|
412
412
|
id?: string | undefined;
|
|
413
|
-
knowledge_type?: "
|
|
413
|
+
knowledge_type?: "models" | "decisions" | "guidelines" | "pitfalls" | "processes" | undefined;
|
|
414
414
|
maturity?: "draft" | "verified" | "proven" | undefined;
|
|
415
415
|
knowledge_layer?: "personal" | "team" | undefined;
|
|
416
416
|
layer_reason?: string | undefined;
|
|
@@ -426,7 +426,7 @@ declare const agentsMetaNodeSchema: z.ZodEffects<z.ZodObject<{
|
|
|
426
426
|
relevance_paths?: string[] | undefined;
|
|
427
427
|
entities?: string[] | undefined;
|
|
428
428
|
id?: string | undefined;
|
|
429
|
-
knowledge_type?: "
|
|
429
|
+
knowledge_type?: "models" | "decisions" | "guidelines" | "pitfalls" | "processes" | undefined;
|
|
430
430
|
maturity?: "draft" | "verified" | "proven" | undefined;
|
|
431
431
|
knowledge_layer?: "personal" | "team" | undefined;
|
|
432
432
|
layer_reason?: string | undefined;
|
|
@@ -533,7 +533,7 @@ declare const agentsMetaSchema: z.ZodObject<{
|
|
|
533
533
|
must_read_if: z.ZodString;
|
|
534
534
|
entities: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
535
535
|
id: z.ZodOptional<z.ZodString>;
|
|
536
|
-
knowledge_type: z.ZodOptional<z.ZodEnum<["
|
|
536
|
+
knowledge_type: z.ZodOptional<z.ZodEnum<["models", "decisions", "guidelines", "pitfalls", "processes"]>>;
|
|
537
537
|
maturity: z.ZodOptional<z.ZodEnum<["draft", "verified", "proven"]>>;
|
|
538
538
|
knowledge_layer: z.ZodOptional<z.ZodEnum<["personal", "team"]>>;
|
|
539
539
|
layer_reason: z.ZodOptional<z.ZodString>;
|
|
@@ -551,7 +551,7 @@ declare const agentsMetaSchema: z.ZodObject<{
|
|
|
551
551
|
must_read_if: string;
|
|
552
552
|
entities?: string[] | undefined;
|
|
553
553
|
id?: string | undefined;
|
|
554
|
-
knowledge_type?: "
|
|
554
|
+
knowledge_type?: "models" | "decisions" | "guidelines" | "pitfalls" | "processes" | undefined;
|
|
555
555
|
maturity?: "draft" | "verified" | "proven" | undefined;
|
|
556
556
|
knowledge_layer?: "personal" | "team" | undefined;
|
|
557
557
|
layer_reason?: string | undefined;
|
|
@@ -567,7 +567,7 @@ declare const agentsMetaSchema: z.ZodObject<{
|
|
|
567
567
|
relevance_paths?: string[] | undefined;
|
|
568
568
|
entities?: string[] | undefined;
|
|
569
569
|
id?: string | undefined;
|
|
570
|
-
knowledge_type?: "
|
|
570
|
+
knowledge_type?: "models" | "decisions" | "guidelines" | "pitfalls" | "processes" | undefined;
|
|
571
571
|
maturity?: "draft" | "verified" | "proven" | undefined;
|
|
572
572
|
knowledge_layer?: "personal" | "team" | undefined;
|
|
573
573
|
layer_reason?: string | undefined;
|
|
@@ -600,7 +600,7 @@ declare const agentsMetaSchema: z.ZodObject<{
|
|
|
600
600
|
must_read_if: z.ZodString;
|
|
601
601
|
entities: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
602
602
|
id: z.ZodOptional<z.ZodString>;
|
|
603
|
-
knowledge_type: z.ZodOptional<z.ZodEnum<["
|
|
603
|
+
knowledge_type: z.ZodOptional<z.ZodEnum<["models", "decisions", "guidelines", "pitfalls", "processes"]>>;
|
|
604
604
|
maturity: z.ZodOptional<z.ZodEnum<["draft", "verified", "proven"]>>;
|
|
605
605
|
knowledge_layer: z.ZodOptional<z.ZodEnum<["personal", "team"]>>;
|
|
606
606
|
layer_reason: z.ZodOptional<z.ZodString>;
|
|
@@ -618,7 +618,7 @@ declare const agentsMetaSchema: z.ZodObject<{
|
|
|
618
618
|
must_read_if: string;
|
|
619
619
|
entities?: string[] | undefined;
|
|
620
620
|
id?: string | undefined;
|
|
621
|
-
knowledge_type?: "
|
|
621
|
+
knowledge_type?: "models" | "decisions" | "guidelines" | "pitfalls" | "processes" | undefined;
|
|
622
622
|
maturity?: "draft" | "verified" | "proven" | undefined;
|
|
623
623
|
knowledge_layer?: "personal" | "team" | undefined;
|
|
624
624
|
layer_reason?: string | undefined;
|
|
@@ -634,7 +634,7 @@ declare const agentsMetaSchema: z.ZodObject<{
|
|
|
634
634
|
relevance_paths?: string[] | undefined;
|
|
635
635
|
entities?: string[] | undefined;
|
|
636
636
|
id?: string | undefined;
|
|
637
|
-
knowledge_type?: "
|
|
637
|
+
knowledge_type?: "models" | "decisions" | "guidelines" | "pitfalls" | "processes" | undefined;
|
|
638
638
|
maturity?: "draft" | "verified" | "proven" | undefined;
|
|
639
639
|
knowledge_layer?: "personal" | "team" | undefined;
|
|
640
640
|
layer_reason?: string | undefined;
|
|
@@ -667,7 +667,7 @@ declare const agentsMetaSchema: z.ZodObject<{
|
|
|
667
667
|
must_read_if: z.ZodString;
|
|
668
668
|
entities: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
669
669
|
id: z.ZodOptional<z.ZodString>;
|
|
670
|
-
knowledge_type: z.ZodOptional<z.ZodEnum<["
|
|
670
|
+
knowledge_type: z.ZodOptional<z.ZodEnum<["models", "decisions", "guidelines", "pitfalls", "processes"]>>;
|
|
671
671
|
maturity: z.ZodOptional<z.ZodEnum<["draft", "verified", "proven"]>>;
|
|
672
672
|
knowledge_layer: z.ZodOptional<z.ZodEnum<["personal", "team"]>>;
|
|
673
673
|
layer_reason: z.ZodOptional<z.ZodString>;
|
|
@@ -685,7 +685,7 @@ declare const agentsMetaSchema: z.ZodObject<{
|
|
|
685
685
|
must_read_if: string;
|
|
686
686
|
entities?: string[] | undefined;
|
|
687
687
|
id?: string | undefined;
|
|
688
|
-
knowledge_type?: "
|
|
688
|
+
knowledge_type?: "models" | "decisions" | "guidelines" | "pitfalls" | "processes" | undefined;
|
|
689
689
|
maturity?: "draft" | "verified" | "proven" | undefined;
|
|
690
690
|
knowledge_layer?: "personal" | "team" | undefined;
|
|
691
691
|
layer_reason?: string | undefined;
|
|
@@ -701,7 +701,7 @@ declare const agentsMetaSchema: z.ZodObject<{
|
|
|
701
701
|
relevance_paths?: string[] | undefined;
|
|
702
702
|
entities?: string[] | undefined;
|
|
703
703
|
id?: string | undefined;
|
|
704
|
-
knowledge_type?: "
|
|
704
|
+
knowledge_type?: "models" | "decisions" | "guidelines" | "pitfalls" | "processes" | undefined;
|
|
705
705
|
maturity?: "draft" | "verified" | "proven" | undefined;
|
|
706
706
|
knowledge_layer?: "personal" | "team" | undefined;
|
|
707
707
|
layer_reason?: string | undefined;
|
|
@@ -734,7 +734,7 @@ declare const agentsMetaSchema: z.ZodObject<{
|
|
|
734
734
|
must_read_if: z.ZodString;
|
|
735
735
|
entities: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
736
736
|
id: z.ZodOptional<z.ZodString>;
|
|
737
|
-
knowledge_type: z.ZodOptional<z.ZodEnum<["
|
|
737
|
+
knowledge_type: z.ZodOptional<z.ZodEnum<["models", "decisions", "guidelines", "pitfalls", "processes"]>>;
|
|
738
738
|
maturity: z.ZodOptional<z.ZodEnum<["draft", "verified", "proven"]>>;
|
|
739
739
|
knowledge_layer: z.ZodOptional<z.ZodEnum<["personal", "team"]>>;
|
|
740
740
|
layer_reason: z.ZodOptional<z.ZodString>;
|
|
@@ -752,7 +752,7 @@ declare const agentsMetaSchema: z.ZodObject<{
|
|
|
752
752
|
must_read_if: string;
|
|
753
753
|
entities?: string[] | undefined;
|
|
754
754
|
id?: string | undefined;
|
|
755
|
-
knowledge_type?: "
|
|
755
|
+
knowledge_type?: "models" | "decisions" | "guidelines" | "pitfalls" | "processes" | undefined;
|
|
756
756
|
maturity?: "draft" | "verified" | "proven" | undefined;
|
|
757
757
|
knowledge_layer?: "personal" | "team" | undefined;
|
|
758
758
|
layer_reason?: string | undefined;
|
|
@@ -768,7 +768,7 @@ declare const agentsMetaSchema: z.ZodObject<{
|
|
|
768
768
|
relevance_paths?: string[] | undefined;
|
|
769
769
|
entities?: string[] | undefined;
|
|
770
770
|
id?: string | undefined;
|
|
771
|
-
knowledge_type?: "
|
|
771
|
+
knowledge_type?: "models" | "decisions" | "guidelines" | "pitfalls" | "processes" | undefined;
|
|
772
772
|
maturity?: "draft" | "verified" | "proven" | undefined;
|
|
773
773
|
knowledge_layer?: "personal" | "team" | undefined;
|
|
774
774
|
layer_reason?: string | undefined;
|
|
@@ -874,7 +874,7 @@ declare const agentsMetaSchema: z.ZodObject<{
|
|
|
874
874
|
must_read_if: z.ZodString;
|
|
875
875
|
entities: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
876
876
|
id: z.ZodOptional<z.ZodString>;
|
|
877
|
-
knowledge_type: z.ZodOptional<z.ZodEnum<["
|
|
877
|
+
knowledge_type: z.ZodOptional<z.ZodEnum<["models", "decisions", "guidelines", "pitfalls", "processes"]>>;
|
|
878
878
|
maturity: z.ZodOptional<z.ZodEnum<["draft", "verified", "proven"]>>;
|
|
879
879
|
knowledge_layer: z.ZodOptional<z.ZodEnum<["personal", "team"]>>;
|
|
880
880
|
layer_reason: z.ZodOptional<z.ZodString>;
|
|
@@ -892,7 +892,7 @@ declare const agentsMetaSchema: z.ZodObject<{
|
|
|
892
892
|
must_read_if: string;
|
|
893
893
|
entities?: string[] | undefined;
|
|
894
894
|
id?: string | undefined;
|
|
895
|
-
knowledge_type?: "
|
|
895
|
+
knowledge_type?: "models" | "decisions" | "guidelines" | "pitfalls" | "processes" | undefined;
|
|
896
896
|
maturity?: "draft" | "verified" | "proven" | undefined;
|
|
897
897
|
knowledge_layer?: "personal" | "team" | undefined;
|
|
898
898
|
layer_reason?: string | undefined;
|
|
@@ -908,7 +908,7 @@ declare const agentsMetaSchema: z.ZodObject<{
|
|
|
908
908
|
relevance_paths?: string[] | undefined;
|
|
909
909
|
entities?: string[] | undefined;
|
|
910
910
|
id?: string | undefined;
|
|
911
|
-
knowledge_type?: "
|
|
911
|
+
knowledge_type?: "models" | "decisions" | "guidelines" | "pitfalls" | "processes" | undefined;
|
|
912
912
|
maturity?: "draft" | "verified" | "proven" | undefined;
|
|
913
913
|
knowledge_layer?: "personal" | "team" | undefined;
|
|
914
914
|
layer_reason?: string | undefined;
|
|
@@ -964,7 +964,7 @@ declare function withDerivedAgentsMetaNodeDefaults(node: AgentsMetaNodeInput): A
|
|
|
964
964
|
* counter, even after deletion, so historical ids remain unique.
|
|
965
965
|
*
|
|
966
966
|
* @example
|
|
967
|
-
* allocateKnowledgeId('team', '
|
|
967
|
+
* allocateKnowledgeId('team', 'decisions',
|
|
968
968
|
* { KP: zeros, KT: { MOD: 0, DEC: 5, GLD: 0, PIT: 0, PRO: 0 } })
|
|
969
969
|
* // → { id: 'KT-DEC-0006',
|
|
970
970
|
* // nextCounters: { KP: zeros, KT: { ..., DEC: 6 } } }
|
|
@@ -1314,158 +1314,6 @@ declare const humanLockFileSchema: z.ZodObject<{
|
|
|
1314
1314
|
}[] | undefined;
|
|
1315
1315
|
}>;
|
|
1316
1316
|
|
|
1317
|
-
declare const auditModeSchema: z.ZodEnum<["strict", "warn", "off"]>;
|
|
1318
|
-
declare const clientPathsSchema: z.ZodObject<{
|
|
1319
|
-
claudeCodeCLI: z.ZodOptional<z.ZodString>;
|
|
1320
|
-
claudeCodeDesktop: z.ZodOptional<z.ZodString>;
|
|
1321
|
-
cursor: z.ZodOptional<z.ZodString>;
|
|
1322
|
-
codexCLI: z.ZodOptional<z.ZodString>;
|
|
1323
|
-
}, "strict", z.ZodTypeAny, {
|
|
1324
|
-
cursor?: string | undefined;
|
|
1325
|
-
claudeCodeCLI?: string | undefined;
|
|
1326
|
-
claudeCodeDesktop?: string | undefined;
|
|
1327
|
-
codexCLI?: string | undefined;
|
|
1328
|
-
}, {
|
|
1329
|
-
cursor?: string | undefined;
|
|
1330
|
-
claudeCodeCLI?: string | undefined;
|
|
1331
|
-
claudeCodeDesktop?: string | undefined;
|
|
1332
|
-
codexCLI?: string | undefined;
|
|
1333
|
-
}>;
|
|
1334
|
-
declare const mcpPayloadLimitsSchema: z.ZodOptional<z.ZodObject<{
|
|
1335
|
-
warnBytes: z.ZodOptional<z.ZodNumber>;
|
|
1336
|
-
hardBytes: z.ZodOptional<z.ZodNumber>;
|
|
1337
|
-
}, "strip", z.ZodTypeAny, {
|
|
1338
|
-
warnBytes?: number | undefined;
|
|
1339
|
-
hardBytes?: number | undefined;
|
|
1340
|
-
}, {
|
|
1341
|
-
warnBytes?: number | undefined;
|
|
1342
|
-
hardBytes?: number | undefined;
|
|
1343
|
-
}>>;
|
|
1344
|
-
declare const fabricLanguageSchema: z.ZodEnum<["match-existing", "zh-CN", "en", "zh-CN-hybrid"]>;
|
|
1345
|
-
declare const defaultLayerFilterSchema: z.ZodEnum<["team", "personal", "both"]>;
|
|
1346
|
-
declare const fabricConfigSchema: z.ZodObject<{
|
|
1347
|
-
clientPaths: z.ZodOptional<z.ZodObject<{
|
|
1348
|
-
claudeCodeCLI: z.ZodOptional<z.ZodString>;
|
|
1349
|
-
claudeCodeDesktop: z.ZodOptional<z.ZodString>;
|
|
1350
|
-
cursor: z.ZodOptional<z.ZodString>;
|
|
1351
|
-
codexCLI: z.ZodOptional<z.ZodString>;
|
|
1352
|
-
}, "strict", z.ZodTypeAny, {
|
|
1353
|
-
cursor?: string | undefined;
|
|
1354
|
-
claudeCodeCLI?: string | undefined;
|
|
1355
|
-
claudeCodeDesktop?: string | undefined;
|
|
1356
|
-
codexCLI?: string | undefined;
|
|
1357
|
-
}, {
|
|
1358
|
-
cursor?: string | undefined;
|
|
1359
|
-
claudeCodeCLI?: string | undefined;
|
|
1360
|
-
claudeCodeDesktop?: string | undefined;
|
|
1361
|
-
codexCLI?: string | undefined;
|
|
1362
|
-
}>>;
|
|
1363
|
-
scanIgnores: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1364
|
-
audit_mode: z.ZodOptional<z.ZodEnum<["strict", "warn", "off"]>>;
|
|
1365
|
-
mcpPayloadLimits: z.ZodOptional<z.ZodObject<{
|
|
1366
|
-
warnBytes: z.ZodOptional<z.ZodNumber>;
|
|
1367
|
-
hardBytes: z.ZodOptional<z.ZodNumber>;
|
|
1368
|
-
}, "strip", z.ZodTypeAny, {
|
|
1369
|
-
warnBytes?: number | undefined;
|
|
1370
|
-
hardBytes?: number | undefined;
|
|
1371
|
-
}, {
|
|
1372
|
-
warnBytes?: number | undefined;
|
|
1373
|
-
hardBytes?: number | undefined;
|
|
1374
|
-
}>>;
|
|
1375
|
-
fabric_language: z.ZodDefault<z.ZodOptional<z.ZodEnum<["match-existing", "zh-CN", "en", "zh-CN-hybrid"]>>>;
|
|
1376
|
-
default_layer_filter: z.ZodDefault<z.ZodOptional<z.ZodEnum<["team", "personal", "both"]>>>;
|
|
1377
|
-
archive_hint_cooldown_hours: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
1378
|
-
underseed_node_threshold: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
1379
|
-
archive_edit_threshold: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
1380
|
-
archive_hint_hours: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
1381
|
-
review_hint_pending_count: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
1382
|
-
review_hint_pending_age_days: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
1383
|
-
maintenance_hint_days: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
1384
|
-
maintenance_hint_cooldown_days: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
1385
|
-
import_window_first_run_months: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
1386
|
-
import_window_rerun_months: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
1387
|
-
import_max_pending_per_run: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
1388
|
-
import_max_commits_scan: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
1389
|
-
import_skip_canonical_threshold: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
1390
|
-
archive_max_candidates_per_batch: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
1391
|
-
archive_max_recent_paths: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
1392
|
-
archive_digest_max_sessions: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
1393
|
-
review_topic_result_cap: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
1394
|
-
review_stale_pending_days: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
1395
|
-
fabric_event_retention_days: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<7>, z.ZodLiteral<30>, z.ZodLiteral<90>]>>;
|
|
1396
|
-
onboard_slots_opted_out: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
1397
|
-
}, "strip", z.ZodTypeAny, {
|
|
1398
|
-
fabric_language: "match-existing" | "zh-CN" | "en" | "zh-CN-hybrid";
|
|
1399
|
-
default_layer_filter: "personal" | "team" | "both";
|
|
1400
|
-
archive_hint_cooldown_hours: number;
|
|
1401
|
-
underseed_node_threshold: number;
|
|
1402
|
-
archive_edit_threshold: number;
|
|
1403
|
-
archive_hint_hours: number;
|
|
1404
|
-
review_hint_pending_count: number;
|
|
1405
|
-
review_hint_pending_age_days: number;
|
|
1406
|
-
maintenance_hint_days: number;
|
|
1407
|
-
maintenance_hint_cooldown_days: number;
|
|
1408
|
-
import_window_first_run_months: number;
|
|
1409
|
-
import_window_rerun_months: number;
|
|
1410
|
-
import_max_pending_per_run: number;
|
|
1411
|
-
import_max_commits_scan: number;
|
|
1412
|
-
import_skip_canonical_threshold: number;
|
|
1413
|
-
archive_max_candidates_per_batch: number;
|
|
1414
|
-
archive_max_recent_paths: number;
|
|
1415
|
-
archive_digest_max_sessions: number;
|
|
1416
|
-
review_topic_result_cap: number;
|
|
1417
|
-
review_stale_pending_days: number;
|
|
1418
|
-
onboard_slots_opted_out: string[];
|
|
1419
|
-
clientPaths?: {
|
|
1420
|
-
cursor?: string | undefined;
|
|
1421
|
-
claudeCodeCLI?: string | undefined;
|
|
1422
|
-
claudeCodeDesktop?: string | undefined;
|
|
1423
|
-
codexCLI?: string | undefined;
|
|
1424
|
-
} | undefined;
|
|
1425
|
-
scanIgnores?: string[] | undefined;
|
|
1426
|
-
audit_mode?: "strict" | "warn" | "off" | undefined;
|
|
1427
|
-
mcpPayloadLimits?: {
|
|
1428
|
-
warnBytes?: number | undefined;
|
|
1429
|
-
hardBytes?: number | undefined;
|
|
1430
|
-
} | undefined;
|
|
1431
|
-
fabric_event_retention_days?: 7 | 30 | 90 | undefined;
|
|
1432
|
-
}, {
|
|
1433
|
-
clientPaths?: {
|
|
1434
|
-
cursor?: string | undefined;
|
|
1435
|
-
claudeCodeCLI?: string | undefined;
|
|
1436
|
-
claudeCodeDesktop?: string | undefined;
|
|
1437
|
-
codexCLI?: string | undefined;
|
|
1438
|
-
} | undefined;
|
|
1439
|
-
scanIgnores?: string[] | undefined;
|
|
1440
|
-
audit_mode?: "strict" | "warn" | "off" | undefined;
|
|
1441
|
-
mcpPayloadLimits?: {
|
|
1442
|
-
warnBytes?: number | undefined;
|
|
1443
|
-
hardBytes?: number | undefined;
|
|
1444
|
-
} | undefined;
|
|
1445
|
-
fabric_language?: "match-existing" | "zh-CN" | "en" | "zh-CN-hybrid" | undefined;
|
|
1446
|
-
default_layer_filter?: "personal" | "team" | "both" | undefined;
|
|
1447
|
-
archive_hint_cooldown_hours?: number | undefined;
|
|
1448
|
-
underseed_node_threshold?: number | undefined;
|
|
1449
|
-
archive_edit_threshold?: number | undefined;
|
|
1450
|
-
archive_hint_hours?: number | undefined;
|
|
1451
|
-
review_hint_pending_count?: number | undefined;
|
|
1452
|
-
review_hint_pending_age_days?: number | undefined;
|
|
1453
|
-
maintenance_hint_days?: number | undefined;
|
|
1454
|
-
maintenance_hint_cooldown_days?: number | undefined;
|
|
1455
|
-
import_window_first_run_months?: number | undefined;
|
|
1456
|
-
import_window_rerun_months?: number | undefined;
|
|
1457
|
-
import_max_pending_per_run?: number | undefined;
|
|
1458
|
-
import_max_commits_scan?: number | undefined;
|
|
1459
|
-
import_skip_canonical_threshold?: number | undefined;
|
|
1460
|
-
archive_max_candidates_per_batch?: number | undefined;
|
|
1461
|
-
archive_max_recent_paths?: number | undefined;
|
|
1462
|
-
archive_digest_max_sessions?: number | undefined;
|
|
1463
|
-
review_topic_result_cap?: number | undefined;
|
|
1464
|
-
review_stale_pending_days?: number | undefined;
|
|
1465
|
-
fabric_event_retention_days?: 7 | 30 | 90 | undefined;
|
|
1466
|
-
onboard_slots_opted_out?: string[] | undefined;
|
|
1467
|
-
}>;
|
|
1468
|
-
|
|
1469
1317
|
type FabricConfigSchemaShape = z.infer<typeof fabricConfigSchema>;
|
|
1470
1318
|
type PanelFieldGroup = "A_locale" | "B_hint_threshold" | "C_audit";
|
|
1471
1319
|
type ValidateResult = {
|
|
@@ -2472,7 +2320,7 @@ declare const metaUpdatedEventSchema: z.ZodObject<{
|
|
|
2472
2320
|
must_read_if: z.ZodString;
|
|
2473
2321
|
entities: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2474
2322
|
id: z.ZodOptional<z.ZodString>;
|
|
2475
|
-
knowledge_type: z.ZodOptional<z.ZodEnum<["
|
|
2323
|
+
knowledge_type: z.ZodOptional<z.ZodEnum<["models", "decisions", "guidelines", "pitfalls", "processes"]>>;
|
|
2476
2324
|
maturity: z.ZodOptional<z.ZodEnum<["draft", "verified", "proven"]>>;
|
|
2477
2325
|
knowledge_layer: z.ZodOptional<z.ZodEnum<["personal", "team"]>>;
|
|
2478
2326
|
layer_reason: z.ZodOptional<z.ZodString>;
|
|
@@ -2490,7 +2338,7 @@ declare const metaUpdatedEventSchema: z.ZodObject<{
|
|
|
2490
2338
|
must_read_if: string;
|
|
2491
2339
|
entities?: string[] | undefined;
|
|
2492
2340
|
id?: string | undefined;
|
|
2493
|
-
knowledge_type?: "
|
|
2341
|
+
knowledge_type?: "models" | "decisions" | "guidelines" | "pitfalls" | "processes" | undefined;
|
|
2494
2342
|
maturity?: "draft" | "verified" | "proven" | undefined;
|
|
2495
2343
|
knowledge_layer?: "personal" | "team" | undefined;
|
|
2496
2344
|
layer_reason?: string | undefined;
|
|
@@ -2506,7 +2354,7 @@ declare const metaUpdatedEventSchema: z.ZodObject<{
|
|
|
2506
2354
|
relevance_paths?: string[] | undefined;
|
|
2507
2355
|
entities?: string[] | undefined;
|
|
2508
2356
|
id?: string | undefined;
|
|
2509
|
-
knowledge_type?: "
|
|
2357
|
+
knowledge_type?: "models" | "decisions" | "guidelines" | "pitfalls" | "processes" | undefined;
|
|
2510
2358
|
maturity?: "draft" | "verified" | "proven" | undefined;
|
|
2511
2359
|
knowledge_layer?: "personal" | "team" | undefined;
|
|
2512
2360
|
layer_reason?: string | undefined;
|
|
@@ -2539,7 +2387,7 @@ declare const metaUpdatedEventSchema: z.ZodObject<{
|
|
|
2539
2387
|
must_read_if: z.ZodString;
|
|
2540
2388
|
entities: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2541
2389
|
id: z.ZodOptional<z.ZodString>;
|
|
2542
|
-
knowledge_type: z.ZodOptional<z.ZodEnum<["
|
|
2390
|
+
knowledge_type: z.ZodOptional<z.ZodEnum<["models", "decisions", "guidelines", "pitfalls", "processes"]>>;
|
|
2543
2391
|
maturity: z.ZodOptional<z.ZodEnum<["draft", "verified", "proven"]>>;
|
|
2544
2392
|
knowledge_layer: z.ZodOptional<z.ZodEnum<["personal", "team"]>>;
|
|
2545
2393
|
layer_reason: z.ZodOptional<z.ZodString>;
|
|
@@ -2557,7 +2405,7 @@ declare const metaUpdatedEventSchema: z.ZodObject<{
|
|
|
2557
2405
|
must_read_if: string;
|
|
2558
2406
|
entities?: string[] | undefined;
|
|
2559
2407
|
id?: string | undefined;
|
|
2560
|
-
knowledge_type?: "
|
|
2408
|
+
knowledge_type?: "models" | "decisions" | "guidelines" | "pitfalls" | "processes" | undefined;
|
|
2561
2409
|
maturity?: "draft" | "verified" | "proven" | undefined;
|
|
2562
2410
|
knowledge_layer?: "personal" | "team" | undefined;
|
|
2563
2411
|
layer_reason?: string | undefined;
|
|
@@ -2573,7 +2421,7 @@ declare const metaUpdatedEventSchema: z.ZodObject<{
|
|
|
2573
2421
|
relevance_paths?: string[] | undefined;
|
|
2574
2422
|
entities?: string[] | undefined;
|
|
2575
2423
|
id?: string | undefined;
|
|
2576
|
-
knowledge_type?: "
|
|
2424
|
+
knowledge_type?: "models" | "decisions" | "guidelines" | "pitfalls" | "processes" | undefined;
|
|
2577
2425
|
maturity?: "draft" | "verified" | "proven" | undefined;
|
|
2578
2426
|
knowledge_layer?: "personal" | "team" | undefined;
|
|
2579
2427
|
layer_reason?: string | undefined;
|
|
@@ -2606,7 +2454,7 @@ declare const metaUpdatedEventSchema: z.ZodObject<{
|
|
|
2606
2454
|
must_read_if: z.ZodString;
|
|
2607
2455
|
entities: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2608
2456
|
id: z.ZodOptional<z.ZodString>;
|
|
2609
|
-
knowledge_type: z.ZodOptional<z.ZodEnum<["
|
|
2457
|
+
knowledge_type: z.ZodOptional<z.ZodEnum<["models", "decisions", "guidelines", "pitfalls", "processes"]>>;
|
|
2610
2458
|
maturity: z.ZodOptional<z.ZodEnum<["draft", "verified", "proven"]>>;
|
|
2611
2459
|
knowledge_layer: z.ZodOptional<z.ZodEnum<["personal", "team"]>>;
|
|
2612
2460
|
layer_reason: z.ZodOptional<z.ZodString>;
|
|
@@ -2624,7 +2472,7 @@ declare const metaUpdatedEventSchema: z.ZodObject<{
|
|
|
2624
2472
|
must_read_if: string;
|
|
2625
2473
|
entities?: string[] | undefined;
|
|
2626
2474
|
id?: string | undefined;
|
|
2627
|
-
knowledge_type?: "
|
|
2475
|
+
knowledge_type?: "models" | "decisions" | "guidelines" | "pitfalls" | "processes" | undefined;
|
|
2628
2476
|
maturity?: "draft" | "verified" | "proven" | undefined;
|
|
2629
2477
|
knowledge_layer?: "personal" | "team" | undefined;
|
|
2630
2478
|
layer_reason?: string | undefined;
|
|
@@ -2640,7 +2488,7 @@ declare const metaUpdatedEventSchema: z.ZodObject<{
|
|
|
2640
2488
|
relevance_paths?: string[] | undefined;
|
|
2641
2489
|
entities?: string[] | undefined;
|
|
2642
2490
|
id?: string | undefined;
|
|
2643
|
-
knowledge_type?: "
|
|
2491
|
+
knowledge_type?: "models" | "decisions" | "guidelines" | "pitfalls" | "processes" | undefined;
|
|
2644
2492
|
maturity?: "draft" | "verified" | "proven" | undefined;
|
|
2645
2493
|
knowledge_layer?: "personal" | "team" | undefined;
|
|
2646
2494
|
layer_reason?: string | undefined;
|
|
@@ -2673,7 +2521,7 @@ declare const metaUpdatedEventSchema: z.ZodObject<{
|
|
|
2673
2521
|
must_read_if: z.ZodString;
|
|
2674
2522
|
entities: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2675
2523
|
id: z.ZodOptional<z.ZodString>;
|
|
2676
|
-
knowledge_type: z.ZodOptional<z.ZodEnum<["
|
|
2524
|
+
knowledge_type: z.ZodOptional<z.ZodEnum<["models", "decisions", "guidelines", "pitfalls", "processes"]>>;
|
|
2677
2525
|
maturity: z.ZodOptional<z.ZodEnum<["draft", "verified", "proven"]>>;
|
|
2678
2526
|
knowledge_layer: z.ZodOptional<z.ZodEnum<["personal", "team"]>>;
|
|
2679
2527
|
layer_reason: z.ZodOptional<z.ZodString>;
|
|
@@ -2691,7 +2539,7 @@ declare const metaUpdatedEventSchema: z.ZodObject<{
|
|
|
2691
2539
|
must_read_if: string;
|
|
2692
2540
|
entities?: string[] | undefined;
|
|
2693
2541
|
id?: string | undefined;
|
|
2694
|
-
knowledge_type?: "
|
|
2542
|
+
knowledge_type?: "models" | "decisions" | "guidelines" | "pitfalls" | "processes" | undefined;
|
|
2695
2543
|
maturity?: "draft" | "verified" | "proven" | undefined;
|
|
2696
2544
|
knowledge_layer?: "personal" | "team" | undefined;
|
|
2697
2545
|
layer_reason?: string | undefined;
|
|
@@ -2707,7 +2555,7 @@ declare const metaUpdatedEventSchema: z.ZodObject<{
|
|
|
2707
2555
|
relevance_paths?: string[] | undefined;
|
|
2708
2556
|
entities?: string[] | undefined;
|
|
2709
2557
|
id?: string | undefined;
|
|
2710
|
-
knowledge_type?: "
|
|
2558
|
+
knowledge_type?: "models" | "decisions" | "guidelines" | "pitfalls" | "processes" | undefined;
|
|
2711
2559
|
maturity?: "draft" | "verified" | "proven" | undefined;
|
|
2712
2560
|
knowledge_layer?: "personal" | "team" | undefined;
|
|
2713
2561
|
layer_reason?: string | undefined;
|
|
@@ -2813,7 +2661,7 @@ declare const metaUpdatedEventSchema: z.ZodObject<{
|
|
|
2813
2661
|
must_read_if: z.ZodString;
|
|
2814
2662
|
entities: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2815
2663
|
id: z.ZodOptional<z.ZodString>;
|
|
2816
|
-
knowledge_type: z.ZodOptional<z.ZodEnum<["
|
|
2664
|
+
knowledge_type: z.ZodOptional<z.ZodEnum<["models", "decisions", "guidelines", "pitfalls", "processes"]>>;
|
|
2817
2665
|
maturity: z.ZodOptional<z.ZodEnum<["draft", "verified", "proven"]>>;
|
|
2818
2666
|
knowledge_layer: z.ZodOptional<z.ZodEnum<["personal", "team"]>>;
|
|
2819
2667
|
layer_reason: z.ZodOptional<z.ZodString>;
|
|
@@ -2831,7 +2679,7 @@ declare const metaUpdatedEventSchema: z.ZodObject<{
|
|
|
2831
2679
|
must_read_if: string;
|
|
2832
2680
|
entities?: string[] | undefined;
|
|
2833
2681
|
id?: string | undefined;
|
|
2834
|
-
knowledge_type?: "
|
|
2682
|
+
knowledge_type?: "models" | "decisions" | "guidelines" | "pitfalls" | "processes" | undefined;
|
|
2835
2683
|
maturity?: "draft" | "verified" | "proven" | undefined;
|
|
2836
2684
|
knowledge_layer?: "personal" | "team" | undefined;
|
|
2837
2685
|
layer_reason?: string | undefined;
|
|
@@ -2847,7 +2695,7 @@ declare const metaUpdatedEventSchema: z.ZodObject<{
|
|
|
2847
2695
|
relevance_paths?: string[] | undefined;
|
|
2848
2696
|
entities?: string[] | undefined;
|
|
2849
2697
|
id?: string | undefined;
|
|
2850
|
-
knowledge_type?: "
|
|
2698
|
+
knowledge_type?: "models" | "decisions" | "guidelines" | "pitfalls" | "processes" | undefined;
|
|
2851
2699
|
maturity?: "draft" | "verified" | "proven" | undefined;
|
|
2852
2700
|
knowledge_layer?: "personal" | "team" | undefined;
|
|
2853
2701
|
layer_reason?: string | undefined;
|
|
@@ -2921,7 +2769,7 @@ declare const metaUpdatedEventSchema: z.ZodObject<{
|
|
|
2921
2769
|
must_read_if: z.ZodString;
|
|
2922
2770
|
entities: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2923
2771
|
id: z.ZodOptional<z.ZodString>;
|
|
2924
|
-
knowledge_type: z.ZodOptional<z.ZodEnum<["
|
|
2772
|
+
knowledge_type: z.ZodOptional<z.ZodEnum<["models", "decisions", "guidelines", "pitfalls", "processes"]>>;
|
|
2925
2773
|
maturity: z.ZodOptional<z.ZodEnum<["draft", "verified", "proven"]>>;
|
|
2926
2774
|
knowledge_layer: z.ZodOptional<z.ZodEnum<["personal", "team"]>>;
|
|
2927
2775
|
layer_reason: z.ZodOptional<z.ZodString>;
|
|
@@ -2939,7 +2787,7 @@ declare const metaUpdatedEventSchema: z.ZodObject<{
|
|
|
2939
2787
|
must_read_if: string;
|
|
2940
2788
|
entities?: string[] | undefined;
|
|
2941
2789
|
id?: string | undefined;
|
|
2942
|
-
knowledge_type?: "
|
|
2790
|
+
knowledge_type?: "models" | "decisions" | "guidelines" | "pitfalls" | "processes" | undefined;
|
|
2943
2791
|
maturity?: "draft" | "verified" | "proven" | undefined;
|
|
2944
2792
|
knowledge_layer?: "personal" | "team" | undefined;
|
|
2945
2793
|
layer_reason?: string | undefined;
|
|
@@ -2955,7 +2803,7 @@ declare const metaUpdatedEventSchema: z.ZodObject<{
|
|
|
2955
2803
|
relevance_paths?: string[] | undefined;
|
|
2956
2804
|
entities?: string[] | undefined;
|
|
2957
2805
|
id?: string | undefined;
|
|
2958
|
-
knowledge_type?: "
|
|
2806
|
+
knowledge_type?: "models" | "decisions" | "guidelines" | "pitfalls" | "processes" | undefined;
|
|
2959
2807
|
maturity?: "draft" | "verified" | "proven" | undefined;
|
|
2960
2808
|
knowledge_layer?: "personal" | "team" | undefined;
|
|
2961
2809
|
layer_reason?: string | undefined;
|
|
@@ -3750,7 +3598,7 @@ declare const fabricEventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
3750
3598
|
must_read_if: z.ZodString;
|
|
3751
3599
|
entities: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3752
3600
|
id: z.ZodOptional<z.ZodString>;
|
|
3753
|
-
knowledge_type: z.ZodOptional<z.ZodEnum<["
|
|
3601
|
+
knowledge_type: z.ZodOptional<z.ZodEnum<["models", "decisions", "guidelines", "pitfalls", "processes"]>>;
|
|
3754
3602
|
maturity: z.ZodOptional<z.ZodEnum<["draft", "verified", "proven"]>>;
|
|
3755
3603
|
knowledge_layer: z.ZodOptional<z.ZodEnum<["personal", "team"]>>;
|
|
3756
3604
|
layer_reason: z.ZodOptional<z.ZodString>;
|
|
@@ -3768,7 +3616,7 @@ declare const fabricEventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
3768
3616
|
must_read_if: string;
|
|
3769
3617
|
entities?: string[] | undefined;
|
|
3770
3618
|
id?: string | undefined;
|
|
3771
|
-
knowledge_type?: "
|
|
3619
|
+
knowledge_type?: "models" | "decisions" | "guidelines" | "pitfalls" | "processes" | undefined;
|
|
3772
3620
|
maturity?: "draft" | "verified" | "proven" | undefined;
|
|
3773
3621
|
knowledge_layer?: "personal" | "team" | undefined;
|
|
3774
3622
|
layer_reason?: string | undefined;
|
|
@@ -3784,7 +3632,7 @@ declare const fabricEventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
3784
3632
|
relevance_paths?: string[] | undefined;
|
|
3785
3633
|
entities?: string[] | undefined;
|
|
3786
3634
|
id?: string | undefined;
|
|
3787
|
-
knowledge_type?: "
|
|
3635
|
+
knowledge_type?: "models" | "decisions" | "guidelines" | "pitfalls" | "processes" | undefined;
|
|
3788
3636
|
maturity?: "draft" | "verified" | "proven" | undefined;
|
|
3789
3637
|
knowledge_layer?: "personal" | "team" | undefined;
|
|
3790
3638
|
layer_reason?: string | undefined;
|
|
@@ -3817,7 +3665,7 @@ declare const fabricEventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
3817
3665
|
must_read_if: z.ZodString;
|
|
3818
3666
|
entities: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3819
3667
|
id: z.ZodOptional<z.ZodString>;
|
|
3820
|
-
knowledge_type: z.ZodOptional<z.ZodEnum<["
|
|
3668
|
+
knowledge_type: z.ZodOptional<z.ZodEnum<["models", "decisions", "guidelines", "pitfalls", "processes"]>>;
|
|
3821
3669
|
maturity: z.ZodOptional<z.ZodEnum<["draft", "verified", "proven"]>>;
|
|
3822
3670
|
knowledge_layer: z.ZodOptional<z.ZodEnum<["personal", "team"]>>;
|
|
3823
3671
|
layer_reason: z.ZodOptional<z.ZodString>;
|
|
@@ -3835,7 +3683,7 @@ declare const fabricEventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
3835
3683
|
must_read_if: string;
|
|
3836
3684
|
entities?: string[] | undefined;
|
|
3837
3685
|
id?: string | undefined;
|
|
3838
|
-
knowledge_type?: "
|
|
3686
|
+
knowledge_type?: "models" | "decisions" | "guidelines" | "pitfalls" | "processes" | undefined;
|
|
3839
3687
|
maturity?: "draft" | "verified" | "proven" | undefined;
|
|
3840
3688
|
knowledge_layer?: "personal" | "team" | undefined;
|
|
3841
3689
|
layer_reason?: string | undefined;
|
|
@@ -3851,7 +3699,7 @@ declare const fabricEventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
3851
3699
|
relevance_paths?: string[] | undefined;
|
|
3852
3700
|
entities?: string[] | undefined;
|
|
3853
3701
|
id?: string | undefined;
|
|
3854
|
-
knowledge_type?: "
|
|
3702
|
+
knowledge_type?: "models" | "decisions" | "guidelines" | "pitfalls" | "processes" | undefined;
|
|
3855
3703
|
maturity?: "draft" | "verified" | "proven" | undefined;
|
|
3856
3704
|
knowledge_layer?: "personal" | "team" | undefined;
|
|
3857
3705
|
layer_reason?: string | undefined;
|
|
@@ -3884,7 +3732,7 @@ declare const fabricEventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
3884
3732
|
must_read_if: z.ZodString;
|
|
3885
3733
|
entities: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3886
3734
|
id: z.ZodOptional<z.ZodString>;
|
|
3887
|
-
knowledge_type: z.ZodOptional<z.ZodEnum<["
|
|
3735
|
+
knowledge_type: z.ZodOptional<z.ZodEnum<["models", "decisions", "guidelines", "pitfalls", "processes"]>>;
|
|
3888
3736
|
maturity: z.ZodOptional<z.ZodEnum<["draft", "verified", "proven"]>>;
|
|
3889
3737
|
knowledge_layer: z.ZodOptional<z.ZodEnum<["personal", "team"]>>;
|
|
3890
3738
|
layer_reason: z.ZodOptional<z.ZodString>;
|
|
@@ -3902,7 +3750,7 @@ declare const fabricEventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
3902
3750
|
must_read_if: string;
|
|
3903
3751
|
entities?: string[] | undefined;
|
|
3904
3752
|
id?: string | undefined;
|
|
3905
|
-
knowledge_type?: "
|
|
3753
|
+
knowledge_type?: "models" | "decisions" | "guidelines" | "pitfalls" | "processes" | undefined;
|
|
3906
3754
|
maturity?: "draft" | "verified" | "proven" | undefined;
|
|
3907
3755
|
knowledge_layer?: "personal" | "team" | undefined;
|
|
3908
3756
|
layer_reason?: string | undefined;
|
|
@@ -3918,7 +3766,7 @@ declare const fabricEventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
3918
3766
|
relevance_paths?: string[] | undefined;
|
|
3919
3767
|
entities?: string[] | undefined;
|
|
3920
3768
|
id?: string | undefined;
|
|
3921
|
-
knowledge_type?: "
|
|
3769
|
+
knowledge_type?: "models" | "decisions" | "guidelines" | "pitfalls" | "processes" | undefined;
|
|
3922
3770
|
maturity?: "draft" | "verified" | "proven" | undefined;
|
|
3923
3771
|
knowledge_layer?: "personal" | "team" | undefined;
|
|
3924
3772
|
layer_reason?: string | undefined;
|
|
@@ -3951,7 +3799,7 @@ declare const fabricEventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
3951
3799
|
must_read_if: z.ZodString;
|
|
3952
3800
|
entities: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3953
3801
|
id: z.ZodOptional<z.ZodString>;
|
|
3954
|
-
knowledge_type: z.ZodOptional<z.ZodEnum<["
|
|
3802
|
+
knowledge_type: z.ZodOptional<z.ZodEnum<["models", "decisions", "guidelines", "pitfalls", "processes"]>>;
|
|
3955
3803
|
maturity: z.ZodOptional<z.ZodEnum<["draft", "verified", "proven"]>>;
|
|
3956
3804
|
knowledge_layer: z.ZodOptional<z.ZodEnum<["personal", "team"]>>;
|
|
3957
3805
|
layer_reason: z.ZodOptional<z.ZodString>;
|
|
@@ -3969,7 +3817,7 @@ declare const fabricEventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
3969
3817
|
must_read_if: string;
|
|
3970
3818
|
entities?: string[] | undefined;
|
|
3971
3819
|
id?: string | undefined;
|
|
3972
|
-
knowledge_type?: "
|
|
3820
|
+
knowledge_type?: "models" | "decisions" | "guidelines" | "pitfalls" | "processes" | undefined;
|
|
3973
3821
|
maturity?: "draft" | "verified" | "proven" | undefined;
|
|
3974
3822
|
knowledge_layer?: "personal" | "team" | undefined;
|
|
3975
3823
|
layer_reason?: string | undefined;
|
|
@@ -3985,7 +3833,7 @@ declare const fabricEventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
3985
3833
|
relevance_paths?: string[] | undefined;
|
|
3986
3834
|
entities?: string[] | undefined;
|
|
3987
3835
|
id?: string | undefined;
|
|
3988
|
-
knowledge_type?: "
|
|
3836
|
+
knowledge_type?: "models" | "decisions" | "guidelines" | "pitfalls" | "processes" | undefined;
|
|
3989
3837
|
maturity?: "draft" | "verified" | "proven" | undefined;
|
|
3990
3838
|
knowledge_layer?: "personal" | "team" | undefined;
|
|
3991
3839
|
layer_reason?: string | undefined;
|
|
@@ -4091,7 +3939,7 @@ declare const fabricEventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4091
3939
|
must_read_if: z.ZodString;
|
|
4092
3940
|
entities: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4093
3941
|
id: z.ZodOptional<z.ZodString>;
|
|
4094
|
-
knowledge_type: z.ZodOptional<z.ZodEnum<["
|
|
3942
|
+
knowledge_type: z.ZodOptional<z.ZodEnum<["models", "decisions", "guidelines", "pitfalls", "processes"]>>;
|
|
4095
3943
|
maturity: z.ZodOptional<z.ZodEnum<["draft", "verified", "proven"]>>;
|
|
4096
3944
|
knowledge_layer: z.ZodOptional<z.ZodEnum<["personal", "team"]>>;
|
|
4097
3945
|
layer_reason: z.ZodOptional<z.ZodString>;
|
|
@@ -4109,7 +3957,7 @@ declare const fabricEventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4109
3957
|
must_read_if: string;
|
|
4110
3958
|
entities?: string[] | undefined;
|
|
4111
3959
|
id?: string | undefined;
|
|
4112
|
-
knowledge_type?: "
|
|
3960
|
+
knowledge_type?: "models" | "decisions" | "guidelines" | "pitfalls" | "processes" | undefined;
|
|
4113
3961
|
maturity?: "draft" | "verified" | "proven" | undefined;
|
|
4114
3962
|
knowledge_layer?: "personal" | "team" | undefined;
|
|
4115
3963
|
layer_reason?: string | undefined;
|
|
@@ -4125,7 +3973,7 @@ declare const fabricEventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4125
3973
|
relevance_paths?: string[] | undefined;
|
|
4126
3974
|
entities?: string[] | undefined;
|
|
4127
3975
|
id?: string | undefined;
|
|
4128
|
-
knowledge_type?: "
|
|
3976
|
+
knowledge_type?: "models" | "decisions" | "guidelines" | "pitfalls" | "processes" | undefined;
|
|
4129
3977
|
maturity?: "draft" | "verified" | "proven" | undefined;
|
|
4130
3978
|
knowledge_layer?: "personal" | "team" | undefined;
|
|
4131
3979
|
layer_reason?: string | undefined;
|
|
@@ -4199,7 +4047,7 @@ declare const fabricEventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4199
4047
|
must_read_if: z.ZodString;
|
|
4200
4048
|
entities: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4201
4049
|
id: z.ZodOptional<z.ZodString>;
|
|
4202
|
-
knowledge_type: z.ZodOptional<z.ZodEnum<["
|
|
4050
|
+
knowledge_type: z.ZodOptional<z.ZodEnum<["models", "decisions", "guidelines", "pitfalls", "processes"]>>;
|
|
4203
4051
|
maturity: z.ZodOptional<z.ZodEnum<["draft", "verified", "proven"]>>;
|
|
4204
4052
|
knowledge_layer: z.ZodOptional<z.ZodEnum<["personal", "team"]>>;
|
|
4205
4053
|
layer_reason: z.ZodOptional<z.ZodString>;
|
|
@@ -4217,7 +4065,7 @@ declare const fabricEventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4217
4065
|
must_read_if: string;
|
|
4218
4066
|
entities?: string[] | undefined;
|
|
4219
4067
|
id?: string | undefined;
|
|
4220
|
-
knowledge_type?: "
|
|
4068
|
+
knowledge_type?: "models" | "decisions" | "guidelines" | "pitfalls" | "processes" | undefined;
|
|
4221
4069
|
maturity?: "draft" | "verified" | "proven" | undefined;
|
|
4222
4070
|
knowledge_layer?: "personal" | "team" | undefined;
|
|
4223
4071
|
layer_reason?: string | undefined;
|
|
@@ -4233,7 +4081,7 @@ declare const fabricEventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4233
4081
|
relevance_paths?: string[] | undefined;
|
|
4234
4082
|
entities?: string[] | undefined;
|
|
4235
4083
|
id?: string | undefined;
|
|
4236
|
-
knowledge_type?: "
|
|
4084
|
+
knowledge_type?: "models" | "decisions" | "guidelines" | "pitfalls" | "processes" | undefined;
|
|
4237
4085
|
maturity?: "draft" | "verified" | "proven" | undefined;
|
|
4238
4086
|
knowledge_layer?: "personal" | "team" | undefined;
|
|
4239
4087
|
layer_reason?: string | undefined;
|
|
@@ -5337,6 +5185,40 @@ declare const reapplyCompletedEventSchema: z.ZodObject<{
|
|
|
5337
5185
|
correlation_id?: string | undefined;
|
|
5338
5186
|
session_id?: string | undefined;
|
|
5339
5187
|
}>;
|
|
5188
|
+
declare const installDiffAppliedEventSchema: z.ZodObject<{
|
|
5189
|
+
event_type: z.ZodLiteral<"install_diff_applied">;
|
|
5190
|
+
applied: z.ZodArray<z.ZodString, "many">;
|
|
5191
|
+
canonical: z.ZodArray<z.ZodString, "many">;
|
|
5192
|
+
drifted: z.ZodArray<z.ZodString, "many">;
|
|
5193
|
+
kind: z.ZodLiteral<"fabric-event">;
|
|
5194
|
+
id: z.ZodString;
|
|
5195
|
+
ts: z.ZodNumber;
|
|
5196
|
+
schema_version: z.ZodLiteral<1>;
|
|
5197
|
+
correlation_id: z.ZodOptional<z.ZodString>;
|
|
5198
|
+
session_id: z.ZodOptional<z.ZodString>;
|
|
5199
|
+
}, "strip", z.ZodTypeAny, {
|
|
5200
|
+
canonical: string[];
|
|
5201
|
+
drifted: string[];
|
|
5202
|
+
id: string;
|
|
5203
|
+
ts: number;
|
|
5204
|
+
schema_version: 1;
|
|
5205
|
+
kind: "fabric-event";
|
|
5206
|
+
event_type: "install_diff_applied";
|
|
5207
|
+
applied: string[];
|
|
5208
|
+
correlation_id?: string | undefined;
|
|
5209
|
+
session_id?: string | undefined;
|
|
5210
|
+
}, {
|
|
5211
|
+
canonical: string[];
|
|
5212
|
+
drifted: string[];
|
|
5213
|
+
id: string;
|
|
5214
|
+
ts: number;
|
|
5215
|
+
schema_version: 1;
|
|
5216
|
+
kind: "fabric-event";
|
|
5217
|
+
event_type: "install_diff_applied";
|
|
5218
|
+
applied: string[];
|
|
5219
|
+
correlation_id?: string | undefined;
|
|
5220
|
+
session_id?: string | undefined;
|
|
5221
|
+
}>;
|
|
5340
5222
|
declare const eventLedgerTruncatedEventSchema: z.ZodObject<{
|
|
5341
5223
|
event_type: z.ZodLiteral<"event_ledger_truncated">;
|
|
5342
5224
|
byte_offset: z.ZodNumber;
|
|
@@ -5480,7 +5362,7 @@ declare const metaReconciledEventSchema: z.ZodObject<{
|
|
|
5480
5362
|
event_type: z.ZodLiteral<"meta_reconciled">;
|
|
5481
5363
|
reconciled_files: z.ZodArray<z.ZodString, "many">;
|
|
5482
5364
|
duration_ms: z.ZodNumber;
|
|
5483
|
-
trigger: z.ZodEnum<["doctor", "manual", "auto-heal-description", "post-approve", "post-modify"]>;
|
|
5365
|
+
trigger: z.ZodEnum<["doctor", "manual", "auto-heal-description", "auto-heal-after-drift", "post-approve", "post-modify"]>;
|
|
5484
5366
|
source: z.ZodLiteral<"reconcileKnowledge">;
|
|
5485
5367
|
force_write_reason: z.ZodOptional<z.ZodEnum<["revision_drift"]>>;
|
|
5486
5368
|
kind: z.ZodLiteral<"fabric-event">;
|
|
@@ -5498,7 +5380,7 @@ declare const metaReconciledEventSchema: z.ZodObject<{
|
|
|
5498
5380
|
event_type: "meta_reconciled";
|
|
5499
5381
|
reconciled_files: string[];
|
|
5500
5382
|
duration_ms: number;
|
|
5501
|
-
trigger: "manual" | "doctor" | "auto-heal-description" | "post-approve" | "post-modify";
|
|
5383
|
+
trigger: "manual" | "doctor" | "auto-heal-description" | "auto-heal-after-drift" | "post-approve" | "post-modify";
|
|
5502
5384
|
correlation_id?: string | undefined;
|
|
5503
5385
|
session_id?: string | undefined;
|
|
5504
5386
|
force_write_reason?: "revision_drift" | undefined;
|
|
@@ -5511,7 +5393,7 @@ declare const metaReconciledEventSchema: z.ZodObject<{
|
|
|
5511
5393
|
event_type: "meta_reconciled";
|
|
5512
5394
|
reconciled_files: string[];
|
|
5513
5395
|
duration_ms: number;
|
|
5514
|
-
trigger: "manual" | "doctor" | "auto-heal-description" | "post-approve" | "post-modify";
|
|
5396
|
+
trigger: "manual" | "doctor" | "auto-heal-description" | "auto-heal-after-drift" | "post-approve" | "post-modify";
|
|
5515
5397
|
correlation_id?: string | undefined;
|
|
5516
5398
|
session_id?: string | undefined;
|
|
5517
5399
|
force_write_reason?: "revision_drift" | undefined;
|
|
@@ -6302,7 +6184,7 @@ declare const assistantTurnObservedEventSchema: z.ZodObject<{
|
|
|
6302
6184
|
turn_id: string;
|
|
6303
6185
|
correlation_id?: string | undefined;
|
|
6304
6186
|
session_id?: string | undefined;
|
|
6305
|
-
client?: "
|
|
6187
|
+
client?: "cursor" | "cc" | "codex" | undefined;
|
|
6306
6188
|
envelope_index?: number | undefined;
|
|
6307
6189
|
}, {
|
|
6308
6190
|
id: string;
|
|
@@ -6324,7 +6206,7 @@ declare const assistantTurnObservedEventSchema: z.ZodObject<{
|
|
|
6324
6206
|
}[];
|
|
6325
6207
|
skip_reason: string | null;
|
|
6326
6208
|
}[] | undefined;
|
|
6327
|
-
client?: "
|
|
6209
|
+
client?: "cursor" | "cc" | "codex" | undefined;
|
|
6328
6210
|
envelope_index?: number | undefined;
|
|
6329
6211
|
}>;
|
|
6330
6212
|
declare const citePolicyActivatedEventSchema: z.ZodObject<{
|
|
@@ -6495,7 +6377,7 @@ declare const knowledgeEnrichedEventSchema: z.ZodObject<{
|
|
|
6495
6377
|
event_type: z.ZodLiteral<"knowledge_enriched">;
|
|
6496
6378
|
path: z.ZodString;
|
|
6497
6379
|
added_fields: z.ZodArray<z.ZodEnum<["intent_clues", "tech_stack", "impact", "must_read_if"]>, "many">;
|
|
6498
|
-
mode: z.ZodEnum<["auto", "interactive"]>;
|
|
6380
|
+
mode: z.ZodEnum<["auto", "preview", "readonly", "interactive"]>;
|
|
6499
6381
|
timestamp: z.ZodString;
|
|
6500
6382
|
kind: z.ZodLiteral<"fabric-event">;
|
|
6501
6383
|
id: z.ZodString;
|
|
@@ -6511,7 +6393,7 @@ declare const knowledgeEnrichedEventSchema: z.ZodObject<{
|
|
|
6511
6393
|
kind: "fabric-event";
|
|
6512
6394
|
event_type: "knowledge_enriched";
|
|
6513
6395
|
timestamp: string;
|
|
6514
|
-
mode: "auto" | "interactive";
|
|
6396
|
+
mode: "auto" | "preview" | "readonly" | "interactive";
|
|
6515
6397
|
added_fields: ("intent_clues" | "tech_stack" | "impact" | "must_read_if")[];
|
|
6516
6398
|
correlation_id?: string | undefined;
|
|
6517
6399
|
session_id?: string | undefined;
|
|
@@ -6523,7 +6405,7 @@ declare const knowledgeEnrichedEventSchema: z.ZodObject<{
|
|
|
6523
6405
|
kind: "fabric-event";
|
|
6524
6406
|
event_type: "knowledge_enriched";
|
|
6525
6407
|
timestamp: string;
|
|
6526
|
-
mode: "auto" | "interactive";
|
|
6408
|
+
mode: "auto" | "preview" | "readonly" | "interactive";
|
|
6527
6409
|
added_fields: ("intent_clues" | "tech_stack" | "impact" | "must_read_if")[];
|
|
6528
6410
|
correlation_id?: string | undefined;
|
|
6529
6411
|
session_id?: string | undefined;
|
|
@@ -6899,6 +6781,39 @@ declare const eventLedgerEventSchema: z.ZodDiscriminatedUnion<"event_type", [z.Z
|
|
|
6899
6781
|
rules_count: number;
|
|
6900
6782
|
correlation_id?: string | undefined;
|
|
6901
6783
|
session_id?: string | undefined;
|
|
6784
|
+
}>, z.ZodObject<{
|
|
6785
|
+
event_type: z.ZodLiteral<"install_diff_applied">;
|
|
6786
|
+
applied: z.ZodArray<z.ZodString, "many">;
|
|
6787
|
+
canonical: z.ZodArray<z.ZodString, "many">;
|
|
6788
|
+
drifted: z.ZodArray<z.ZodString, "many">;
|
|
6789
|
+
kind: z.ZodLiteral<"fabric-event">;
|
|
6790
|
+
id: z.ZodString;
|
|
6791
|
+
ts: z.ZodNumber;
|
|
6792
|
+
schema_version: z.ZodLiteral<1>;
|
|
6793
|
+
correlation_id: z.ZodOptional<z.ZodString>;
|
|
6794
|
+
session_id: z.ZodOptional<z.ZodString>;
|
|
6795
|
+
}, "strip", z.ZodTypeAny, {
|
|
6796
|
+
canonical: string[];
|
|
6797
|
+
drifted: string[];
|
|
6798
|
+
id: string;
|
|
6799
|
+
ts: number;
|
|
6800
|
+
schema_version: 1;
|
|
6801
|
+
kind: "fabric-event";
|
|
6802
|
+
event_type: "install_diff_applied";
|
|
6803
|
+
applied: string[];
|
|
6804
|
+
correlation_id?: string | undefined;
|
|
6805
|
+
session_id?: string | undefined;
|
|
6806
|
+
}, {
|
|
6807
|
+
canonical: string[];
|
|
6808
|
+
drifted: string[];
|
|
6809
|
+
id: string;
|
|
6810
|
+
ts: number;
|
|
6811
|
+
schema_version: 1;
|
|
6812
|
+
kind: "fabric-event";
|
|
6813
|
+
event_type: "install_diff_applied";
|
|
6814
|
+
applied: string[];
|
|
6815
|
+
correlation_id?: string | undefined;
|
|
6816
|
+
session_id?: string | undefined;
|
|
6902
6817
|
}>, z.ZodObject<{
|
|
6903
6818
|
event_type: z.ZodLiteral<"event_ledger_truncated">;
|
|
6904
6819
|
byte_offset: z.ZodNumber;
|
|
@@ -7038,7 +6953,7 @@ declare const eventLedgerEventSchema: z.ZodDiscriminatedUnion<"event_type", [z.Z
|
|
|
7038
6953
|
event_type: z.ZodLiteral<"meta_reconciled">;
|
|
7039
6954
|
reconciled_files: z.ZodArray<z.ZodString, "many">;
|
|
7040
6955
|
duration_ms: z.ZodNumber;
|
|
7041
|
-
trigger: z.ZodEnum<["doctor", "manual", "auto-heal-description", "post-approve", "post-modify"]>;
|
|
6956
|
+
trigger: z.ZodEnum<["doctor", "manual", "auto-heal-description", "auto-heal-after-drift", "post-approve", "post-modify"]>;
|
|
7042
6957
|
source: z.ZodLiteral<"reconcileKnowledge">;
|
|
7043
6958
|
force_write_reason: z.ZodOptional<z.ZodEnum<["revision_drift"]>>;
|
|
7044
6959
|
kind: z.ZodLiteral<"fabric-event">;
|
|
@@ -7056,7 +6971,7 @@ declare const eventLedgerEventSchema: z.ZodDiscriminatedUnion<"event_type", [z.Z
|
|
|
7056
6971
|
event_type: "meta_reconciled";
|
|
7057
6972
|
reconciled_files: string[];
|
|
7058
6973
|
duration_ms: number;
|
|
7059
|
-
trigger: "manual" | "doctor" | "auto-heal-description" | "post-approve" | "post-modify";
|
|
6974
|
+
trigger: "manual" | "doctor" | "auto-heal-description" | "auto-heal-after-drift" | "post-approve" | "post-modify";
|
|
7060
6975
|
correlation_id?: string | undefined;
|
|
7061
6976
|
session_id?: string | undefined;
|
|
7062
6977
|
force_write_reason?: "revision_drift" | undefined;
|
|
@@ -7069,7 +6984,7 @@ declare const eventLedgerEventSchema: z.ZodDiscriminatedUnion<"event_type", [z.Z
|
|
|
7069
6984
|
event_type: "meta_reconciled";
|
|
7070
6985
|
reconciled_files: string[];
|
|
7071
6986
|
duration_ms: number;
|
|
7072
|
-
trigger: "manual" | "doctor" | "auto-heal-description" | "post-approve" | "post-modify";
|
|
6987
|
+
trigger: "manual" | "doctor" | "auto-heal-description" | "auto-heal-after-drift" | "post-approve" | "post-modify";
|
|
7073
6988
|
correlation_id?: string | undefined;
|
|
7074
6989
|
session_id?: string | undefined;
|
|
7075
6990
|
force_write_reason?: "revision_drift" | undefined;
|
|
@@ -7838,7 +7753,7 @@ declare const eventLedgerEventSchema: z.ZodDiscriminatedUnion<"event_type", [z.Z
|
|
|
7838
7753
|
turn_id: string;
|
|
7839
7754
|
correlation_id?: string | undefined;
|
|
7840
7755
|
session_id?: string | undefined;
|
|
7841
|
-
client?: "
|
|
7756
|
+
client?: "cursor" | "cc" | "codex" | undefined;
|
|
7842
7757
|
envelope_index?: number | undefined;
|
|
7843
7758
|
}, {
|
|
7844
7759
|
id: string;
|
|
@@ -7860,7 +7775,7 @@ declare const eventLedgerEventSchema: z.ZodDiscriminatedUnion<"event_type", [z.Z
|
|
|
7860
7775
|
}[];
|
|
7861
7776
|
skip_reason: string | null;
|
|
7862
7777
|
}[] | undefined;
|
|
7863
|
-
client?: "
|
|
7778
|
+
client?: "cursor" | "cc" | "codex" | undefined;
|
|
7864
7779
|
envelope_index?: number | undefined;
|
|
7865
7780
|
}>, z.ZodObject<{
|
|
7866
7781
|
event_type: z.ZodLiteral<"cite_policy_activated">;
|
|
@@ -8025,7 +7940,7 @@ declare const eventLedgerEventSchema: z.ZodDiscriminatedUnion<"event_type", [z.Z
|
|
|
8025
7940
|
event_type: z.ZodLiteral<"knowledge_enriched">;
|
|
8026
7941
|
path: z.ZodString;
|
|
8027
7942
|
added_fields: z.ZodArray<z.ZodEnum<["intent_clues", "tech_stack", "impact", "must_read_if"]>, "many">;
|
|
8028
|
-
mode: z.ZodEnum<["auto", "interactive"]>;
|
|
7943
|
+
mode: z.ZodEnum<["auto", "preview", "readonly", "interactive"]>;
|
|
8029
7944
|
timestamp: z.ZodString;
|
|
8030
7945
|
kind: z.ZodLiteral<"fabric-event">;
|
|
8031
7946
|
id: z.ZodString;
|
|
@@ -8041,7 +7956,7 @@ declare const eventLedgerEventSchema: z.ZodDiscriminatedUnion<"event_type", [z.Z
|
|
|
8041
7956
|
kind: "fabric-event";
|
|
8042
7957
|
event_type: "knowledge_enriched";
|
|
8043
7958
|
timestamp: string;
|
|
8044
|
-
mode: "auto" | "interactive";
|
|
7959
|
+
mode: "auto" | "preview" | "readonly" | "interactive";
|
|
8045
7960
|
added_fields: ("intent_clues" | "tech_stack" | "impact" | "must_read_if")[];
|
|
8046
7961
|
correlation_id?: string | undefined;
|
|
8047
7962
|
session_id?: string | undefined;
|
|
@@ -8053,7 +7968,7 @@ declare const eventLedgerEventSchema: z.ZodDiscriminatedUnion<"event_type", [z.Z
|
|
|
8053
7968
|
kind: "fabric-event";
|
|
8054
7969
|
event_type: "knowledge_enriched";
|
|
8055
7970
|
timestamp: string;
|
|
8056
|
-
mode: "auto" | "interactive";
|
|
7971
|
+
mode: "auto" | "preview" | "readonly" | "interactive";
|
|
8057
7972
|
added_fields: ("intent_clues" | "tech_stack" | "impact" | "must_read_if")[];
|
|
8058
7973
|
correlation_id?: string | undefined;
|
|
8059
7974
|
session_id?: string | undefined;
|
|
@@ -8101,6 +8016,7 @@ type EditIntentCheckedEvent = z.infer<typeof editIntentCheckedEventSchema>;
|
|
|
8101
8016
|
type KnowledgeDriftDetectedEvent = z.infer<typeof knowledgeDriftDetectedEventSchema>;
|
|
8102
8017
|
type McpEventLedgerEvent = z.infer<typeof mcpEventLedgerEventSchema>;
|
|
8103
8018
|
type ReapplyCompletedEvent = z.infer<typeof reapplyCompletedEventSchema>;
|
|
8019
|
+
type InstallDiffAppliedEvent = z.infer<typeof installDiffAppliedEventSchema>;
|
|
8104
8020
|
type EventLedgerTruncatedEvent = z.infer<typeof eventLedgerTruncatedEventSchema>;
|
|
8105
8021
|
type McpConfigMigratedEvent = z.infer<typeof mcpConfigMigratedEventSchema>;
|
|
8106
8022
|
type BootstrapMarkerMigratedEvent = z.infer<typeof bootstrapMarkerMigratedEventSchema>;
|
|
@@ -8135,7 +8051,7 @@ type EventsRotatedEvent = z.infer<typeof eventsRotatedEventSchema>;
|
|
|
8135
8051
|
type ServeLockClearedEvent = z.infer<typeof serveLockClearedEventSchema>;
|
|
8136
8052
|
type KnowledgeEnrichedEvent = z.infer<typeof knowledgeEnrichedEventSchema>;
|
|
8137
8053
|
type SessionArchiveAttemptedEvent = z.infer<typeof sessionArchiveAttemptedEventSchema>;
|
|
8138
|
-
type EventLedgerEvent = KnowledgeContextPlannedEvent | KnowledgeSelectionEvent | KnowledgeSectionsFetchedEvent | EditIntentCheckedEvent | KnowledgeDriftDetectedEvent | McpEventLedgerEvent | ReapplyCompletedEvent | EventLedgerTruncatedEvent | McpConfigMigratedEvent | BootstrapMarkerMigratedEvent | MetaReconciledOnStartupEvent | MetaReconciledEvent | ClaudeSkillPathMigratedEvent | ClaudeHookPathMigratedEvent | CodexSkillPathMigratedEvent | InitScanCompletedEvent | KnowledgeProposedEvent | KnowledgePromoteStartedEvent | KnowledgePromotedEvent | KnowledgePromoteFailedEvent | KnowledgeLayerChangedEvent | KnowledgeSlugRenamedEvent | KnowledgeDemotedEvent | KnowledgeArchivedEvent | KnowledgeArchiveAttemptedEvent | KnowledgeDeferredEvent | KnowledgeRejectedEvent | KnowledgeConsumedEvent | KnowledgeScopeDegradedEvent | PendingAutoArchivedEvent | KnowledgePathDangledEvent | DoctorRunEvent | RelevanceMigrationRunEvent | AssistantTurnObservedEvent | CitePolicyActivatedEvent | CiteContractPolicyActivatedEvent | KnowledgeMetaAutoHealedEvent | EventsRotatedEvent | ServeLockClearedEvent | KnowledgeEnrichedEvent | SessionArchiveAttemptedEvent;
|
|
8054
|
+
type EventLedgerEvent = KnowledgeContextPlannedEvent | KnowledgeSelectionEvent | KnowledgeSectionsFetchedEvent | EditIntentCheckedEvent | KnowledgeDriftDetectedEvent | McpEventLedgerEvent | ReapplyCompletedEvent | InstallDiffAppliedEvent | EventLedgerTruncatedEvent | McpConfigMigratedEvent | BootstrapMarkerMigratedEvent | MetaReconciledOnStartupEvent | MetaReconciledEvent | ClaudeSkillPathMigratedEvent | ClaudeHookPathMigratedEvent | CodexSkillPathMigratedEvent | InitScanCompletedEvent | KnowledgeProposedEvent | KnowledgePromoteStartedEvent | KnowledgePromotedEvent | KnowledgePromoteFailedEvent | KnowledgeLayerChangedEvent | KnowledgeSlugRenamedEvent | KnowledgeDemotedEvent | KnowledgeArchivedEvent | KnowledgeArchiveAttemptedEvent | KnowledgeDeferredEvent | KnowledgeRejectedEvent | KnowledgeConsumedEvent | KnowledgeScopeDegradedEvent | PendingAutoArchivedEvent | KnowledgePathDangledEvent | DoctorRunEvent | RelevanceMigrationRunEvent | AssistantTurnObservedEvent | CitePolicyActivatedEvent | CiteContractPolicyActivatedEvent | KnowledgeMetaAutoHealedEvent | EventsRotatedEvent | ServeLockClearedEvent | KnowledgeEnrichedEvent | SessionArchiveAttemptedEvent;
|
|
8139
8055
|
type EventLedgerEventType = EventLedgerEvent["event_type"];
|
|
8140
8056
|
type EventLedgerEventInputFor<T extends EventLedgerEvent> = T extends EventLedgerEvent ? Omit<T, "kind" | "id" | "ts" | "schema_version" | "correlation_id" | "session_id"> & Partial<Pick<T, "id" | "ts" | "correlation_id" | "session_id">> : never;
|
|
8141
8057
|
type EventLedgerEventInput = EventLedgerEventInputFor<EventLedgerEvent>;
|
|
@@ -8170,4 +8086,4 @@ interface ParseCiteLineResult {
|
|
|
8170
8086
|
*/
|
|
8171
8087
|
declare function parseCiteLine(raw: string): ParseCiteLineResult;
|
|
8172
8088
|
|
|
8173
|
-
export { AGENTS_META_IDENTITY_SOURCES, AGENTS_META_LAYERS, AGENTS_META_TOPOLOGY_TYPES, AgentsIdentitySource, AgentsLayer, AgentsMeta, type AgentsMetaCounters, AgentsMetaCountersSchema, AgentsMetaNode, AgentsTopologyType, type AssistantTurnObservedEvent, type BootstrapMarkerMigratedEvent, type CandidateFileEntry, type CandidateFileFamily, type CiteCommitment, type CiteCommitmentOperator, type CiteCommitmentOperatorKind, type CiteContractPolicyActivatedEvent, type CitePolicyActivatedEvent, type CiteTag, type ClaudeHookPathMigratedEvent, type ClaudeSkillPathMigratedEvent, type CodexSkillPathMigratedEvent, type DoctorRunEvent, type DriftDetectedEvent, type EditIntentCheckedEvent, type EventLedgerEvent, type EventLedgerEventInput, type EventLedgerEventType, type EventLedgerTruncatedEvent, type EventsRotatedEvent, type FabricConfigSchemaShape, type FabricEvent, type ForensicAssertion, type ForensicAssertionConfidence, type ForensicAssertionCoverage, type ForensicAssertionType, type ForensicCodeSample, type ForensicEntryPoint, type ForensicEvidenceAnchor, type ForensicFramework, type ForensicReadme, type ForensicReport, type ForensicSamplingBudget, type ForensicTopology, HumanLockEntry, type HumanLockFile, type InitContext, type InitContextDomainGroup, type InitContextFramework, type InitContextInterviewTrailEntry, type InitContextInvariant, type InitContextInvariantConfidenceSnapshot, type InitContextSourceEvidence, type InitScanCompletedEvent, KNOWLEDGE_TEST_INDEX_SCHEMA_VERSION, type KnowledgeArchiveAttemptedEvent, type KnowledgeArchivedEvent, type KnowledgeConsumedEvent, type KnowledgeContextPlannedEvent, type KnowledgeDeferredEvent, type KnowledgeDemotedEvent, type KnowledgeDriftDetectedEvent, type KnowledgeEnrichedEvent, type KnowledgeLayerChangedEvent, type KnowledgeMetaAutoHealedEvent, type KnowledgePathDangledEvent, type KnowledgePromoteFailedEvent, type KnowledgePromoteStartedEvent, type KnowledgePromotedEvent, type KnowledgeProposedEvent, type KnowledgeRejectedEvent, type KnowledgeScopeDegradedEvent, type KnowledgeSectionsFetchedEvent, type KnowledgeSelectionEvent, type KnowledgeSlugRenamedEvent, type KnowledgeTestIndex, type KnowledgeTestLink, type KnowledgeTestOrphanAnnotation, KnowledgeType, Layer, type LedgerAppendedEvent, LedgerEntry, type LockApprovedEvent, type LockDriftEvent, type McpConfigMigratedEvent, type McpEventLedgerEvent, type MetaReconciledEvent, type MetaReconciledOnStartupEvent, type MetaUpdatedEvent, ONBOARD_SLOT_NAMES, ONBOARD_SLOT_TOTAL, type OnboardSlot, type PanelFieldGroup, type PanelFieldMeta, type ParseCiteLineResult, type PendingAutoArchivedEvent, type ReapplyCompletedEvent, type RelevanceMigrationRunEvent, type ServeLockClearedEvent, type SessionArchiveAttemptedEvent, StableId, type ValidateResult, agentsIdentitySourceSchema, agentsLayerSchema, agentsMetaNodeSchema, agentsMetaSchema, agentsTopologyTypeSchema, aiLedgerEntrySchema, allocateKnowledgeId, assistantTurnObservedEventSchema,
|
|
8089
|
+
export { AGENTS_META_IDENTITY_SOURCES, AGENTS_META_LAYERS, AGENTS_META_TOPOLOGY_TYPES, AgentsIdentitySource, AgentsLayer, AgentsMeta, type AgentsMetaCounters, AgentsMetaCountersSchema, AgentsMetaNode, AgentsTopologyType, type AssistantTurnObservedEvent, type BootstrapMarkerMigratedEvent, type CandidateFileEntry, type CandidateFileFamily, type CiteCommitment, type CiteCommitmentOperator, type CiteCommitmentOperatorKind, type CiteContractPolicyActivatedEvent, type CitePolicyActivatedEvent, type CiteTag, type ClaudeHookPathMigratedEvent, type ClaudeSkillPathMigratedEvent, type CodexSkillPathMigratedEvent, type DoctorRunEvent, type DriftDetectedEvent, type EditIntentCheckedEvent, type EventLedgerEvent, type EventLedgerEventInput, type EventLedgerEventType, type EventLedgerTruncatedEvent, type EventsRotatedEvent, type FabricConfigSchemaShape, type FabricEvent, type ForensicAssertion, type ForensicAssertionConfidence, type ForensicAssertionCoverage, type ForensicAssertionType, type ForensicCodeSample, type ForensicEntryPoint, type ForensicEvidenceAnchor, type ForensicFramework, type ForensicReadme, type ForensicReport, type ForensicSamplingBudget, type ForensicTopology, HumanLockEntry, type HumanLockFile, type InitContext, type InitContextDomainGroup, type InitContextFramework, type InitContextInterviewTrailEntry, type InitContextInvariant, type InitContextInvariantConfidenceSnapshot, type InitContextSourceEvidence, type InitScanCompletedEvent, type InstallDiffAppliedEvent, KNOWLEDGE_TEST_INDEX_SCHEMA_VERSION, type KnowledgeArchiveAttemptedEvent, type KnowledgeArchivedEvent, type KnowledgeConsumedEvent, type KnowledgeContextPlannedEvent, type KnowledgeDeferredEvent, type KnowledgeDemotedEvent, type KnowledgeDriftDetectedEvent, type KnowledgeEnrichedEvent, type KnowledgeLayerChangedEvent, type KnowledgeMetaAutoHealedEvent, type KnowledgePathDangledEvent, type KnowledgePromoteFailedEvent, type KnowledgePromoteStartedEvent, type KnowledgePromotedEvent, type KnowledgeProposedEvent, type KnowledgeRejectedEvent, type KnowledgeScopeDegradedEvent, type KnowledgeSectionsFetchedEvent, type KnowledgeSelectionEvent, type KnowledgeSlugRenamedEvent, type KnowledgeTestIndex, type KnowledgeTestLink, type KnowledgeTestOrphanAnnotation, KnowledgeType, Layer, type LedgerAppendedEvent, LedgerEntry, type LockApprovedEvent, type LockDriftEvent, type McpConfigMigratedEvent, type McpEventLedgerEvent, type MetaReconciledEvent, type MetaReconciledOnStartupEvent, type MetaUpdatedEvent, ONBOARD_SLOT_NAMES, ONBOARD_SLOT_TOTAL, type OnboardSlot, type PanelFieldGroup, type PanelFieldMeta, type ParseCiteLineResult, type PendingAutoArchivedEvent, type ReapplyCompletedEvent, type RelevanceMigrationRunEvent, type ServeLockClearedEvent, type SessionArchiveAttemptedEvent, StableId, type ValidateResult, agentsIdentitySourceSchema, agentsLayerSchema, agentsMetaNodeSchema, agentsMetaSchema, agentsTopologyTypeSchema, aiLedgerEntrySchema, allocateKnowledgeId, assistantTurnObservedEventSchema, bootstrapMarkerMigratedEventSchema, candidateFileEntrySchema, citeContractPolicyActivatedEventSchema, citePolicyActivatedEventSchema, claudeHookPathMigratedEventSchema, claudeSkillPathMigratedEventSchema, codexSkillPathMigratedEventSchema, defaultAgentsMetaCounters, deriveAgentsMetaIdentitySource, deriveAgentsMetaLayer, deriveAgentsMetaStableId, deriveAgentsMetaTopologyType, doctorRunEventSchema, driftDetectedEventSchema, editIntentCheckedEventSchema, eventLedgerEventSchema, eventLedgerTruncatedEventSchema, eventsRotatedEventSchema, fabricConfigSchema, fabricEventSchema, forensicAssertionCoverageSchema, forensicAssertionSchema, forensicCodeSampleSchema, forensicEntryPointSchema, forensicEvidenceAnchorSchema, forensicFrameworkSchema, forensicReadmeSchema, forensicReportSchema, forensicSamplingBudgetSchema, forensicTopologySchema, getPanelFieldByKey, getPanelFields, humanLedgerEntrySchema, humanLockEntrySchema, humanLockFileSchema, initContextDomainGroupSchema, initContextFrameworkSchema, initContextInterviewTrailEntrySchema, initContextInvariantConfidenceSnapshotSchema, initContextInvariantSchema, initContextSchema, initContextSourceEvidenceSchema, initScanCompletedEventSchema, installDiffAppliedEventSchema, isKnowledgeStableId, knowledgeArchiveAttemptedEventSchema, knowledgeArchivedEventSchema, knowledgeConsumedEventSchema, knowledgeContextPlannedEventSchema, knowledgeDeferredEventSchema, knowledgeDemotedEventSchema, knowledgeDriftDetectedEventSchema, knowledgeEnrichedEventSchema, knowledgeLayerChangedEventSchema, knowledgeMetaAutoHealedEventSchema, knowledgePathDangledEventSchema, knowledgePromoteFailedEventSchema, knowledgePromoteStartedEventSchema, knowledgePromotedEventSchema, knowledgeProposedEventSchema, knowledgeRejectedEventSchema, knowledgeScopeDegradedEventSchema, knowledgeSectionsFetchedEventSchema, knowledgeSelectionEventSchema, knowledgeSlugRenamedEventSchema, knowledgeTestIndexSchema, knowledgeTestLinkSchema, knowledgeTestOrphanAnnotationSchema, ledgerAppendedEventSchema, ledgerEntrySchema, lockApprovedEventSchema, lockDriftEventSchema, mcpConfigMigratedEventSchema, mcpEventLedgerEventSchema, metaReconciledEventSchema, metaReconciledOnStartupEventSchema, metaUpdatedEventSchema, onboardSlotSchema, parseCiteLine, pendingAutoArchivedEventSchema, reapplyCompletedEventSchema, relevanceMigrationRunEventSchema, ruleDescriptionIndexItemSchema, ruleDescriptionSchema, serveLockClearedEventSchema, sessionArchiveAttemptedEventSchema, withDerivedAgentsMetaNodeDefaults };
|