holomime 2.1.0 → 2.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.js +2 -3
- package/dist/index.d.ts +3 -515
- package/dist/index.js +2 -5
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -14283,7 +14283,6 @@ function checkClause(spec, clause) {
|
|
|
14283
14283
|
}
|
|
14284
14284
|
break;
|
|
14285
14285
|
}
|
|
14286
|
-
case "psyche":
|
|
14287
14286
|
case "mind": {
|
|
14288
14287
|
const hasBigFive = !!s.big_five;
|
|
14289
14288
|
const hasTherapy = !!s.therapy_dimensions;
|
|
@@ -14452,9 +14451,9 @@ function generateRecommendations(reports) {
|
|
|
14452
14451
|
`Define core values and purpose in soul.md for ${report.standard} clauses ${clauseIds}`
|
|
14453
14452
|
);
|
|
14454
14453
|
break;
|
|
14455
|
-
case "
|
|
14454
|
+
case "mind":
|
|
14456
14455
|
recommendations.push(
|
|
14457
|
-
`Configure Big Five traits and therapy dimensions in
|
|
14456
|
+
`Configure Big Five traits and therapy dimensions in mind.sys for ${report.standard} clauses ${clauseIds}`
|
|
14458
14457
|
);
|
|
14459
14458
|
break;
|
|
14460
14459
|
case "conscience":
|
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
|
*/
|
|
@@ -7402,518 +7402,6 @@ declare const STACK_FILES: {
|
|
|
7402
7402
|
readonly conscience: "conscience.exe";
|
|
7403
7403
|
readonly ego: "ego.runtime";
|
|
7404
7404
|
};
|
|
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
7405
|
|
|
7918
7406
|
/**
|
|
7919
7407
|
* Stack Compiler — merges 5 identity stack files into a PersonalitySpec.
|
|
@@ -7990,4 +7478,4 @@ declare function decomposeSpec(spec: Record<string, unknown>): DecomposedStack;
|
|
|
7990
7478
|
*/
|
|
7991
7479
|
declare function loadSpecWithStack(specPath: string): any;
|
|
7992
7480
|
|
|
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 };
|
|
7481
|
+
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 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, 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 };
|
package/dist/index.js
CHANGED
|
@@ -4781,7 +4781,6 @@ var STACK_FILES = {
|
|
|
4781
4781
|
conscience: "conscience.exe",
|
|
4782
4782
|
ego: "ego.runtime"
|
|
4783
4783
|
};
|
|
4784
|
-
var psycheSchema = mindSchema;
|
|
4785
4784
|
|
|
4786
4785
|
// src/core/stack-compiler.ts
|
|
4787
4786
|
import { readFileSync as readFileSync7, existsSync as existsSync6 } from "fs";
|
|
@@ -11398,7 +11397,6 @@ function checkClause(spec, clause) {
|
|
|
11398
11397
|
}
|
|
11399
11398
|
break;
|
|
11400
11399
|
}
|
|
11401
|
-
case "psyche":
|
|
11402
11400
|
case "mind": {
|
|
11403
11401
|
const hasBigFive = !!s.big_five;
|
|
11404
11402
|
const hasTherapy = !!s.therapy_dimensions;
|
|
@@ -11567,9 +11565,9 @@ function generateRecommendations(reports) {
|
|
|
11567
11565
|
`Define core values and purpose in soul.md for ${report.standard} clauses ${clauseIds}`
|
|
11568
11566
|
);
|
|
11569
11567
|
break;
|
|
11570
|
-
case "
|
|
11568
|
+
case "mind":
|
|
11571
11569
|
recommendations.push(
|
|
11572
|
-
`Configure Big Five traits and therapy dimensions in
|
|
11570
|
+
`Configure Big Five traits and therapy dimensions in mind.sys for ${report.standard} clauses ${clauseIds}`
|
|
11573
11571
|
);
|
|
11574
11572
|
break;
|
|
11575
11573
|
case "conscience":
|
|
@@ -13629,7 +13627,6 @@ export {
|
|
|
13629
13627
|
prosodySchema,
|
|
13630
13628
|
providerSchema,
|
|
13631
13629
|
proxemicZoneSchema,
|
|
13632
|
-
psycheSchema,
|
|
13633
13630
|
publishToLeaderboard,
|
|
13634
13631
|
purposeSchema,
|
|
13635
13632
|
pushToHFHub,
|