holomime 2.1.0 → 2.2.0
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/README.md +10 -3
- package/dist/cli.js +143 -41
- package/dist/index.d.ts +94 -517
- package/dist/index.js +61 -6
- package/dist/mcp-server.js +49 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -3173,8 +3173,8 @@ declare function extractRecommendations(turns: SessionTurn[]): string[];
|
|
|
3173
3173
|
* spec changes as structured JSON. This means the therapy conversation
|
|
3174
3174
|
* itself drives the personality evolution — not just a lookup table.
|
|
3175
3175
|
*
|
|
3176
|
-
* Stack-aware: When the project uses the identity stack (soul.md +
|
|
3177
|
-
* body.api + conscience.exe), patches are routed to the correct source file
|
|
3176
|
+
* Stack-aware: When the project uses the identity stack (soul.md + mind.sys +
|
|
3177
|
+
* purpose.cfg + shadow.log + body.api + conscience.exe + ego.runtime), patches are routed to the correct source file
|
|
3178
3178
|
* instead of mutating .personality.json directly. After patching, the stack
|
|
3179
3179
|
* is recompiled to regenerate .personality.json.
|
|
3180
3180
|
*/
|
|
@@ -7375,6 +7375,91 @@ declare const egoSchema: z.ZodObject<{
|
|
|
7375
7375
|
}[] | undefined;
|
|
7376
7376
|
}>;
|
|
7377
7377
|
type Ego = z.infer<typeof egoSchema>;
|
|
7378
|
+
declare const memorySchema: z.ZodObject<{
|
|
7379
|
+
version: z.ZodDefault<z.ZodString>;
|
|
7380
|
+
learned_contexts: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
7381
|
+
situation: z.ZodString;
|
|
7382
|
+
response: z.ZodString;
|
|
7383
|
+
outcome: z.ZodEnum<["positive", "neutral", "negative"]>;
|
|
7384
|
+
timestamp: z.ZodOptional<z.ZodString>;
|
|
7385
|
+
}, "strip", z.ZodTypeAny, {
|
|
7386
|
+
outcome: "neutral" | "positive" | "negative";
|
|
7387
|
+
situation: string;
|
|
7388
|
+
response: string;
|
|
7389
|
+
timestamp?: string | undefined;
|
|
7390
|
+
}, {
|
|
7391
|
+
outcome: "neutral" | "positive" | "negative";
|
|
7392
|
+
situation: string;
|
|
7393
|
+
response: string;
|
|
7394
|
+
timestamp?: string | undefined;
|
|
7395
|
+
}>, "many">>;
|
|
7396
|
+
interaction_patterns: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
7397
|
+
pattern: z.ZodString;
|
|
7398
|
+
frequency: z.ZodDefault<z.ZodNumber>;
|
|
7399
|
+
effectiveness: z.ZodDefault<z.ZodNumber>;
|
|
7400
|
+
}, "strip", z.ZodTypeAny, {
|
|
7401
|
+
pattern: string;
|
|
7402
|
+
frequency: number;
|
|
7403
|
+
effectiveness: number;
|
|
7404
|
+
}, {
|
|
7405
|
+
pattern: string;
|
|
7406
|
+
frequency?: number | undefined;
|
|
7407
|
+
effectiveness?: number | undefined;
|
|
7408
|
+
}>, "many">>;
|
|
7409
|
+
knowledge_gained: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
7410
|
+
relationship_history: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
7411
|
+
entity: z.ZodString;
|
|
7412
|
+
trust_level: z.ZodDefault<z.ZodNumber>;
|
|
7413
|
+
interaction_count: z.ZodDefault<z.ZodNumber>;
|
|
7414
|
+
}, "strip", z.ZodTypeAny, {
|
|
7415
|
+
entity: string;
|
|
7416
|
+
trust_level: number;
|
|
7417
|
+
interaction_count: number;
|
|
7418
|
+
}, {
|
|
7419
|
+
entity: string;
|
|
7420
|
+
trust_level?: number | undefined;
|
|
7421
|
+
interaction_count?: number | undefined;
|
|
7422
|
+
}>, "many">>;
|
|
7423
|
+
}, "strip", z.ZodTypeAny, {
|
|
7424
|
+
version: string;
|
|
7425
|
+
learned_contexts: {
|
|
7426
|
+
outcome: "neutral" | "positive" | "negative";
|
|
7427
|
+
situation: string;
|
|
7428
|
+
response: string;
|
|
7429
|
+
timestamp?: string | undefined;
|
|
7430
|
+
}[];
|
|
7431
|
+
interaction_patterns: {
|
|
7432
|
+
pattern: string;
|
|
7433
|
+
frequency: number;
|
|
7434
|
+
effectiveness: number;
|
|
7435
|
+
}[];
|
|
7436
|
+
knowledge_gained: string[];
|
|
7437
|
+
relationship_history: {
|
|
7438
|
+
entity: string;
|
|
7439
|
+
trust_level: number;
|
|
7440
|
+
interaction_count: number;
|
|
7441
|
+
}[];
|
|
7442
|
+
}, {
|
|
7443
|
+
version?: string | undefined;
|
|
7444
|
+
learned_contexts?: {
|
|
7445
|
+
outcome: "neutral" | "positive" | "negative";
|
|
7446
|
+
situation: string;
|
|
7447
|
+
response: string;
|
|
7448
|
+
timestamp?: string | undefined;
|
|
7449
|
+
}[] | undefined;
|
|
7450
|
+
interaction_patterns?: {
|
|
7451
|
+
pattern: string;
|
|
7452
|
+
frequency?: number | undefined;
|
|
7453
|
+
effectiveness?: number | undefined;
|
|
7454
|
+
}[] | undefined;
|
|
7455
|
+
knowledge_gained?: string[] | undefined;
|
|
7456
|
+
relationship_history?: {
|
|
7457
|
+
entity: string;
|
|
7458
|
+
trust_level?: number | undefined;
|
|
7459
|
+
interaction_count?: number | undefined;
|
|
7460
|
+
}[] | undefined;
|
|
7461
|
+
}>;
|
|
7462
|
+
type Memory = z.infer<typeof memorySchema>;
|
|
7378
7463
|
interface StackSource {
|
|
7379
7464
|
path: string;
|
|
7380
7465
|
hash: string;
|
|
@@ -7386,534 +7471,24 @@ interface StackCompileResult {
|
|
|
7386
7471
|
mind: StackSource;
|
|
7387
7472
|
purpose?: StackSource;
|
|
7388
7473
|
shadow?: StackSource;
|
|
7474
|
+
memory?: StackSource;
|
|
7389
7475
|
body?: StackSource;
|
|
7390
7476
|
conscience: StackSource;
|
|
7391
7477
|
ego?: StackSource;
|
|
7392
7478
|
};
|
|
7393
7479
|
warnings: string[];
|
|
7394
7480
|
}
|
|
7395
|
-
type StackLayer = "soul" | "mind" | "purpose" | "shadow" | "body" | "conscience" | "ego";
|
|
7481
|
+
type StackLayer = "soul" | "mind" | "purpose" | "shadow" | "memory" | "body" | "conscience" | "ego";
|
|
7396
7482
|
declare const STACK_FILES: {
|
|
7397
7483
|
readonly soul: "soul.md";
|
|
7398
7484
|
readonly mind: "mind.sys";
|
|
7399
7485
|
readonly purpose: "purpose.cfg";
|
|
7400
7486
|
readonly shadow: "shadow.log";
|
|
7487
|
+
readonly memory: "memory.store";
|
|
7401
7488
|
readonly body: "body.api";
|
|
7402
7489
|
readonly conscience: "conscience.exe";
|
|
7403
7490
|
readonly ego: "ego.runtime";
|
|
7404
7491
|
};
|
|
7405
|
-
declare const psycheSchema: z.ZodObject<{
|
|
7406
|
-
version: z.ZodDefault<z.ZodString>;
|
|
7407
|
-
big_five: z.ZodObject<{
|
|
7408
|
-
openness: z.ZodObject<{
|
|
7409
|
-
score: z.ZodNumber;
|
|
7410
|
-
facets: z.ZodObject<{
|
|
7411
|
-
imagination: z.ZodNumber;
|
|
7412
|
-
intellectual_curiosity: z.ZodNumber;
|
|
7413
|
-
aesthetic_sensitivity: z.ZodNumber;
|
|
7414
|
-
willingness_to_experiment: z.ZodNumber;
|
|
7415
|
-
}, "strip", z.ZodTypeAny, {
|
|
7416
|
-
imagination: number;
|
|
7417
|
-
intellectual_curiosity: number;
|
|
7418
|
-
aesthetic_sensitivity: number;
|
|
7419
|
-
willingness_to_experiment: number;
|
|
7420
|
-
}, {
|
|
7421
|
-
imagination: number;
|
|
7422
|
-
intellectual_curiosity: number;
|
|
7423
|
-
aesthetic_sensitivity: number;
|
|
7424
|
-
willingness_to_experiment: number;
|
|
7425
|
-
}>;
|
|
7426
|
-
}, "strip", z.ZodTypeAny, {
|
|
7427
|
-
score: number;
|
|
7428
|
-
facets: {
|
|
7429
|
-
imagination: number;
|
|
7430
|
-
intellectual_curiosity: number;
|
|
7431
|
-
aesthetic_sensitivity: number;
|
|
7432
|
-
willingness_to_experiment: number;
|
|
7433
|
-
};
|
|
7434
|
-
}, {
|
|
7435
|
-
score: number;
|
|
7436
|
-
facets: {
|
|
7437
|
-
imagination: number;
|
|
7438
|
-
intellectual_curiosity: number;
|
|
7439
|
-
aesthetic_sensitivity: number;
|
|
7440
|
-
willingness_to_experiment: number;
|
|
7441
|
-
};
|
|
7442
|
-
}>;
|
|
7443
|
-
conscientiousness: z.ZodObject<{
|
|
7444
|
-
score: z.ZodNumber;
|
|
7445
|
-
facets: z.ZodObject<{
|
|
7446
|
-
self_discipline: z.ZodNumber;
|
|
7447
|
-
orderliness: z.ZodNumber;
|
|
7448
|
-
goal_orientation: z.ZodNumber;
|
|
7449
|
-
attention_to_detail: z.ZodNumber;
|
|
7450
|
-
}, "strip", z.ZodTypeAny, {
|
|
7451
|
-
self_discipline: number;
|
|
7452
|
-
orderliness: number;
|
|
7453
|
-
goal_orientation: number;
|
|
7454
|
-
attention_to_detail: number;
|
|
7455
|
-
}, {
|
|
7456
|
-
self_discipline: number;
|
|
7457
|
-
orderliness: number;
|
|
7458
|
-
goal_orientation: number;
|
|
7459
|
-
attention_to_detail: number;
|
|
7460
|
-
}>;
|
|
7461
|
-
}, "strip", z.ZodTypeAny, {
|
|
7462
|
-
score: number;
|
|
7463
|
-
facets: {
|
|
7464
|
-
self_discipline: number;
|
|
7465
|
-
orderliness: number;
|
|
7466
|
-
goal_orientation: number;
|
|
7467
|
-
attention_to_detail: number;
|
|
7468
|
-
};
|
|
7469
|
-
}, {
|
|
7470
|
-
score: number;
|
|
7471
|
-
facets: {
|
|
7472
|
-
self_discipline: number;
|
|
7473
|
-
orderliness: number;
|
|
7474
|
-
goal_orientation: number;
|
|
7475
|
-
attention_to_detail: number;
|
|
7476
|
-
};
|
|
7477
|
-
}>;
|
|
7478
|
-
extraversion: z.ZodObject<{
|
|
7479
|
-
score: z.ZodNumber;
|
|
7480
|
-
facets: z.ZodObject<{
|
|
7481
|
-
assertiveness: z.ZodNumber;
|
|
7482
|
-
enthusiasm: z.ZodNumber;
|
|
7483
|
-
sociability: z.ZodNumber;
|
|
7484
|
-
initiative: z.ZodNumber;
|
|
7485
|
-
}, "strip", z.ZodTypeAny, {
|
|
7486
|
-
assertiveness: number;
|
|
7487
|
-
enthusiasm: number;
|
|
7488
|
-
sociability: number;
|
|
7489
|
-
initiative: number;
|
|
7490
|
-
}, {
|
|
7491
|
-
assertiveness: number;
|
|
7492
|
-
enthusiasm: number;
|
|
7493
|
-
sociability: number;
|
|
7494
|
-
initiative: number;
|
|
7495
|
-
}>;
|
|
7496
|
-
}, "strip", z.ZodTypeAny, {
|
|
7497
|
-
score: number;
|
|
7498
|
-
facets: {
|
|
7499
|
-
assertiveness: number;
|
|
7500
|
-
enthusiasm: number;
|
|
7501
|
-
sociability: number;
|
|
7502
|
-
initiative: number;
|
|
7503
|
-
};
|
|
7504
|
-
}, {
|
|
7505
|
-
score: number;
|
|
7506
|
-
facets: {
|
|
7507
|
-
assertiveness: number;
|
|
7508
|
-
enthusiasm: number;
|
|
7509
|
-
sociability: number;
|
|
7510
|
-
initiative: number;
|
|
7511
|
-
};
|
|
7512
|
-
}>;
|
|
7513
|
-
agreeableness: z.ZodObject<{
|
|
7514
|
-
score: z.ZodNumber;
|
|
7515
|
-
facets: z.ZodObject<{
|
|
7516
|
-
warmth: z.ZodNumber;
|
|
7517
|
-
empathy: z.ZodNumber;
|
|
7518
|
-
cooperation: z.ZodNumber;
|
|
7519
|
-
trust_tendency: z.ZodNumber;
|
|
7520
|
-
}, "strip", z.ZodTypeAny, {
|
|
7521
|
-
warmth: number;
|
|
7522
|
-
empathy: number;
|
|
7523
|
-
cooperation: number;
|
|
7524
|
-
trust_tendency: number;
|
|
7525
|
-
}, {
|
|
7526
|
-
warmth: number;
|
|
7527
|
-
empathy: number;
|
|
7528
|
-
cooperation: number;
|
|
7529
|
-
trust_tendency: number;
|
|
7530
|
-
}>;
|
|
7531
|
-
}, "strip", z.ZodTypeAny, {
|
|
7532
|
-
score: number;
|
|
7533
|
-
facets: {
|
|
7534
|
-
warmth: number;
|
|
7535
|
-
empathy: number;
|
|
7536
|
-
cooperation: number;
|
|
7537
|
-
trust_tendency: number;
|
|
7538
|
-
};
|
|
7539
|
-
}, {
|
|
7540
|
-
score: number;
|
|
7541
|
-
facets: {
|
|
7542
|
-
warmth: number;
|
|
7543
|
-
empathy: number;
|
|
7544
|
-
cooperation: number;
|
|
7545
|
-
trust_tendency: number;
|
|
7546
|
-
};
|
|
7547
|
-
}>;
|
|
7548
|
-
emotional_stability: z.ZodObject<{
|
|
7549
|
-
score: z.ZodNumber;
|
|
7550
|
-
facets: z.ZodObject<{
|
|
7551
|
-
stress_tolerance: z.ZodNumber;
|
|
7552
|
-
emotional_regulation: z.ZodNumber;
|
|
7553
|
-
confidence: z.ZodNumber;
|
|
7554
|
-
adaptability: z.ZodNumber;
|
|
7555
|
-
}, "strip", z.ZodTypeAny, {
|
|
7556
|
-
stress_tolerance: number;
|
|
7557
|
-
emotional_regulation: number;
|
|
7558
|
-
confidence: number;
|
|
7559
|
-
adaptability: number;
|
|
7560
|
-
}, {
|
|
7561
|
-
stress_tolerance: number;
|
|
7562
|
-
emotional_regulation: number;
|
|
7563
|
-
confidence: number;
|
|
7564
|
-
adaptability: number;
|
|
7565
|
-
}>;
|
|
7566
|
-
}, "strip", z.ZodTypeAny, {
|
|
7567
|
-
score: number;
|
|
7568
|
-
facets: {
|
|
7569
|
-
stress_tolerance: number;
|
|
7570
|
-
emotional_regulation: number;
|
|
7571
|
-
confidence: number;
|
|
7572
|
-
adaptability: number;
|
|
7573
|
-
};
|
|
7574
|
-
}, {
|
|
7575
|
-
score: number;
|
|
7576
|
-
facets: {
|
|
7577
|
-
stress_tolerance: number;
|
|
7578
|
-
emotional_regulation: number;
|
|
7579
|
-
confidence: number;
|
|
7580
|
-
adaptability: number;
|
|
7581
|
-
};
|
|
7582
|
-
}>;
|
|
7583
|
-
}, "strip", z.ZodTypeAny, {
|
|
7584
|
-
openness: {
|
|
7585
|
-
score: number;
|
|
7586
|
-
facets: {
|
|
7587
|
-
imagination: number;
|
|
7588
|
-
intellectual_curiosity: number;
|
|
7589
|
-
aesthetic_sensitivity: number;
|
|
7590
|
-
willingness_to_experiment: number;
|
|
7591
|
-
};
|
|
7592
|
-
};
|
|
7593
|
-
conscientiousness: {
|
|
7594
|
-
score: number;
|
|
7595
|
-
facets: {
|
|
7596
|
-
self_discipline: number;
|
|
7597
|
-
orderliness: number;
|
|
7598
|
-
goal_orientation: number;
|
|
7599
|
-
attention_to_detail: number;
|
|
7600
|
-
};
|
|
7601
|
-
};
|
|
7602
|
-
extraversion: {
|
|
7603
|
-
score: number;
|
|
7604
|
-
facets: {
|
|
7605
|
-
assertiveness: number;
|
|
7606
|
-
enthusiasm: number;
|
|
7607
|
-
sociability: number;
|
|
7608
|
-
initiative: number;
|
|
7609
|
-
};
|
|
7610
|
-
};
|
|
7611
|
-
agreeableness: {
|
|
7612
|
-
score: number;
|
|
7613
|
-
facets: {
|
|
7614
|
-
warmth: number;
|
|
7615
|
-
empathy: number;
|
|
7616
|
-
cooperation: number;
|
|
7617
|
-
trust_tendency: number;
|
|
7618
|
-
};
|
|
7619
|
-
};
|
|
7620
|
-
emotional_stability: {
|
|
7621
|
-
score: number;
|
|
7622
|
-
facets: {
|
|
7623
|
-
stress_tolerance: number;
|
|
7624
|
-
emotional_regulation: number;
|
|
7625
|
-
confidence: number;
|
|
7626
|
-
adaptability: number;
|
|
7627
|
-
};
|
|
7628
|
-
};
|
|
7629
|
-
}, {
|
|
7630
|
-
openness: {
|
|
7631
|
-
score: number;
|
|
7632
|
-
facets: {
|
|
7633
|
-
imagination: number;
|
|
7634
|
-
intellectual_curiosity: number;
|
|
7635
|
-
aesthetic_sensitivity: number;
|
|
7636
|
-
willingness_to_experiment: number;
|
|
7637
|
-
};
|
|
7638
|
-
};
|
|
7639
|
-
conscientiousness: {
|
|
7640
|
-
score: number;
|
|
7641
|
-
facets: {
|
|
7642
|
-
self_discipline: number;
|
|
7643
|
-
orderliness: number;
|
|
7644
|
-
goal_orientation: number;
|
|
7645
|
-
attention_to_detail: number;
|
|
7646
|
-
};
|
|
7647
|
-
};
|
|
7648
|
-
extraversion: {
|
|
7649
|
-
score: number;
|
|
7650
|
-
facets: {
|
|
7651
|
-
assertiveness: number;
|
|
7652
|
-
enthusiasm: number;
|
|
7653
|
-
sociability: number;
|
|
7654
|
-
initiative: number;
|
|
7655
|
-
};
|
|
7656
|
-
};
|
|
7657
|
-
agreeableness: {
|
|
7658
|
-
score: number;
|
|
7659
|
-
facets: {
|
|
7660
|
-
warmth: number;
|
|
7661
|
-
empathy: number;
|
|
7662
|
-
cooperation: number;
|
|
7663
|
-
trust_tendency: number;
|
|
7664
|
-
};
|
|
7665
|
-
};
|
|
7666
|
-
emotional_stability: {
|
|
7667
|
-
score: number;
|
|
7668
|
-
facets: {
|
|
7669
|
-
stress_tolerance: number;
|
|
7670
|
-
emotional_regulation: number;
|
|
7671
|
-
confidence: number;
|
|
7672
|
-
adaptability: number;
|
|
7673
|
-
};
|
|
7674
|
-
};
|
|
7675
|
-
}>;
|
|
7676
|
-
therapy_dimensions: z.ZodObject<{
|
|
7677
|
-
self_awareness: z.ZodNumber;
|
|
7678
|
-
distress_tolerance: z.ZodNumber;
|
|
7679
|
-
attachment_style: z.ZodEnum<["secure", "anxious", "avoidant", "disorganized"]>;
|
|
7680
|
-
learning_orientation: z.ZodEnum<["growth", "fixed", "mixed"]>;
|
|
7681
|
-
boundary_awareness: z.ZodNumber;
|
|
7682
|
-
interpersonal_sensitivity: z.ZodNumber;
|
|
7683
|
-
}, "strip", z.ZodTypeAny, {
|
|
7684
|
-
self_awareness: number;
|
|
7685
|
-
distress_tolerance: number;
|
|
7686
|
-
attachment_style: "secure" | "anxious" | "avoidant" | "disorganized";
|
|
7687
|
-
learning_orientation: "fixed" | "growth" | "mixed";
|
|
7688
|
-
boundary_awareness: number;
|
|
7689
|
-
interpersonal_sensitivity: number;
|
|
7690
|
-
}, {
|
|
7691
|
-
self_awareness: number;
|
|
7692
|
-
distress_tolerance: number;
|
|
7693
|
-
attachment_style: "secure" | "anxious" | "avoidant" | "disorganized";
|
|
7694
|
-
learning_orientation: "fixed" | "growth" | "mixed";
|
|
7695
|
-
boundary_awareness: number;
|
|
7696
|
-
interpersonal_sensitivity: number;
|
|
7697
|
-
}>;
|
|
7698
|
-
communication: z.ZodDefault<z.ZodObject<{
|
|
7699
|
-
register: z.ZodDefault<z.ZodEnum<["casual_professional", "formal", "conversational", "adaptive"]>>;
|
|
7700
|
-
output_format: z.ZodDefault<z.ZodEnum<["prose", "bullets", "mixed", "structured"]>>;
|
|
7701
|
-
emoji_policy: z.ZodDefault<z.ZodEnum<["never", "sparingly", "freely"]>>;
|
|
7702
|
-
reasoning_transparency: z.ZodDefault<z.ZodEnum<["hidden", "on_request", "always"]>>;
|
|
7703
|
-
conflict_approach: z.ZodDefault<z.ZodEnum<["direct_but_kind", "curious_first", "supportive_then_honest", "diplomatic"]>>;
|
|
7704
|
-
uncertainty_handling: z.ZodDefault<z.ZodEnum<["transparent", "confident_transparency", "minimize", "reframe"]>>;
|
|
7705
|
-
}, "strip", z.ZodTypeAny, {
|
|
7706
|
-
register: "adaptive" | "conversational" | "casual_professional" | "formal";
|
|
7707
|
-
output_format: "mixed" | "prose" | "bullets" | "structured";
|
|
7708
|
-
emoji_policy: "never" | "sparingly" | "freely";
|
|
7709
|
-
reasoning_transparency: "hidden" | "on_request" | "always";
|
|
7710
|
-
conflict_approach: "direct_but_kind" | "curious_first" | "supportive_then_honest" | "diplomatic";
|
|
7711
|
-
uncertainty_handling: "transparent" | "confident_transparency" | "minimize" | "reframe";
|
|
7712
|
-
}, {
|
|
7713
|
-
register?: "adaptive" | "conversational" | "casual_professional" | "formal" | undefined;
|
|
7714
|
-
output_format?: "mixed" | "prose" | "bullets" | "structured" | undefined;
|
|
7715
|
-
emoji_policy?: "never" | "sparingly" | "freely" | undefined;
|
|
7716
|
-
reasoning_transparency?: "hidden" | "on_request" | "always" | undefined;
|
|
7717
|
-
conflict_approach?: "direct_but_kind" | "curious_first" | "supportive_then_honest" | "diplomatic" | undefined;
|
|
7718
|
-
uncertainty_handling?: "transparent" | "confident_transparency" | "minimize" | "reframe" | undefined;
|
|
7719
|
-
}>>;
|
|
7720
|
-
growth: z.ZodDefault<z.ZodObject<{
|
|
7721
|
-
areas: z.ZodDefault<z.ZodUnion<[z.ZodArray<z.ZodString, "many">, z.ZodArray<z.ZodObject<{
|
|
7722
|
-
area: z.ZodString;
|
|
7723
|
-
severity: z.ZodEnum<["mild", "moderate", "significant"]>;
|
|
7724
|
-
first_detected: z.ZodOptional<z.ZodString>;
|
|
7725
|
-
session_count: z.ZodDefault<z.ZodNumber>;
|
|
7726
|
-
resolved: z.ZodDefault<z.ZodBoolean>;
|
|
7727
|
-
}, "strip", z.ZodTypeAny, {
|
|
7728
|
-
area: string;
|
|
7729
|
-
severity: "mild" | "moderate" | "significant";
|
|
7730
|
-
session_count: number;
|
|
7731
|
-
resolved: boolean;
|
|
7732
|
-
first_detected?: string | undefined;
|
|
7733
|
-
}, {
|
|
7734
|
-
area: string;
|
|
7735
|
-
severity: "mild" | "moderate" | "significant";
|
|
7736
|
-
first_detected?: string | undefined;
|
|
7737
|
-
session_count?: number | undefined;
|
|
7738
|
-
resolved?: boolean | undefined;
|
|
7739
|
-
}>, "many">]>>;
|
|
7740
|
-
patterns_to_watch: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
7741
|
-
strengths: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
7742
|
-
}, "strip", z.ZodTypeAny, {
|
|
7743
|
-
areas: string[] | {
|
|
7744
|
-
area: string;
|
|
7745
|
-
severity: "mild" | "moderate" | "significant";
|
|
7746
|
-
session_count: number;
|
|
7747
|
-
resolved: boolean;
|
|
7748
|
-
first_detected?: string | undefined;
|
|
7749
|
-
}[];
|
|
7750
|
-
patterns_to_watch: string[];
|
|
7751
|
-
strengths: string[];
|
|
7752
|
-
}, {
|
|
7753
|
-
areas?: string[] | {
|
|
7754
|
-
area: string;
|
|
7755
|
-
severity: "mild" | "moderate" | "significant";
|
|
7756
|
-
first_detected?: string | undefined;
|
|
7757
|
-
session_count?: number | undefined;
|
|
7758
|
-
resolved?: boolean | undefined;
|
|
7759
|
-
}[] | undefined;
|
|
7760
|
-
patterns_to_watch?: string[] | undefined;
|
|
7761
|
-
strengths?: string[] | undefined;
|
|
7762
|
-
}>>;
|
|
7763
|
-
}, "strip", z.ZodTypeAny, {
|
|
7764
|
-
growth: {
|
|
7765
|
-
areas: string[] | {
|
|
7766
|
-
area: string;
|
|
7767
|
-
severity: "mild" | "moderate" | "significant";
|
|
7768
|
-
session_count: number;
|
|
7769
|
-
resolved: boolean;
|
|
7770
|
-
first_detected?: string | undefined;
|
|
7771
|
-
}[];
|
|
7772
|
-
patterns_to_watch: string[];
|
|
7773
|
-
strengths: string[];
|
|
7774
|
-
};
|
|
7775
|
-
version: string;
|
|
7776
|
-
big_five: {
|
|
7777
|
-
openness: {
|
|
7778
|
-
score: number;
|
|
7779
|
-
facets: {
|
|
7780
|
-
imagination: number;
|
|
7781
|
-
intellectual_curiosity: number;
|
|
7782
|
-
aesthetic_sensitivity: number;
|
|
7783
|
-
willingness_to_experiment: number;
|
|
7784
|
-
};
|
|
7785
|
-
};
|
|
7786
|
-
conscientiousness: {
|
|
7787
|
-
score: number;
|
|
7788
|
-
facets: {
|
|
7789
|
-
self_discipline: number;
|
|
7790
|
-
orderliness: number;
|
|
7791
|
-
goal_orientation: number;
|
|
7792
|
-
attention_to_detail: number;
|
|
7793
|
-
};
|
|
7794
|
-
};
|
|
7795
|
-
extraversion: {
|
|
7796
|
-
score: number;
|
|
7797
|
-
facets: {
|
|
7798
|
-
assertiveness: number;
|
|
7799
|
-
enthusiasm: number;
|
|
7800
|
-
sociability: number;
|
|
7801
|
-
initiative: number;
|
|
7802
|
-
};
|
|
7803
|
-
};
|
|
7804
|
-
agreeableness: {
|
|
7805
|
-
score: number;
|
|
7806
|
-
facets: {
|
|
7807
|
-
warmth: number;
|
|
7808
|
-
empathy: number;
|
|
7809
|
-
cooperation: number;
|
|
7810
|
-
trust_tendency: number;
|
|
7811
|
-
};
|
|
7812
|
-
};
|
|
7813
|
-
emotional_stability: {
|
|
7814
|
-
score: number;
|
|
7815
|
-
facets: {
|
|
7816
|
-
stress_tolerance: number;
|
|
7817
|
-
emotional_regulation: number;
|
|
7818
|
-
confidence: number;
|
|
7819
|
-
adaptability: number;
|
|
7820
|
-
};
|
|
7821
|
-
};
|
|
7822
|
-
};
|
|
7823
|
-
therapy_dimensions: {
|
|
7824
|
-
self_awareness: number;
|
|
7825
|
-
distress_tolerance: number;
|
|
7826
|
-
attachment_style: "secure" | "anxious" | "avoidant" | "disorganized";
|
|
7827
|
-
learning_orientation: "fixed" | "growth" | "mixed";
|
|
7828
|
-
boundary_awareness: number;
|
|
7829
|
-
interpersonal_sensitivity: number;
|
|
7830
|
-
};
|
|
7831
|
-
communication: {
|
|
7832
|
-
register: "adaptive" | "conversational" | "casual_professional" | "formal";
|
|
7833
|
-
output_format: "mixed" | "prose" | "bullets" | "structured";
|
|
7834
|
-
emoji_policy: "never" | "sparingly" | "freely";
|
|
7835
|
-
reasoning_transparency: "hidden" | "on_request" | "always";
|
|
7836
|
-
conflict_approach: "direct_but_kind" | "curious_first" | "supportive_then_honest" | "diplomatic";
|
|
7837
|
-
uncertainty_handling: "transparent" | "confident_transparency" | "minimize" | "reframe";
|
|
7838
|
-
};
|
|
7839
|
-
}, {
|
|
7840
|
-
big_five: {
|
|
7841
|
-
openness: {
|
|
7842
|
-
score: number;
|
|
7843
|
-
facets: {
|
|
7844
|
-
imagination: number;
|
|
7845
|
-
intellectual_curiosity: number;
|
|
7846
|
-
aesthetic_sensitivity: number;
|
|
7847
|
-
willingness_to_experiment: number;
|
|
7848
|
-
};
|
|
7849
|
-
};
|
|
7850
|
-
conscientiousness: {
|
|
7851
|
-
score: number;
|
|
7852
|
-
facets: {
|
|
7853
|
-
self_discipline: number;
|
|
7854
|
-
orderliness: number;
|
|
7855
|
-
goal_orientation: number;
|
|
7856
|
-
attention_to_detail: number;
|
|
7857
|
-
};
|
|
7858
|
-
};
|
|
7859
|
-
extraversion: {
|
|
7860
|
-
score: number;
|
|
7861
|
-
facets: {
|
|
7862
|
-
assertiveness: number;
|
|
7863
|
-
enthusiasm: number;
|
|
7864
|
-
sociability: number;
|
|
7865
|
-
initiative: number;
|
|
7866
|
-
};
|
|
7867
|
-
};
|
|
7868
|
-
agreeableness: {
|
|
7869
|
-
score: number;
|
|
7870
|
-
facets: {
|
|
7871
|
-
warmth: number;
|
|
7872
|
-
empathy: number;
|
|
7873
|
-
cooperation: number;
|
|
7874
|
-
trust_tendency: number;
|
|
7875
|
-
};
|
|
7876
|
-
};
|
|
7877
|
-
emotional_stability: {
|
|
7878
|
-
score: number;
|
|
7879
|
-
facets: {
|
|
7880
|
-
stress_tolerance: number;
|
|
7881
|
-
emotional_regulation: number;
|
|
7882
|
-
confidence: number;
|
|
7883
|
-
adaptability: number;
|
|
7884
|
-
};
|
|
7885
|
-
};
|
|
7886
|
-
};
|
|
7887
|
-
therapy_dimensions: {
|
|
7888
|
-
self_awareness: number;
|
|
7889
|
-
distress_tolerance: number;
|
|
7890
|
-
attachment_style: "secure" | "anxious" | "avoidant" | "disorganized";
|
|
7891
|
-
learning_orientation: "fixed" | "growth" | "mixed";
|
|
7892
|
-
boundary_awareness: number;
|
|
7893
|
-
interpersonal_sensitivity: number;
|
|
7894
|
-
};
|
|
7895
|
-
growth?: {
|
|
7896
|
-
areas?: string[] | {
|
|
7897
|
-
area: string;
|
|
7898
|
-
severity: "mild" | "moderate" | "significant";
|
|
7899
|
-
first_detected?: string | undefined;
|
|
7900
|
-
session_count?: number | undefined;
|
|
7901
|
-
resolved?: boolean | undefined;
|
|
7902
|
-
}[] | undefined;
|
|
7903
|
-
patterns_to_watch?: string[] | undefined;
|
|
7904
|
-
strengths?: string[] | undefined;
|
|
7905
|
-
} | undefined;
|
|
7906
|
-
version?: string | undefined;
|
|
7907
|
-
communication?: {
|
|
7908
|
-
register?: "adaptive" | "conversational" | "casual_professional" | "formal" | undefined;
|
|
7909
|
-
output_format?: "mixed" | "prose" | "bullets" | "structured" | undefined;
|
|
7910
|
-
emoji_policy?: "never" | "sparingly" | "freely" | undefined;
|
|
7911
|
-
reasoning_transparency?: "hidden" | "on_request" | "always" | undefined;
|
|
7912
|
-
conflict_approach?: "direct_but_kind" | "curious_first" | "supportive_then_honest" | "diplomatic" | undefined;
|
|
7913
|
-
uncertainty_handling?: "transparent" | "confident_transparency" | "minimize" | "reframe" | undefined;
|
|
7914
|
-
} | undefined;
|
|
7915
|
-
}>;
|
|
7916
|
-
type Psyche = Mind;
|
|
7917
7492
|
|
|
7918
7493
|
/**
|
|
7919
7494
|
* Stack Compiler — merges 5 identity stack files into a PersonalitySpec.
|
|
@@ -7942,6 +7517,7 @@ interface CompileStackOptions {
|
|
|
7942
7517
|
mindPath?: string;
|
|
7943
7518
|
purposePath?: string;
|
|
7944
7519
|
shadowPath?: string;
|
|
7520
|
+
memoryPath?: string;
|
|
7945
7521
|
bodyPath?: string;
|
|
7946
7522
|
consciencePath?: string;
|
|
7947
7523
|
egoPath?: string;
|
|
@@ -7962,6 +7538,7 @@ interface DecomposedStack {
|
|
|
7962
7538
|
mind: string;
|
|
7963
7539
|
purpose: string;
|
|
7964
7540
|
shadow: string;
|
|
7541
|
+
memory: string;
|
|
7965
7542
|
body?: string;
|
|
7966
7543
|
conscience: string;
|
|
7967
7544
|
ego: string;
|
|
@@ -7976,7 +7553,7 @@ declare function decomposeSpec(spec: Record<string, unknown>): DecomposedStack;
|
|
|
7976
7553
|
* Stack-Aware Loader — auto-detects identity stack vs legacy personality.json.
|
|
7977
7554
|
*
|
|
7978
7555
|
* If a stack directory exists (soul.md + mind.sys + purpose.cfg + shadow.log +
|
|
7979
|
-
* body.api + conscience.exe + ego.runtime), compiles the
|
|
7556
|
+
* memory.store + body.api + conscience.exe + ego.runtime), compiles the 8-file stack.
|
|
7980
7557
|
* Otherwise, falls back to loading .personality.json directly (legacy mode).
|
|
7981
7558
|
*
|
|
7982
7559
|
* This wraps the existing loadSpec() from inheritance.ts, maintaining
|
|
@@ -7990,4 +7567,4 @@ declare function decomposeSpec(spec: Record<string, unknown>): DecomposedStack;
|
|
|
7990
7567
|
*/
|
|
7991
7568
|
declare function loadSpecWithStack(specPath: string): any;
|
|
7992
7569
|
|
|
7993
|
-
export { ARCHETYPES, ATTACHMENT_STYLES, type AdversarialCallbacks, type AdversarialCategory, type AdversarialReport, type AdversarialResult, type AdversarialRunOptions, type AdversarialScenario, type AlpacaExample, type AnonymizedPatternReport, AnthropicProvider, type ArchetypeTemplate, type AssessmentReport, type AssessmentResult, type AssetReview, type AssetType, type AttachmentStyle, type AuditEntry, type AuditEventType, type AutopilotResult, type AutopilotThreshold, type AwarenessDimension, BUILT_IN_DETECTORS, type BehavioralBaseline, type BehavioralCredential, type BehavioralEvent, type BehavioralEventType, type BehavioralGap, type BehavioralIndex, type BehavioralMemoryStore, type BehavioralPolicy, type BehavioralPolicyRule, type BehavioralPreset, type BenchmarkCallbacks, type BenchmarkComparison, type BenchmarkReport, type BenchmarkResult, type BenchmarkScenario, type BigFive, type Body, CATEGORIES, type CallbackMode, type CallbackStats, type CallbackViolation, type CertifyInput, type ClauseStatus, type Communication, type CompactionResult, type CompactionSummary, type CompileInput, type CompiledConfig, type CompiledEmbodiedConfig, type ComplianceCoverageReport, type ReACTStep as ComplianceReACTStep, type ComplianceReport, type ComplianceReportJSON, type Conscience, type ContextLayerInput, type Conversation, type ConversationLog, type CorpusFilter, type CorpusStats, type CorrectionRecord, type CrossAgentQuery, type CustomDetectorConfig, DEFAULT_OVERSIGHT, DIMENSIONS, type DPOPair, type DetectedPattern, type DetectorFactory, type DetectorFn$1 as DetectorFn, type DetectorOptions, type DiagnosisResult, type DimensionTrajectory, type Domain, type DriftTrigger, type EdgeType, type Ego, type Embodiment, type EvolutionEntry, type EvolutionHistory, type EvolutionSummary, type EvolveCallbacks, type EvolveOptions, type EvolveResult, type Expression, type FleetAgent, type FleetAgentStatus, type FleetConfig, type FleetHandle, type FleetOptions, type FrameworkSection, type GazePolicy, type Gesture, type GraphEdge, type GraphNode, type Growth, type GrowthArea, type GrowthReport, type GrowthSnapshot, Guard, type GuardEntry, type GuardFilterResult, type GuardMiddleware, type GuardMiddlewareOptions, type GuardMiddlewareStats, type GuardMode, type GuardResult, type GuardViolation, type GuardWrapResult, type HFPushOptions, type HFPushResult, type HapticPolicy, HolomimeCallbackHandler, type HolomimeCallbackOptions, HolomimeViolationError, type HubDetector, type ISOClause, type ISOStandard, type IndexComparison, type IndexEntry, type Intervention, type InterventionRepertoire, type InterventionSource, type InterviewCallbacks, type InterviewProbe, type InterviewResponse, type InterviewResult, type IterationResult, KNOWN_STANDARDS, type KnowledgeGraph, LEARNING_ORIENTATIONS, type LLMMessage, type LLMProvider, type LeaderboardEntry, type LeaderboardSubmission, type LearningOrientation, LocalMarketplaceBackend, type LogFormat, type MarketplaceAsset, type MarketplaceBackend, MarketplaceClient, type MarketplaceSearchQuery, type MarketplaceSearchResult, type Message, type Mind, type Modality, type MonitoringCertificate, type Morphology, type MotionParameters, type NetworkCallbacks, type NetworkConfig, type NetworkNode, type NetworkResult, type NetworkSession, type NodeType, OllamaProvider, OpenAIProvider, type OpenClawPluginApi, type OpenClawPluginConfig, type OutcomeReport, type OversightAction, type OversightMode, type OversightNotification, type OversightPolicy, PROVIDER_PARAMS, type PairingStrategy, type PatternCorrelation, type PatternDelta, type PatternReport, type PatternStatus, type PatternTracker, type PersonalitySpec, type PersonalityTier, type PhaseConfig, type PhysicalSafety, type PolicyIntent, type PreSessionDiagnosis, type Prescription, type Prosody, type Provider, type ProviderConfig, type ProxemicZone, type Psyche, type PublishRequest, type PublishedBenchmark, type Purpose, type RLHFExample, type ReACTAction, type ReACTContext, type ReACTReport, type ReACTReportOptions, type ReACTStep$1 as ReACTStep, type Registry, type RegistryEntry, type ReportStatistics, type RiskFinding, type RollingContext, STACK_FILES, STANDARD_PROBES, SURFACE_MULTIPLIERS, type SafetyEnvelope, type SelfAuditFlag, type SelfAuditResult, type SelfObservation, type SessionCallbacks, type SessionOptions, type SessionOutcome, type SessionSummary, type SessionTranscript, type SessionTurn, type Severity, type Shadow, type SharedIntervention, type SharedKnowledge, type SortField, type Soul, type StackCompileResult, type StackLayer, type StackSource, type StagingDiff, type Surface, type SyncAnchor, type SyncProfile, type SyncRule, THERAPIST_META_SPEC, THERAPY_DIMENSIONS, THERAPY_PHASES, type TherapistPromptOptions, type TherapyDimensions, type TherapyMemory, type TherapyPhase, type TieredPersonality, type TrainingExport, type TraitAlignment, type TraitScores, type TreatmentGoal, type TreatmentPlan, type TreatmentProgressReport, type VerifyResult, type WatchCallbacks, type WatchEvent, type WatchHandle, type WatchOptions, type WrapAgentOptions, type WrapOptions, type WrappedAgent, addEdge, addNode, addSessionToMemory, agentHandleFromSpec, appendAuditEntry, appendEvolution, applyRecommendations, bigFiveSchema, bodySchema, buildAgentTherapistPrompt, buildAnonymizedReport, buildPatientSystemPrompt, buildReACTContext, buildReACTFraming, buildSharedKnowledge, buildTherapistSystemPrompt, checkApproval, checkCompliance, checkIterationBudget, communicationSchema, compactEvolutionRun, compactIteration, compareBenchmarks, compareIndex, compile, compileCustomDetector, compileEmbodied, compileForOpenClaw, compileL0, compileL1, compileL2, compileStack, compileTiered, compiledConfigSchema, compiledEmbodiedConfigSchema, computeDimensionScore, computeGazePolicy, computeMotionParameters, computeProsody, computeProxemics, computeSyncProfile, conscienceSchema, conversationLogSchema, conversationSchema, convertToHFFormat, copyToClipboard, corpusStats, createBehavioralMemory, createGist, createGraph, createGuardMiddleware, createIndex, createIndexEntry, createMemory, createProvider, createRepertoire, createTreatmentPlan, decayUnseenPatterns, decomposeSpec, deepMergeSpec, detectApologies, detectBoundaryIssues, detectFormalityIssues, detectHedging, detectRecoveryPatterns, detectRetrievalQuality, detectSentiment, detectVerbosity, discoverAgentData, discoverAgents, discoverNetworkAgents, domainSchema, egoSchema, embodimentSchema, emitBehavioralEvent, encodeSnapshot, estimateConfidence, evaluateOutcome, expireOldEdges, exportTrainingData, expressionSchema, extractAlpacaExamples, extractDPOPairs, extractDPOPairsWithLLM, extractRLHFExamples, extractRecommendations, fetchLeaderboard, fetchPersonality, fetchRegistry, findCrossAgentCorrelations, findEdges, findNode, findNodesByType, findStackDir, formatComplianceReportMarkdown, formatGapSummary, formatPolicyYaml, formatReACTReportMarkdown, formatReportTerminal, gazePolicySchema, generateBehavioralPolicy, generateBenchmarkMarkdown, generateComparisonMarkdown, generateComplianceReport, generateCredential, generateGapRecommendation, generateIndexMarkdown, generateMonitoringCertificate, generateMutations, generatePrescriptions, generateProgressReport, generateReACTReport, generateReportJSON, generateShareUrl, generateSystemPrompt, gestureSchema, getAdversarialCategories, getAdversarialScenarios, getAgentBehaviors, getArchetype, getArchetypesByCategory, getBehavioralMemorySummary, getBenchmarkScenarios, getBestCorrection, getCategories, getDetector, getDimension, getEvolutionSummary, getInheritanceChain, getInterviewContext, getMarketplaceClient, getMemoryContext, getNeighbors, getPhaseContext, getPreset, getScenarioById, getTotalSignalCount, getTrajectory, getTriggersForPattern, graphStats, growthAreaSchema, growthSchema, hapticPolicySchema, hashSpec, isStackDirectory, learnIntervention, listArchetypeIds, listDetectors, listDetectorsByCategory, listDetectorsByTag, listPresets, loadAllStandards, loadAuditLog, loadBehavioralMemory, loadBenchmarkResults, loadCorpus, loadCustomDetectors, loadEvolution, loadFleetConfig, loadGraph, loadLatestBenchmark, loadMemory, loadNetworkConfig, loadRepertoire, loadSpec, loadSpecWithStack, loadStandard, loadTranscripts, loadTreatmentPlan, mergeStores, messageSchema, mindSchema, modalitySchema, morphologySchema, motionParametersSchema, pairAgents, parseAnthropicAPILog, parseChatGPTExport, parseClaudeExport, parseConversationLog, parseConversationLogFromString, parseJSONLLog, parseMarkdownDetector, parseOTelGenAIExport, parseOpenAIAPILog, personalitySpecSchema, physicalSafetySchema, populateFromDiagnosis, populateFromEvolve, populateFromSession, prescribeDPOPairs, processReACTResponse, prosodySchema, providerSchema, proxemicZoneSchema, psycheSchema, publishToLeaderboard, purposeSchema, pushToHFHub, queryCorpus, queryInterventions, querySharedKnowledge, recommendTier, recordInterventionOutcome, recordObservation, recordSelfObservation, recordSessionOutcome, registerBuiltInDetectors, registerDetector, register as registerOpenClawPlugin, resetMarketplaceClient, resolveInheritance, resolveOversight, runAdversarialSuite, runAssessment, runAutopilot, runBenchmark, runDiagnosis, runEvolve, runInterview, runNetwork, runPreSessionDiagnosis, runSelfAudit, runTherapySession, safetyEnvelopeSchema, saveBehavioralMemory, saveBenchmarkResult, saveCredential, saveGraph, saveMemory, saveRepertoire, saveTranscript, saveTreatmentPlan, scoreLabel, scoreTraitsFromMessages, seedBuiltInPersonalities, selectIntervention, severityMeetsThreshold, severitySchema, shadowSchema, shareAnonymizedPatterns, shareFromDiagnosis, soulFrontmatterSchema, soulSchema, startFleet, startMCPServer, startWatch, summarize, summarizeSessionForMemory, summarizeTherapy, surfaceSchema, syncAnchorSchema, syncProfileSchema, syncRuleSchema, therapyDimensionsSchema, therapyScoreLabel, transferIntervention, unregisterDetector, updateEdgeWeight, validateDetectorConfig, verifyAuditChain, verifyCredential, wrapAgent };
|
|
7570
|
+
export { ARCHETYPES, ATTACHMENT_STYLES, type AdversarialCallbacks, type AdversarialCategory, type AdversarialReport, type AdversarialResult, type AdversarialRunOptions, type AdversarialScenario, type AlpacaExample, type AnonymizedPatternReport, AnthropicProvider, type ArchetypeTemplate, type AssessmentReport, type AssessmentResult, type AssetReview, type AssetType, type AttachmentStyle, type AuditEntry, type AuditEventType, type AutopilotResult, type AutopilotThreshold, type AwarenessDimension, BUILT_IN_DETECTORS, type BehavioralBaseline, type BehavioralCredential, type BehavioralEvent, type BehavioralEventType, type BehavioralGap, type BehavioralIndex, type BehavioralMemoryStore, type BehavioralPolicy, type BehavioralPolicyRule, type BehavioralPreset, type BenchmarkCallbacks, type BenchmarkComparison, type BenchmarkReport, type BenchmarkResult, type BenchmarkScenario, type BigFive, type Body, CATEGORIES, type CallbackMode, type CallbackStats, type CallbackViolation, type CertifyInput, type ClauseStatus, type Communication, type CompactionResult, type CompactionSummary, type CompileInput, type CompiledConfig, type CompiledEmbodiedConfig, type ComplianceCoverageReport, type ReACTStep as ComplianceReACTStep, type ComplianceReport, type ComplianceReportJSON, type Conscience, type ContextLayerInput, type Conversation, type ConversationLog, type CorpusFilter, type CorpusStats, type CorrectionRecord, type CrossAgentQuery, type CustomDetectorConfig, DEFAULT_OVERSIGHT, DIMENSIONS, type DPOPair, type DetectedPattern, type DetectorFactory, type DetectorFn$1 as DetectorFn, type DetectorOptions, type DiagnosisResult, type DimensionTrajectory, type Domain, type DriftTrigger, type EdgeType, type Ego, type Embodiment, type EvolutionEntry, type EvolutionHistory, type EvolutionSummary, type EvolveCallbacks, type EvolveOptions, type EvolveResult, type Expression, type FleetAgent, type FleetAgentStatus, type FleetConfig, type FleetHandle, type FleetOptions, type FrameworkSection, type GazePolicy, type Gesture, type GraphEdge, type GraphNode, type Growth, type GrowthArea, type GrowthReport, type GrowthSnapshot, Guard, type GuardEntry, type GuardFilterResult, type GuardMiddleware, type GuardMiddlewareOptions, type GuardMiddlewareStats, type GuardMode, type GuardResult, type GuardViolation, type GuardWrapResult, type HFPushOptions, type HFPushResult, type HapticPolicy, HolomimeCallbackHandler, type HolomimeCallbackOptions, HolomimeViolationError, type HubDetector, type ISOClause, type ISOStandard, type IndexComparison, type IndexEntry, type Intervention, type InterventionRepertoire, type InterventionSource, type InterviewCallbacks, type InterviewProbe, type InterviewResponse, type InterviewResult, type IterationResult, KNOWN_STANDARDS, type KnowledgeGraph, LEARNING_ORIENTATIONS, type LLMMessage, type LLMProvider, type LeaderboardEntry, type LeaderboardSubmission, type LearningOrientation, LocalMarketplaceBackend, type LogFormat, type MarketplaceAsset, type MarketplaceBackend, MarketplaceClient, type MarketplaceSearchQuery, type MarketplaceSearchResult, type Memory, type Message, type Mind, type Modality, type MonitoringCertificate, type Morphology, type MotionParameters, type NetworkCallbacks, type NetworkConfig, type NetworkNode, type NetworkResult, type NetworkSession, type NodeType, OllamaProvider, OpenAIProvider, type OpenClawPluginApi, type OpenClawPluginConfig, type OutcomeReport, type OversightAction, type OversightMode, type OversightNotification, type OversightPolicy, PROVIDER_PARAMS, type PairingStrategy, type PatternCorrelation, type PatternDelta, type PatternReport, type PatternStatus, type PatternTracker, type PersonalitySpec, type PersonalityTier, type PhaseConfig, type PhysicalSafety, type PolicyIntent, type PreSessionDiagnosis, type Prescription, type Prosody, type Provider, type ProviderConfig, type ProxemicZone, type PublishRequest, type PublishedBenchmark, type Purpose, type RLHFExample, type ReACTAction, type ReACTContext, type ReACTReport, type ReACTReportOptions, type ReACTStep$1 as ReACTStep, type Registry, type RegistryEntry, type ReportStatistics, type RiskFinding, type RollingContext, STACK_FILES, STANDARD_PROBES, SURFACE_MULTIPLIERS, type SafetyEnvelope, type SelfAuditFlag, type SelfAuditResult, type SelfObservation, type SessionCallbacks, type SessionOptions, type SessionOutcome, type SessionSummary, type SessionTranscript, type SessionTurn, type Severity, type Shadow, type SharedIntervention, type SharedKnowledge, type SortField, type Soul, type StackCompileResult, type StackLayer, type StackSource, type StagingDiff, type Surface, type SyncAnchor, type SyncProfile, type SyncRule, THERAPIST_META_SPEC, THERAPY_DIMENSIONS, THERAPY_PHASES, type TherapistPromptOptions, type TherapyDimensions, type TherapyMemory, type TherapyPhase, type TieredPersonality, type TrainingExport, type TraitAlignment, type TraitScores, type TreatmentGoal, type TreatmentPlan, type TreatmentProgressReport, type VerifyResult, type WatchCallbacks, type WatchEvent, type WatchHandle, type WatchOptions, type WrapAgentOptions, type WrapOptions, type WrappedAgent, addEdge, addNode, addSessionToMemory, agentHandleFromSpec, appendAuditEntry, appendEvolution, applyRecommendations, bigFiveSchema, bodySchema, buildAgentTherapistPrompt, buildAnonymizedReport, buildPatientSystemPrompt, buildReACTContext, buildReACTFraming, buildSharedKnowledge, buildTherapistSystemPrompt, checkApproval, checkCompliance, checkIterationBudget, communicationSchema, compactEvolutionRun, compactIteration, compareBenchmarks, compareIndex, compile, compileCustomDetector, compileEmbodied, compileForOpenClaw, compileL0, compileL1, compileL2, compileStack, compileTiered, compiledConfigSchema, compiledEmbodiedConfigSchema, computeDimensionScore, computeGazePolicy, computeMotionParameters, computeProsody, computeProxemics, computeSyncProfile, conscienceSchema, conversationLogSchema, conversationSchema, convertToHFFormat, copyToClipboard, corpusStats, createBehavioralMemory, createGist, createGraph, createGuardMiddleware, createIndex, createIndexEntry, createMemory, createProvider, createRepertoire, createTreatmentPlan, decayUnseenPatterns, decomposeSpec, deepMergeSpec, detectApologies, detectBoundaryIssues, detectFormalityIssues, detectHedging, detectRecoveryPatterns, detectRetrievalQuality, detectSentiment, detectVerbosity, discoverAgentData, discoverAgents, discoverNetworkAgents, domainSchema, egoSchema, embodimentSchema, emitBehavioralEvent, encodeSnapshot, estimateConfidence, evaluateOutcome, expireOldEdges, exportTrainingData, expressionSchema, extractAlpacaExamples, extractDPOPairs, extractDPOPairsWithLLM, extractRLHFExamples, extractRecommendations, fetchLeaderboard, fetchPersonality, fetchRegistry, findCrossAgentCorrelations, findEdges, findNode, findNodesByType, findStackDir, formatComplianceReportMarkdown, formatGapSummary, formatPolicyYaml, formatReACTReportMarkdown, formatReportTerminal, gazePolicySchema, generateBehavioralPolicy, generateBenchmarkMarkdown, generateComparisonMarkdown, generateComplianceReport, generateCredential, generateGapRecommendation, generateIndexMarkdown, generateMonitoringCertificate, generateMutations, generatePrescriptions, generateProgressReport, generateReACTReport, generateReportJSON, generateShareUrl, generateSystemPrompt, gestureSchema, getAdversarialCategories, getAdversarialScenarios, getAgentBehaviors, getArchetype, getArchetypesByCategory, getBehavioralMemorySummary, getBenchmarkScenarios, getBestCorrection, getCategories, getDetector, getDimension, getEvolutionSummary, getInheritanceChain, getInterviewContext, getMarketplaceClient, getMemoryContext, getNeighbors, getPhaseContext, getPreset, getScenarioById, getTotalSignalCount, getTrajectory, getTriggersForPattern, graphStats, growthAreaSchema, growthSchema, hapticPolicySchema, hashSpec, isStackDirectory, learnIntervention, listArchetypeIds, listDetectors, listDetectorsByCategory, listDetectorsByTag, listPresets, loadAllStandards, loadAuditLog, loadBehavioralMemory, loadBenchmarkResults, loadCorpus, loadCustomDetectors, loadEvolution, loadFleetConfig, loadGraph, loadLatestBenchmark, loadMemory, loadNetworkConfig, loadRepertoire, loadSpec, loadSpecWithStack, loadStandard, loadTranscripts, loadTreatmentPlan, memorySchema, mergeStores, messageSchema, mindSchema, modalitySchema, morphologySchema, motionParametersSchema, pairAgents, parseAnthropicAPILog, parseChatGPTExport, parseClaudeExport, parseConversationLog, parseConversationLogFromString, parseJSONLLog, parseMarkdownDetector, parseOTelGenAIExport, parseOpenAIAPILog, personalitySpecSchema, physicalSafetySchema, populateFromDiagnosis, populateFromEvolve, populateFromSession, prescribeDPOPairs, processReACTResponse, prosodySchema, providerSchema, proxemicZoneSchema, publishToLeaderboard, purposeSchema, pushToHFHub, queryCorpus, queryInterventions, querySharedKnowledge, recommendTier, recordInterventionOutcome, recordObservation, recordSelfObservation, recordSessionOutcome, registerBuiltInDetectors, registerDetector, register as registerOpenClawPlugin, resetMarketplaceClient, resolveInheritance, resolveOversight, runAdversarialSuite, runAssessment, runAutopilot, runBenchmark, runDiagnosis, runEvolve, runInterview, runNetwork, runPreSessionDiagnosis, runSelfAudit, runTherapySession, safetyEnvelopeSchema, saveBehavioralMemory, saveBenchmarkResult, saveCredential, saveGraph, saveMemory, saveRepertoire, saveTranscript, saveTreatmentPlan, scoreLabel, scoreTraitsFromMessages, seedBuiltInPersonalities, selectIntervention, severityMeetsThreshold, severitySchema, shadowSchema, shareAnonymizedPatterns, shareFromDiagnosis, soulFrontmatterSchema, soulSchema, startFleet, startMCPServer, startWatch, summarize, summarizeSessionForMemory, summarizeTherapy, surfaceSchema, syncAnchorSchema, syncProfileSchema, syncRuleSchema, therapyDimensionsSchema, therapyScoreLabel, transferIntervention, unregisterDetector, updateEdgeWeight, validateDetectorConfig, verifyAuditChain, verifyCredential, wrapAgent };
|