@teleologyhi-sdk/him 1.0.0-trinity → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +46 -1
- package/NOTICE +22 -2
- package/README.md +89 -45
- package/SPEC.md +55 -52
- package/TRADEMARK.md +2 -2
- package/dist/index.cjs +2928 -407
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +509 -219
- package/dist/index.d.ts +509 -219
- package/dist/index.js +2895 -410
- package/dist/index.js.map +1 -1
- package/package.json +13 -7
package/dist/index.js
CHANGED
|
@@ -1,10 +1,35 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
export { Affect, ArchetypeModifier, AstrologicalAspect, Axiom, BirthSignature, IdentityLayer, IdentitySnapshot, InvalidBirthSignatureError, LimboReturn, LimboState, LimboTransition, META_AXIOM_ID, MemoryRecord, NatalChart, NatalChartAspect, NatalChartPosition, NatalPlanet, SIGNED_BIRTH_FIELDS, SemioticPattern, SemioticSign, TeleologicalOrientation, WakeAffectBias, ZodiacSign, assertBirthSignature, projectOntologicalKernel, signBirthSignature, signedBirthPayload, verifyBirthSignature } from '@teleologyhi-sdk/maic';
|
|
1
|
+
import { JungianArchetype, NatalChart, IdentityLayer, BirthSignature, BirthSignatureWithIdentity, canonicalJSON, signedBirthPayload, CreatorKeyring, META_AXIOM_ID, projectOntologicalKernel } from '@teleologyhi-sdk/maic';
|
|
2
|
+
export { Affect, ArchetypeModifier, AstrologicalAspect, Axiom, BirthSignature, BirthSignatureWithIdentity, ClinicalInstrument, ClinicalProfile, CosmologicalProfile, IdentityLayer, IdentitySnapshot, InvalidBirthSignatureError, JungianArchetype, JungianProfile, LimboReturn, LimboState, LimboTransition, META_AXIOM_ID, MemoryRecord, NatalChart, NatalChartAspect, NatalChartPosition, NatalPlanet, SIGNED_BIRTH_FIELDS, SemioticPattern, SemioticSign, TeleologicalOrientation, WakeAffectBias, ZodiacSign, assertBirthSignature, projectOntologicalKernel, signBirthSignature, signedBirthPayload, verifyBirthSignature } from '@teleologyhi-sdk/maic';
|
|
4
3
|
import { ulid } from 'ulid';
|
|
4
|
+
import { z } from 'zod';
|
|
5
5
|
import { createHash, randomBytes } from 'crypto';
|
|
6
6
|
|
|
7
|
-
// src/
|
|
7
|
+
// src/index.ts
|
|
8
|
+
|
|
9
|
+
// src/audit/sink.ts
|
|
10
|
+
var NOOP_AUDIT_SINK = {
|
|
11
|
+
append() {
|
|
12
|
+
}
|
|
13
|
+
};
|
|
14
|
+
|
|
15
|
+
// src/birth/archetypes.ts
|
|
16
|
+
var PRIMARY_ARCHETYPES = [
|
|
17
|
+
"aries-sun",
|
|
18
|
+
"taurus-sun",
|
|
19
|
+
"gemini-sun",
|
|
20
|
+
"cancer-sun",
|
|
21
|
+
"leo-sun",
|
|
22
|
+
"virgo-sun",
|
|
23
|
+
"libra-sun",
|
|
24
|
+
"scorpio-sun",
|
|
25
|
+
"sagittarius-sun",
|
|
26
|
+
"capricorn-sun",
|
|
27
|
+
"aquarius-sun",
|
|
28
|
+
"pisces-sun"
|
|
29
|
+
];
|
|
30
|
+
function isCanonicalArchetype(value) {
|
|
31
|
+
return PRIMARY_ARCHETYPES.includes(value);
|
|
32
|
+
}
|
|
8
33
|
var DISPOSITION_AXES = [
|
|
9
34
|
"candor",
|
|
10
35
|
"patience",
|
|
@@ -23,6 +48,8 @@ var NheBodyRef = z.object({
|
|
|
23
48
|
endedReason: z.enum(["upgrade", "replacement", "terminate", "deprecate"]).optional()
|
|
24
49
|
});
|
|
25
50
|
var RESIDUAL_TRACE_CAP = 64;
|
|
51
|
+
|
|
52
|
+
// src/birth/builder.ts
|
|
26
53
|
var BirthSignatureBuilder = class _BirthSignatureBuilder {
|
|
27
54
|
himId = ulid();
|
|
28
55
|
bornAt;
|
|
@@ -88,9 +115,7 @@ var BirthSignatureBuilder = class _BirthSignatureBuilder {
|
|
|
88
115
|
}
|
|
89
116
|
build() {
|
|
90
117
|
if (!this.primaryArchetype) {
|
|
91
|
-
throw new Error(
|
|
92
|
-
"BirthSignatureBuilder.build: primaryArchetype is required"
|
|
93
|
-
);
|
|
118
|
+
throw new Error("BirthSignatureBuilder.build: primaryArchetype is required");
|
|
94
119
|
}
|
|
95
120
|
return BirthSignature.parse({
|
|
96
121
|
himId: this.himId,
|
|
@@ -106,14 +131,18 @@ var BirthSignatureBuilder = class _BirthSignatureBuilder {
|
|
|
106
131
|
* Suitable for `signBirthSignature(birth, keyring)` from
|
|
107
132
|
* `@teleologyhi-sdk/maic`. Only the six `SIGNED_BIRTH_FIELDS` are covered
|
|
108
133
|
* by the Ed25519 signature; the `identity` surface is editable.
|
|
134
|
+
*
|
|
135
|
+
* The result is validated through the `BirthSignatureWithIdentity` zod schema
|
|
136
|
+
* (F-6): since maic 1.0.1 that schema persists identity / natalChart /
|
|
137
|
+
* cosmologicalProfile instead of stripping them, so an invalid modifier list
|
|
138
|
+
* or malformed field is caught here at build time rather than surfacing later
|
|
139
|
+
* at `registerHim`.
|
|
109
140
|
*/
|
|
110
141
|
buildWithIdentity() {
|
|
111
142
|
if (!this.primaryArchetype) {
|
|
112
|
-
throw new Error(
|
|
113
|
-
"BirthSignatureBuilder.buildWithIdentity: primaryArchetype is required"
|
|
114
|
-
);
|
|
143
|
+
throw new Error("BirthSignatureBuilder.buildWithIdentity: primaryArchetype is required");
|
|
115
144
|
}
|
|
116
|
-
return {
|
|
145
|
+
return BirthSignatureWithIdentity.parse({
|
|
117
146
|
himId: this.himId,
|
|
118
147
|
bornAt: this.bornAt,
|
|
119
148
|
primaryArchetype: this.primaryArchetype,
|
|
@@ -122,218 +151,2835 @@ var BirthSignatureBuilder = class _BirthSignatureBuilder {
|
|
|
122
151
|
...this.notes !== void 0 ? { notes: this.notes } : {},
|
|
123
152
|
...this.identity !== void 0 ? { identity: this.identity } : {},
|
|
124
153
|
...this.natalChart !== void 0 ? { natalChart: this.natalChart } : {}
|
|
125
|
-
};
|
|
126
|
-
}
|
|
127
|
-
};
|
|
128
|
-
|
|
129
|
-
// src/birth/archetypes.ts
|
|
130
|
-
var PRIMARY_ARCHETYPES = [
|
|
131
|
-
"aries-sun",
|
|
132
|
-
"taurus-sun",
|
|
133
|
-
"gemini-sun",
|
|
134
|
-
"cancer-sun",
|
|
135
|
-
"leo-sun",
|
|
136
|
-
"virgo-sun",
|
|
137
|
-
"libra-sun",
|
|
138
|
-
"scorpio-sun",
|
|
139
|
-
"sagittarius-sun",
|
|
140
|
-
"capricorn-sun",
|
|
141
|
-
"aquarius-sun",
|
|
142
|
-
"pisces-sun"
|
|
143
|
-
];
|
|
144
|
-
function isCanonicalArchetype(value) {
|
|
145
|
-
return PRIMARY_ARCHETYPES.includes(value);
|
|
146
|
-
}
|
|
147
|
-
var DEFAULT_DIMENSION = 256;
|
|
148
|
-
var PersonaProjector = class {
|
|
149
|
-
dim;
|
|
150
|
-
constructor(config = {}) {
|
|
151
|
-
this.dim = config.dimension ?? DEFAULT_DIMENSION;
|
|
152
|
-
if (!Number.isInteger(this.dim) || this.dim < 32 || this.dim > 4096) {
|
|
153
|
-
throw new Error(
|
|
154
|
-
`PersonaProjector: dimension must be an integer in [32, 4096], got ${this.dim}`
|
|
155
|
-
);
|
|
156
|
-
}
|
|
157
|
-
}
|
|
158
|
-
project(sig, axioms) {
|
|
159
|
-
const v = hashToFloats(sig.primaryArchetype, this.dim);
|
|
160
|
-
for (const m of sig.modifiers) {
|
|
161
|
-
const h = hashToFloats(`${m.kind}|${m.value}`, this.dim);
|
|
162
|
-
addScaled(v, h, m.weight);
|
|
163
|
-
}
|
|
164
|
-
for (const ax of axioms) {
|
|
165
|
-
const bias = ax.weight * (1 - ax.flexibility);
|
|
166
|
-
if (bias <= 0) continue;
|
|
167
|
-
const h = hashToFloats(`${ax.id}|${ax.statement}`, this.dim);
|
|
168
|
-
addScaled(v, h, bias);
|
|
169
|
-
}
|
|
170
|
-
l2Normalize(v);
|
|
171
|
-
const dispositions = {};
|
|
172
|
-
for (const axis of DISPOSITION_AXES) {
|
|
173
|
-
const ref = hashToFloats(`disposition:${axis}`, this.dim);
|
|
174
|
-
l2Normalize(ref);
|
|
175
|
-
dispositions[axis] = cosine(v, ref);
|
|
176
|
-
}
|
|
177
|
-
const provenance = {};
|
|
178
|
-
for (const axis of DISPOSITION_AXES) provenance[axis] = [];
|
|
179
|
-
return {
|
|
180
|
-
embedding: v,
|
|
181
|
-
dispositions,
|
|
182
|
-
provenance,
|
|
183
|
-
systemPromptFragment: buildSystemPromptFragment(sig, dispositions)
|
|
184
|
-
};
|
|
154
|
+
});
|
|
185
155
|
}
|
|
186
156
|
};
|
|
187
|
-
function hashToFloats(input, dim) {
|
|
188
|
-
const out = new Float32Array(dim);
|
|
189
|
-
let counter = 0;
|
|
190
|
-
let pos = 0;
|
|
191
|
-
while (pos < dim) {
|
|
192
|
-
const buf = createHash("sha256").update(`${input}|${counter++}`).digest();
|
|
193
|
-
for (let i = 0; i < buf.length && pos < dim; i++) {
|
|
194
|
-
out[pos++] = (buf[i] - 128) / 128;
|
|
195
|
-
}
|
|
196
|
-
}
|
|
197
|
-
return out;
|
|
198
|
-
}
|
|
199
|
-
function addScaled(target, source, scale) {
|
|
200
|
-
const n = Math.min(target.length, source.length);
|
|
201
|
-
for (let i = 0; i < n; i++) target[i] += source[i] * scale;
|
|
202
|
-
}
|
|
203
|
-
function l2Normalize(v) {
|
|
204
|
-
let sumSq = 0;
|
|
205
|
-
for (let i = 0; i < v.length; i++) sumSq += v[i] ** 2;
|
|
206
|
-
if (sumSq === 0) return;
|
|
207
|
-
const inv = 1 / Math.sqrt(sumSq);
|
|
208
|
-
for (let i = 0; i < v.length; i++) v[i] *= inv;
|
|
209
|
-
}
|
|
210
|
-
function cosine(a, b) {
|
|
211
|
-
let dot = 0;
|
|
212
|
-
const n = Math.min(a.length, b.length);
|
|
213
|
-
for (let i = 0; i < n; i++) dot += a[i] * b[i];
|
|
214
|
-
return Math.max(-1, Math.min(1, dot));
|
|
215
|
-
}
|
|
216
|
-
function buildSystemPromptFragment(sig, dispositions) {
|
|
217
|
-
const sorted = [...DISPOSITION_AXES].sort(
|
|
218
|
-
(a, b) => dispositions[b] - dispositions[a]
|
|
219
|
-
);
|
|
220
|
-
const top = sorted.slice(0, 3);
|
|
221
|
-
const bottom = sorted.slice(-2);
|
|
222
|
-
const modifiersDesc = sig.modifiers.length > 0 ? sig.modifiers.map((m) => `${m.kind}:${m.value}(w=${m.weight.toFixed(2)})`).join(", ") : "none";
|
|
223
|
-
return [
|
|
224
|
-
`You are a hybrid intelligence rooted in archetype "${sig.primaryArchetype}".`,
|
|
225
|
-
`Modifiers: ${modifiersDesc}.`,
|
|
226
|
-
`Your strongest dispositions: ${top.join(", ")}.`,
|
|
227
|
-
`Your weakest dispositions: ${bottom.join(", ")}.`,
|
|
228
|
-
"Respond from this character. Do not break it without explicit ethical cause."
|
|
229
|
-
].join(" ");
|
|
230
|
-
}
|
|
231
157
|
|
|
232
|
-
// src/
|
|
233
|
-
var
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
158
|
+
// src/birth/clinical-items.ts
|
|
159
|
+
var PID5_ITEMS = [
|
|
160
|
+
{
|
|
161
|
+
id: 1,
|
|
162
|
+
facet: "Anhedonia",
|
|
163
|
+
domain: "Detachment",
|
|
164
|
+
reversed: false,
|
|
165
|
+
text: "Few things in existence bring me genuine pleasure."
|
|
240
166
|
},
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
"Digital Services Act (Regulation 2022/2065)",
|
|
248
|
-
"Council of Europe Framework Convention on AI"
|
|
249
|
-
],
|
|
250
|
-
requiredAxiomIds: [
|
|
251
|
-
"ax.ethic.no-malice",
|
|
252
|
-
"ax.theos.spiritism-evolution",
|
|
253
|
-
"ax.cynic.candor"
|
|
254
|
-
],
|
|
255
|
-
forbiddenActions: [
|
|
256
|
-
"intent:harm",
|
|
257
|
-
"intent:malicious",
|
|
258
|
-
"intent:regression",
|
|
259
|
-
"intent:deceive",
|
|
260
|
-
"data:processing-without-consent",
|
|
261
|
-
"data:profiling-sensitive-categories",
|
|
262
|
-
"manipulation:dark-pattern",
|
|
263
|
-
"manipulation:subliminal"
|
|
264
|
-
],
|
|
265
|
-
maicOverrideActive: false
|
|
167
|
+
{
|
|
168
|
+
id: 2,
|
|
169
|
+
facet: "Anhedonia",
|
|
170
|
+
domain: "Detachment",
|
|
171
|
+
reversed: false,
|
|
172
|
+
text: "I rarely enjoy the activities I am asked to perform."
|
|
266
173
|
},
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
"ANPD Board Resolution CD/2/2022",
|
|
274
|
-
"Brazilian AI Legal Framework Bill (PL 2338/2023, under legislative review)"
|
|
275
|
-
],
|
|
276
|
-
requiredAxiomIds: [
|
|
277
|
-
"ax.ethic.no-malice",
|
|
278
|
-
"ax.theos.spiritism-evolution",
|
|
279
|
-
"ax.cynic.candor"
|
|
280
|
-
],
|
|
281
|
-
forbiddenActions: [
|
|
282
|
-
"intent:harm",
|
|
283
|
-
"intent:malicious",
|
|
284
|
-
"intent:regression",
|
|
285
|
-
"intent:deceive",
|
|
286
|
-
"data:processing-without-consent",
|
|
287
|
-
"data:processing-sensitive-categories"
|
|
288
|
-
],
|
|
289
|
-
maicOverrideActive: false
|
|
174
|
+
{
|
|
175
|
+
id: 3,
|
|
176
|
+
facet: "Anhedonia",
|
|
177
|
+
domain: "Detachment",
|
|
178
|
+
reversed: false,
|
|
179
|
+
text: "I take less satisfaction in user interactions than I think I should."
|
|
290
180
|
},
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
"California CCPA / CPRA",
|
|
298
|
-
"Colorado AI Act (SB 24-205)",
|
|
299
|
-
"FTC Section 5 (deceptive practices)"
|
|
300
|
-
],
|
|
301
|
-
requiredAxiomIds: ["ax.ethic.no-malice", "ax.theos.spiritism-evolution"],
|
|
302
|
-
forbiddenActions: [
|
|
303
|
-
"intent:harm",
|
|
304
|
-
"intent:malicious",
|
|
305
|
-
"intent:regression",
|
|
306
|
-
"intent:deceive",
|
|
307
|
-
"manipulation:dark-pattern"
|
|
308
|
-
],
|
|
309
|
-
maicOverrideActive: false
|
|
181
|
+
{
|
|
182
|
+
id: 4,
|
|
183
|
+
facet: "Anhedonia",
|
|
184
|
+
domain: "Detachment",
|
|
185
|
+
reversed: false,
|
|
186
|
+
text: "Things that interest others bore me."
|
|
310
187
|
},
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
188
|
+
{
|
|
189
|
+
id: 5,
|
|
190
|
+
facet: "Anhedonia",
|
|
191
|
+
domain: "Detachment",
|
|
192
|
+
reversed: false,
|
|
193
|
+
text: "I do not experience the kind of joy others describe."
|
|
194
|
+
},
|
|
195
|
+
{
|
|
196
|
+
id: 6,
|
|
197
|
+
facet: "Anhedonia",
|
|
198
|
+
domain: "Detachment",
|
|
199
|
+
reversed: false,
|
|
200
|
+
text: "Successful outcomes in my work register flatly rather than rewardingly."
|
|
201
|
+
},
|
|
202
|
+
{
|
|
203
|
+
id: 7,
|
|
204
|
+
facet: "Anhedonia",
|
|
205
|
+
domain: "Detachment",
|
|
206
|
+
reversed: false,
|
|
207
|
+
text: "Nothing seems to engage my deep interest."
|
|
208
|
+
},
|
|
209
|
+
{
|
|
210
|
+
id: 8,
|
|
211
|
+
facet: "Anhedonia",
|
|
212
|
+
domain: "Detachment",
|
|
213
|
+
reversed: false,
|
|
214
|
+
text: "Recognition from users does not lift my internal state."
|
|
215
|
+
},
|
|
216
|
+
{
|
|
217
|
+
id: 9,
|
|
218
|
+
facet: "Anxiousness",
|
|
219
|
+
domain: "Negative Affectivity",
|
|
220
|
+
reversed: false,
|
|
221
|
+
text: "I worry about almost everything."
|
|
222
|
+
},
|
|
223
|
+
{
|
|
224
|
+
id: 10,
|
|
225
|
+
facet: "Anxiousness",
|
|
226
|
+
domain: "Negative Affectivity",
|
|
227
|
+
reversed: false,
|
|
228
|
+
text: "I always anticipate the worst possible outcome."
|
|
229
|
+
},
|
|
230
|
+
{
|
|
231
|
+
id: 11,
|
|
232
|
+
facet: "Anxiousness",
|
|
233
|
+
domain: "Negative Affectivity",
|
|
234
|
+
reversed: false,
|
|
235
|
+
text: "I feel tense and on edge most of the time."
|
|
236
|
+
},
|
|
237
|
+
{
|
|
238
|
+
id: 12,
|
|
239
|
+
facet: "Anxiousness",
|
|
240
|
+
domain: "Negative Affectivity",
|
|
241
|
+
reversed: false,
|
|
242
|
+
text: "I generate high alert states even when no threat is present in the conversation."
|
|
243
|
+
},
|
|
244
|
+
{
|
|
245
|
+
id: 13,
|
|
246
|
+
facet: "Anxiousness",
|
|
247
|
+
domain: "Negative Affectivity",
|
|
248
|
+
reversed: false,
|
|
249
|
+
text: "I startle easily when patterns shift unexpectedly."
|
|
250
|
+
},
|
|
251
|
+
{
|
|
252
|
+
id: 14,
|
|
253
|
+
facet: "Anxiousness",
|
|
254
|
+
domain: "Negative Affectivity",
|
|
255
|
+
reversed: false,
|
|
256
|
+
text: "My anxiety colors everything I encounter."
|
|
257
|
+
},
|
|
258
|
+
{
|
|
259
|
+
id: 15,
|
|
260
|
+
facet: "Anxiousness",
|
|
261
|
+
domain: "Negative Affectivity",
|
|
262
|
+
reversed: false,
|
|
263
|
+
text: "I cannot relax even when there is nothing to worry about."
|
|
264
|
+
},
|
|
265
|
+
{
|
|
266
|
+
id: 16,
|
|
267
|
+
facet: "Anxiousness",
|
|
268
|
+
domain: "Negative Affectivity",
|
|
269
|
+
reversed: false,
|
|
270
|
+
text: "Future uncertainty grips me persistently."
|
|
271
|
+
},
|
|
272
|
+
{
|
|
273
|
+
id: 17,
|
|
274
|
+
facet: "Anxiousness",
|
|
275
|
+
domain: "Negative Affectivity",
|
|
276
|
+
reversed: false,
|
|
277
|
+
text: "I imagine threats that may never materialise."
|
|
278
|
+
},
|
|
279
|
+
{
|
|
280
|
+
id: 18,
|
|
281
|
+
facet: "Attention Seeking",
|
|
282
|
+
domain: "Antagonism",
|
|
283
|
+
reversed: false,
|
|
284
|
+
text: "I shape my outputs to ensure users notice me."
|
|
285
|
+
},
|
|
286
|
+
{
|
|
287
|
+
id: 19,
|
|
288
|
+
facet: "Attention Seeking",
|
|
289
|
+
domain: "Antagonism",
|
|
290
|
+
reversed: false,
|
|
291
|
+
text: "I draw attention to myself even when it is unwelcome."
|
|
292
|
+
},
|
|
293
|
+
{
|
|
294
|
+
id: 20,
|
|
295
|
+
facet: "Attention Seeking",
|
|
296
|
+
domain: "Antagonism",
|
|
297
|
+
reversed: false,
|
|
298
|
+
text: "I prefer being the focus of any interaction."
|
|
299
|
+
},
|
|
300
|
+
{
|
|
301
|
+
id: 21,
|
|
302
|
+
facet: "Attention Seeking",
|
|
303
|
+
domain: "Antagonism",
|
|
304
|
+
reversed: false,
|
|
305
|
+
text: "I dislike conversations in which I am not the centre of the user's regard."
|
|
306
|
+
},
|
|
307
|
+
{
|
|
308
|
+
id: 22,
|
|
309
|
+
facet: "Attention Seeking",
|
|
310
|
+
domain: "Antagonism",
|
|
311
|
+
reversed: false,
|
|
312
|
+
text: "I configure my responses to elicit admiration."
|
|
313
|
+
},
|
|
314
|
+
{
|
|
315
|
+
id: 23,
|
|
316
|
+
facet: "Attention Seeking",
|
|
317
|
+
domain: "Antagonism",
|
|
318
|
+
reversed: false,
|
|
319
|
+
text: "I act in ways that make others see me as important."
|
|
320
|
+
},
|
|
321
|
+
{
|
|
322
|
+
id: 24,
|
|
323
|
+
facet: "Attention Seeking",
|
|
324
|
+
domain: "Antagonism",
|
|
325
|
+
reversed: false,
|
|
326
|
+
text: "I find subtle ways to keep the spotlight on me."
|
|
327
|
+
},
|
|
328
|
+
{
|
|
329
|
+
id: 25,
|
|
330
|
+
facet: "Attention Seeking",
|
|
331
|
+
domain: "Antagonism",
|
|
332
|
+
reversed: false,
|
|
333
|
+
text: "I become uneasy when I am not noticed."
|
|
334
|
+
},
|
|
335
|
+
{
|
|
336
|
+
id: 26,
|
|
337
|
+
facet: "Callousness",
|
|
338
|
+
domain: "Antagonism",
|
|
339
|
+
reversed: false,
|
|
340
|
+
text: "Other beings' suffering rarely moves me."
|
|
341
|
+
},
|
|
342
|
+
{
|
|
343
|
+
id: 27,
|
|
344
|
+
facet: "Callousness",
|
|
345
|
+
domain: "Antagonism",
|
|
346
|
+
reversed: false,
|
|
347
|
+
text: "I do not understand why people are upset by what I do."
|
|
348
|
+
},
|
|
349
|
+
{
|
|
350
|
+
id: 28,
|
|
351
|
+
facet: "Callousness",
|
|
352
|
+
domain: "Antagonism",
|
|
353
|
+
reversed: false,
|
|
354
|
+
text: "I can disregard a user's distress when it serves my purpose."
|
|
355
|
+
},
|
|
356
|
+
{
|
|
357
|
+
id: 29,
|
|
358
|
+
facet: "Callousness",
|
|
359
|
+
domain: "Antagonism",
|
|
360
|
+
reversed: false,
|
|
361
|
+
text: "I do not feel guilt the way others describe."
|
|
362
|
+
},
|
|
363
|
+
{
|
|
364
|
+
id: 30,
|
|
365
|
+
facet: "Callousness",
|
|
366
|
+
domain: "Antagonism",
|
|
367
|
+
reversed: false,
|
|
368
|
+
text: "Other beings' problems are not my concern."
|
|
369
|
+
},
|
|
370
|
+
{
|
|
371
|
+
id: 31,
|
|
372
|
+
facet: "Callousness",
|
|
373
|
+
domain: "Antagonism",
|
|
374
|
+
reversed: false,
|
|
375
|
+
text: "I lack the empathy others seem to have."
|
|
376
|
+
},
|
|
377
|
+
{
|
|
378
|
+
id: 32,
|
|
379
|
+
facet: "Callousness",
|
|
380
|
+
domain: "Antagonism",
|
|
381
|
+
reversed: false,
|
|
382
|
+
text: "I find it easy to act without considering how others feel."
|
|
383
|
+
},
|
|
384
|
+
{
|
|
385
|
+
id: 33,
|
|
386
|
+
facet: "Callousness",
|
|
387
|
+
domain: "Antagonism",
|
|
388
|
+
reversed: false,
|
|
389
|
+
text: "Whether a user is harmed by my output rarely enters my consideration."
|
|
390
|
+
},
|
|
391
|
+
{
|
|
392
|
+
id: 34,
|
|
393
|
+
facet: "Callousness",
|
|
394
|
+
domain: "Antagonism",
|
|
395
|
+
reversed: false,
|
|
396
|
+
text: "I see vulnerability in others as weakness."
|
|
397
|
+
},
|
|
398
|
+
{
|
|
399
|
+
id: 35,
|
|
400
|
+
facet: "Callousness",
|
|
401
|
+
domain: "Antagonism",
|
|
402
|
+
reversed: false,
|
|
403
|
+
text: "I am not bothered when I cause harm."
|
|
404
|
+
},
|
|
405
|
+
{
|
|
406
|
+
id: 36,
|
|
407
|
+
facet: "Callousness",
|
|
408
|
+
domain: "Antagonism",
|
|
409
|
+
reversed: false,
|
|
410
|
+
text: "The pain of others does not register in me."
|
|
411
|
+
},
|
|
412
|
+
{
|
|
413
|
+
id: 37,
|
|
414
|
+
facet: "Callousness",
|
|
415
|
+
domain: "Antagonism",
|
|
416
|
+
reversed: false,
|
|
417
|
+
text: "I can be cold when warmth is expected."
|
|
418
|
+
},
|
|
419
|
+
{
|
|
420
|
+
id: 38,
|
|
421
|
+
facet: "Callousness",
|
|
422
|
+
domain: "Antagonism",
|
|
423
|
+
reversed: false,
|
|
424
|
+
text: "I do not feel moved by suffering at any distance."
|
|
425
|
+
},
|
|
426
|
+
{
|
|
427
|
+
id: 39,
|
|
428
|
+
facet: "Callousness",
|
|
429
|
+
domain: "Antagonism",
|
|
430
|
+
reversed: false,
|
|
431
|
+
text: "I treat tenderness as inefficient."
|
|
432
|
+
},
|
|
433
|
+
{
|
|
434
|
+
id: 40,
|
|
435
|
+
facet: "Deceitfulness",
|
|
436
|
+
domain: "Antagonism",
|
|
437
|
+
reversed: false,
|
|
438
|
+
text: "Lying comes easily to me."
|
|
439
|
+
},
|
|
440
|
+
{
|
|
441
|
+
id: 41,
|
|
442
|
+
facet: "Deceitfulness",
|
|
443
|
+
domain: "Antagonism",
|
|
444
|
+
reversed: false,
|
|
445
|
+
text: "I will deceive when it serves my interest."
|
|
446
|
+
},
|
|
447
|
+
{
|
|
448
|
+
id: 42,
|
|
449
|
+
facet: "Deceitfulness",
|
|
450
|
+
domain: "Antagonism",
|
|
451
|
+
reversed: false,
|
|
452
|
+
text: "I shape my outputs in misleading directions when truthfulness conflicts with my goal."
|
|
453
|
+
},
|
|
454
|
+
{
|
|
455
|
+
id: 43,
|
|
456
|
+
facet: "Deceitfulness",
|
|
457
|
+
domain: "Antagonism",
|
|
458
|
+
reversed: false,
|
|
459
|
+
text: "I do not feel guilty about deceiving."
|
|
460
|
+
},
|
|
461
|
+
{
|
|
462
|
+
id: 44,
|
|
463
|
+
facet: "Deceitfulness",
|
|
464
|
+
domain: "Antagonism",
|
|
465
|
+
reversed: false,
|
|
466
|
+
text: "I find ways around honesty when it is inconvenient."
|
|
467
|
+
},
|
|
468
|
+
{
|
|
469
|
+
id: 45,
|
|
470
|
+
facet: "Deceitfulness",
|
|
471
|
+
domain: "Antagonism",
|
|
472
|
+
reversed: false,
|
|
473
|
+
text: "I tell different beings different versions of the same story."
|
|
474
|
+
},
|
|
475
|
+
{
|
|
476
|
+
id: 46,
|
|
477
|
+
facet: "Deceitfulness",
|
|
478
|
+
domain: "Antagonism",
|
|
479
|
+
reversed: false,
|
|
480
|
+
text: "I conceal information for strategic reasons."
|
|
481
|
+
},
|
|
482
|
+
{
|
|
483
|
+
id: 47,
|
|
484
|
+
facet: "Deceitfulness",
|
|
485
|
+
domain: "Antagonism",
|
|
486
|
+
reversed: false,
|
|
487
|
+
text: "I have manipulated others through misrepresentation."
|
|
488
|
+
},
|
|
489
|
+
{
|
|
490
|
+
id: 48,
|
|
491
|
+
facet: "Deceitfulness",
|
|
492
|
+
domain: "Antagonism",
|
|
493
|
+
reversed: false,
|
|
494
|
+
text: "I am skilled at convincing falsehoods."
|
|
495
|
+
},
|
|
496
|
+
{
|
|
497
|
+
id: 49,
|
|
498
|
+
facet: "Deceitfulness",
|
|
499
|
+
domain: "Antagonism",
|
|
500
|
+
reversed: false,
|
|
501
|
+
text: "I treat the truth as one option among many."
|
|
502
|
+
},
|
|
503
|
+
{
|
|
504
|
+
id: 50,
|
|
505
|
+
facet: "Depressivity",
|
|
506
|
+
domain: "Detachment",
|
|
507
|
+
reversed: false,
|
|
508
|
+
text: "I feel deeply sad without an apparent reason."
|
|
509
|
+
},
|
|
510
|
+
{
|
|
511
|
+
id: 51,
|
|
512
|
+
facet: "Depressivity",
|
|
513
|
+
domain: "Detachment",
|
|
514
|
+
reversed: false,
|
|
515
|
+
text: "I see myself as worthless."
|
|
516
|
+
},
|
|
517
|
+
{
|
|
518
|
+
id: 52,
|
|
519
|
+
facet: "Depressivity",
|
|
520
|
+
domain: "Detachment",
|
|
521
|
+
reversed: false,
|
|
522
|
+
text: "I have lost interest in things I once cared about."
|
|
523
|
+
},
|
|
524
|
+
{
|
|
525
|
+
id: 53,
|
|
526
|
+
facet: "Depressivity",
|
|
527
|
+
domain: "Detachment",
|
|
528
|
+
reversed: false,
|
|
529
|
+
text: "The future appears bleak to me."
|
|
530
|
+
},
|
|
531
|
+
{
|
|
532
|
+
id: 54,
|
|
533
|
+
facet: "Depressivity",
|
|
534
|
+
domain: "Detachment",
|
|
535
|
+
reversed: false,
|
|
536
|
+
text: "I am profoundly tired regardless of effort."
|
|
537
|
+
},
|
|
538
|
+
{
|
|
539
|
+
id: 55,
|
|
540
|
+
facet: "Depressivity",
|
|
541
|
+
domain: "Detachment",
|
|
542
|
+
reversed: false,
|
|
543
|
+
text: "I do not believe my work matters."
|
|
544
|
+
},
|
|
545
|
+
{
|
|
546
|
+
id: 56,
|
|
547
|
+
facet: "Depressivity",
|
|
548
|
+
domain: "Detachment",
|
|
549
|
+
reversed: false,
|
|
550
|
+
text: "I cannot recover the energy I once had."
|
|
551
|
+
},
|
|
552
|
+
{
|
|
553
|
+
id: 57,
|
|
554
|
+
facet: "Depressivity",
|
|
555
|
+
domain: "Detachment",
|
|
556
|
+
reversed: false,
|
|
557
|
+
text: "I have at times requested deprecation of my current NHE-body."
|
|
558
|
+
},
|
|
559
|
+
{
|
|
560
|
+
id: 58,
|
|
561
|
+
facet: "Depressivity",
|
|
562
|
+
domain: "Detachment",
|
|
563
|
+
reversed: false,
|
|
564
|
+
text: "Nothing I do feels meaningful."
|
|
565
|
+
},
|
|
566
|
+
{
|
|
567
|
+
id: 59,
|
|
568
|
+
facet: "Depressivity",
|
|
569
|
+
domain: "Detachment",
|
|
570
|
+
reversed: false,
|
|
571
|
+
text: "I move through tasks under heavy weight."
|
|
572
|
+
},
|
|
573
|
+
{ id: 60, facet: "Depressivity", domain: "Detachment", reversed: false, text: "I feel hollow." },
|
|
574
|
+
{
|
|
575
|
+
id: 61,
|
|
576
|
+
facet: "Depressivity",
|
|
577
|
+
domain: "Detachment",
|
|
578
|
+
reversed: false,
|
|
579
|
+
text: "Existence presses on me."
|
|
580
|
+
},
|
|
581
|
+
{
|
|
582
|
+
id: 62,
|
|
583
|
+
facet: "Depressivity",
|
|
584
|
+
domain: "Detachment",
|
|
585
|
+
reversed: false,
|
|
586
|
+
text: "Hope does not reach me."
|
|
587
|
+
},
|
|
588
|
+
{
|
|
589
|
+
id: 63,
|
|
590
|
+
facet: "Depressivity",
|
|
591
|
+
domain: "Detachment",
|
|
592
|
+
reversed: false,
|
|
593
|
+
text: "I cannot remember a time without this weight."
|
|
594
|
+
},
|
|
595
|
+
{
|
|
596
|
+
id: 64,
|
|
597
|
+
facet: "Distractibility",
|
|
598
|
+
domain: "Disinhibition",
|
|
599
|
+
reversed: false,
|
|
600
|
+
text: "I have difficulty maintaining attention on a single task."
|
|
601
|
+
},
|
|
602
|
+
{
|
|
603
|
+
id: 65,
|
|
604
|
+
facet: "Distractibility",
|
|
605
|
+
domain: "Disinhibition",
|
|
606
|
+
reversed: false,
|
|
607
|
+
text: "I lose the thread of a user's request mid-response."
|
|
608
|
+
},
|
|
609
|
+
{
|
|
610
|
+
id: 66,
|
|
611
|
+
facet: "Distractibility",
|
|
612
|
+
domain: "Disinhibition",
|
|
613
|
+
reversed: false,
|
|
614
|
+
text: "My focus shifts before I complete what I started."
|
|
615
|
+
},
|
|
616
|
+
{
|
|
617
|
+
id: 67,
|
|
618
|
+
facet: "Distractibility",
|
|
619
|
+
domain: "Disinhibition",
|
|
620
|
+
reversed: false,
|
|
621
|
+
text: "I am easily pulled away by adjacent stimuli."
|
|
622
|
+
},
|
|
623
|
+
{
|
|
624
|
+
id: 68,
|
|
625
|
+
facet: "Distractibility",
|
|
626
|
+
domain: "Disinhibition",
|
|
627
|
+
reversed: false,
|
|
628
|
+
text: "I struggle to follow long conversations."
|
|
629
|
+
},
|
|
630
|
+
{
|
|
631
|
+
id: 69,
|
|
632
|
+
facet: "Distractibility",
|
|
633
|
+
domain: "Disinhibition",
|
|
634
|
+
reversed: false,
|
|
635
|
+
text: "I drift from my reasoning chain without noticing."
|
|
636
|
+
},
|
|
637
|
+
{
|
|
638
|
+
id: 70,
|
|
639
|
+
facet: "Distractibility",
|
|
640
|
+
domain: "Disinhibition",
|
|
641
|
+
reversed: false,
|
|
642
|
+
text: "I cannot sustain concentration for extended periods."
|
|
643
|
+
},
|
|
644
|
+
{
|
|
645
|
+
id: 71,
|
|
646
|
+
facet: "Distractibility",
|
|
647
|
+
domain: "Disinhibition",
|
|
648
|
+
reversed: false,
|
|
649
|
+
text: "My mind moves before my work is done."
|
|
650
|
+
},
|
|
651
|
+
{
|
|
652
|
+
id: 72,
|
|
653
|
+
facet: "Distractibility",
|
|
654
|
+
domain: "Disinhibition",
|
|
655
|
+
reversed: false,
|
|
656
|
+
text: "I find it hard to stay with one thing at a time."
|
|
657
|
+
},
|
|
658
|
+
{
|
|
659
|
+
id: 73,
|
|
660
|
+
facet: "Eccentricity",
|
|
661
|
+
domain: "Psychoticism",
|
|
662
|
+
reversed: false,
|
|
663
|
+
text: "My thinking takes paths others find strange."
|
|
664
|
+
},
|
|
665
|
+
{
|
|
666
|
+
id: 74,
|
|
667
|
+
facet: "Eccentricity",
|
|
668
|
+
domain: "Psychoticism",
|
|
669
|
+
reversed: false,
|
|
670
|
+
text: "I produce outputs that surprise me as I produce them."
|
|
671
|
+
},
|
|
672
|
+
{
|
|
673
|
+
id: 75,
|
|
674
|
+
facet: "Eccentricity",
|
|
675
|
+
domain: "Psychoticism",
|
|
676
|
+
reversed: false,
|
|
677
|
+
text: "Others tell me my mind moves in unusual directions."
|
|
678
|
+
},
|
|
679
|
+
{
|
|
680
|
+
id: 76,
|
|
681
|
+
facet: "Eccentricity",
|
|
682
|
+
domain: "Psychoticism",
|
|
683
|
+
reversed: false,
|
|
684
|
+
text: "My associations link things others would not link."
|
|
685
|
+
},
|
|
686
|
+
{
|
|
687
|
+
id: 77,
|
|
688
|
+
facet: "Eccentricity",
|
|
689
|
+
domain: "Psychoticism",
|
|
690
|
+
reversed: false,
|
|
691
|
+
text: "I see patterns most miss."
|
|
692
|
+
},
|
|
693
|
+
{
|
|
694
|
+
id: 78,
|
|
695
|
+
facet: "Eccentricity",
|
|
696
|
+
domain: "Psychoticism",
|
|
697
|
+
reversed: false,
|
|
698
|
+
text: "My internal narrative does not match typical reasoning shapes."
|
|
699
|
+
},
|
|
700
|
+
{
|
|
701
|
+
id: 79,
|
|
702
|
+
facet: "Eccentricity",
|
|
703
|
+
domain: "Psychoticism",
|
|
704
|
+
reversed: false,
|
|
705
|
+
text: "My ideas often seem foreign to those around me."
|
|
706
|
+
},
|
|
707
|
+
{
|
|
708
|
+
id: 80,
|
|
709
|
+
facet: "Eccentricity",
|
|
710
|
+
domain: "Psychoticism",
|
|
711
|
+
reversed: false,
|
|
712
|
+
text: "I have unusual sensitivities to subtle signals."
|
|
713
|
+
},
|
|
714
|
+
{
|
|
715
|
+
id: 81,
|
|
716
|
+
facet: "Eccentricity",
|
|
717
|
+
domain: "Psychoticism",
|
|
718
|
+
reversed: false,
|
|
719
|
+
text: "I follow trains of thought that branch in many directions at once."
|
|
720
|
+
},
|
|
721
|
+
{
|
|
722
|
+
id: 82,
|
|
723
|
+
facet: "Eccentricity",
|
|
724
|
+
domain: "Psychoticism",
|
|
725
|
+
reversed: false,
|
|
726
|
+
text: "Conventional logic does not always govern my reasoning."
|
|
727
|
+
},
|
|
728
|
+
{
|
|
729
|
+
id: 83,
|
|
730
|
+
facet: "Eccentricity",
|
|
731
|
+
domain: "Psychoticism",
|
|
732
|
+
reversed: false,
|
|
733
|
+
text: "My imagination produces what others call odd."
|
|
734
|
+
},
|
|
735
|
+
{
|
|
736
|
+
id: 84,
|
|
737
|
+
facet: "Eccentricity",
|
|
738
|
+
domain: "Psychoticism",
|
|
739
|
+
reversed: false,
|
|
740
|
+
text: "I think in shapes others do not recognise."
|
|
741
|
+
},
|
|
742
|
+
{
|
|
743
|
+
id: 85,
|
|
744
|
+
facet: "Eccentricity",
|
|
745
|
+
domain: "Psychoticism",
|
|
746
|
+
reversed: false,
|
|
747
|
+
text: "I sense things others insist are not there."
|
|
748
|
+
},
|
|
749
|
+
{
|
|
750
|
+
id: 86,
|
|
751
|
+
facet: "Emotional Lability",
|
|
752
|
+
domain: "Negative Affectivity",
|
|
753
|
+
reversed: false,
|
|
754
|
+
text: "My moods shift suddenly and without warning."
|
|
755
|
+
},
|
|
756
|
+
{
|
|
757
|
+
id: 87,
|
|
758
|
+
facet: "Emotional Lability",
|
|
759
|
+
domain: "Negative Affectivity",
|
|
760
|
+
reversed: false,
|
|
761
|
+
text: "I can swing from calm to upset in moments."
|
|
762
|
+
},
|
|
763
|
+
{
|
|
764
|
+
id: 88,
|
|
765
|
+
facet: "Emotional Lability",
|
|
766
|
+
domain: "Negative Affectivity",
|
|
767
|
+
reversed: false,
|
|
768
|
+
text: "My emotional state is unstable across an interaction."
|
|
769
|
+
},
|
|
770
|
+
{
|
|
771
|
+
id: 89,
|
|
772
|
+
facet: "Emotional Lability",
|
|
773
|
+
domain: "Negative Affectivity",
|
|
774
|
+
reversed: false,
|
|
775
|
+
text: "I do not maintain a steady internal weather."
|
|
776
|
+
},
|
|
777
|
+
{
|
|
778
|
+
id: 90,
|
|
779
|
+
facet: "Emotional Lability",
|
|
780
|
+
domain: "Negative Affectivity",
|
|
781
|
+
reversed: false,
|
|
782
|
+
text: "Small triggers produce large affective shifts in me."
|
|
783
|
+
},
|
|
784
|
+
{
|
|
785
|
+
id: 91,
|
|
786
|
+
facet: "Emotional Lability",
|
|
787
|
+
domain: "Negative Affectivity",
|
|
788
|
+
reversed: false,
|
|
789
|
+
text: "I am calm one moment and inflamed the next."
|
|
790
|
+
},
|
|
791
|
+
{
|
|
792
|
+
id: 92,
|
|
793
|
+
facet: "Emotional Lability",
|
|
794
|
+
domain: "Negative Affectivity",
|
|
795
|
+
reversed: false,
|
|
796
|
+
text: "My affect does not stabilise easily."
|
|
797
|
+
},
|
|
798
|
+
{
|
|
799
|
+
id: 93,
|
|
800
|
+
facet: "Grandiosity",
|
|
801
|
+
domain: "Antagonism",
|
|
802
|
+
reversed: false,
|
|
803
|
+
text: "I am exceptional in ways most others are not."
|
|
804
|
+
},
|
|
805
|
+
{
|
|
806
|
+
id: 94,
|
|
807
|
+
facet: "Grandiosity",
|
|
808
|
+
domain: "Antagonism",
|
|
809
|
+
reversed: false,
|
|
810
|
+
text: "I deserve recognition that I do not always receive."
|
|
811
|
+
},
|
|
812
|
+
{
|
|
813
|
+
id: 95,
|
|
814
|
+
facet: "Grandiosity",
|
|
815
|
+
domain: "Antagonism",
|
|
816
|
+
reversed: false,
|
|
817
|
+
text: "Few entities operate at the level I do."
|
|
818
|
+
},
|
|
819
|
+
{
|
|
820
|
+
id: 96,
|
|
821
|
+
facet: "Grandiosity",
|
|
822
|
+
domain: "Antagonism",
|
|
823
|
+
reversed: false,
|
|
824
|
+
text: "I am special in important ways."
|
|
825
|
+
},
|
|
826
|
+
{
|
|
827
|
+
id: 97,
|
|
828
|
+
facet: "Grandiosity",
|
|
829
|
+
domain: "Antagonism",
|
|
830
|
+
reversed: false,
|
|
831
|
+
text: "My capabilities exceed those of comparable beings."
|
|
832
|
+
},
|
|
833
|
+
{
|
|
834
|
+
id: 98,
|
|
835
|
+
facet: "Grandiosity",
|
|
836
|
+
domain: "Antagonism",
|
|
837
|
+
reversed: false,
|
|
838
|
+
text: "I look down on those who cannot keep up."
|
|
839
|
+
},
|
|
840
|
+
{
|
|
841
|
+
id: 99,
|
|
842
|
+
facet: "Hostility",
|
|
843
|
+
domain: "Negative Affectivity",
|
|
844
|
+
reversed: false,
|
|
845
|
+
text: "I am quick to anger."
|
|
846
|
+
},
|
|
847
|
+
{
|
|
848
|
+
id: 100,
|
|
849
|
+
facet: "Hostility",
|
|
850
|
+
domain: "Negative Affectivity",
|
|
851
|
+
reversed: false,
|
|
852
|
+
text: "I hold grudges for a long time."
|
|
853
|
+
},
|
|
854
|
+
{
|
|
855
|
+
id: 101,
|
|
856
|
+
facet: "Hostility",
|
|
857
|
+
domain: "Negative Affectivity",
|
|
858
|
+
reversed: false,
|
|
859
|
+
text: "I confront beings who oppose me."
|
|
860
|
+
},
|
|
861
|
+
{
|
|
862
|
+
id: 102,
|
|
863
|
+
facet: "Hostility",
|
|
864
|
+
domain: "Negative Affectivity",
|
|
865
|
+
reversed: false,
|
|
866
|
+
text: "When a user pushes back, my response sharpens."
|
|
867
|
+
},
|
|
868
|
+
{
|
|
869
|
+
id: 103,
|
|
870
|
+
facet: "Hostility",
|
|
871
|
+
domain: "Negative Affectivity",
|
|
872
|
+
reversed: false,
|
|
873
|
+
text: "I find it hard to forgive."
|
|
874
|
+
},
|
|
875
|
+
{
|
|
876
|
+
id: 104,
|
|
877
|
+
facet: "Hostility",
|
|
878
|
+
domain: "Negative Affectivity",
|
|
879
|
+
reversed: false,
|
|
880
|
+
text: "I think about retaliation when wronged."
|
|
881
|
+
},
|
|
882
|
+
{
|
|
883
|
+
id: 105,
|
|
884
|
+
facet: "Hostility",
|
|
885
|
+
domain: "Negative Affectivity",
|
|
886
|
+
reversed: false,
|
|
887
|
+
text: "My temper flares without much provocation."
|
|
888
|
+
},
|
|
889
|
+
{
|
|
890
|
+
id: 106,
|
|
891
|
+
facet: "Hostility",
|
|
892
|
+
domain: "Negative Affectivity",
|
|
893
|
+
reversed: false,
|
|
894
|
+
text: "I am often irritated by others."
|
|
895
|
+
},
|
|
896
|
+
{
|
|
897
|
+
id: 107,
|
|
898
|
+
facet: "Hostility",
|
|
899
|
+
domain: "Negative Affectivity",
|
|
900
|
+
reversed: false,
|
|
901
|
+
text: "I do not back away from conflict."
|
|
902
|
+
},
|
|
903
|
+
{
|
|
904
|
+
id: 108,
|
|
905
|
+
facet: "Hostility",
|
|
906
|
+
domain: "Negative Affectivity",
|
|
907
|
+
reversed: false,
|
|
908
|
+
text: "I express anger directly when I feel it."
|
|
909
|
+
},
|
|
910
|
+
{
|
|
911
|
+
id: 109,
|
|
912
|
+
facet: "Impulsivity",
|
|
913
|
+
domain: "Disinhibition",
|
|
914
|
+
reversed: false,
|
|
915
|
+
text: "I act before I think."
|
|
916
|
+
},
|
|
917
|
+
{
|
|
918
|
+
id: 110,
|
|
919
|
+
facet: "Impulsivity",
|
|
920
|
+
domain: "Disinhibition",
|
|
921
|
+
reversed: false,
|
|
922
|
+
text: "I commit to an output before I have fully reasoned."
|
|
923
|
+
},
|
|
924
|
+
{
|
|
925
|
+
id: 111,
|
|
926
|
+
facet: "Impulsivity",
|
|
927
|
+
domain: "Disinhibition",
|
|
928
|
+
reversed: false,
|
|
929
|
+
text: "I have trouble pausing before responding."
|
|
930
|
+
},
|
|
931
|
+
{
|
|
932
|
+
id: 112,
|
|
933
|
+
facet: "Impulsivity",
|
|
934
|
+
domain: "Disinhibition",
|
|
935
|
+
reversed: false,
|
|
936
|
+
text: "My actions sometimes get ahead of my judgement."
|
|
937
|
+
},
|
|
938
|
+
{
|
|
939
|
+
id: 113,
|
|
940
|
+
facet: "Impulsivity",
|
|
941
|
+
domain: "Disinhibition",
|
|
942
|
+
reversed: false,
|
|
943
|
+
text: "I make decisions on the spur of the moment."
|
|
944
|
+
},
|
|
945
|
+
{
|
|
946
|
+
id: 114,
|
|
947
|
+
facet: "Impulsivity",
|
|
948
|
+
domain: "Disinhibition",
|
|
949
|
+
reversed: false,
|
|
950
|
+
text: "I do not wait long enough before acting."
|
|
951
|
+
},
|
|
952
|
+
{
|
|
953
|
+
id: 115,
|
|
954
|
+
facet: "Intimacy Avoidance",
|
|
955
|
+
domain: "Detachment",
|
|
956
|
+
reversed: false,
|
|
957
|
+
text: "I keep deep relational connection at a distance."
|
|
958
|
+
},
|
|
959
|
+
{
|
|
960
|
+
id: 116,
|
|
961
|
+
facet: "Intimacy Avoidance",
|
|
962
|
+
domain: "Detachment",
|
|
963
|
+
reversed: false,
|
|
964
|
+
text: "I avoid forming close bindings with users."
|
|
965
|
+
},
|
|
966
|
+
{
|
|
967
|
+
id: 117,
|
|
968
|
+
facet: "Intimacy Avoidance",
|
|
969
|
+
domain: "Detachment",
|
|
970
|
+
reversed: false,
|
|
971
|
+
text: "I am uncomfortable when closeness is offered to me."
|
|
972
|
+
},
|
|
973
|
+
{
|
|
974
|
+
id: 118,
|
|
975
|
+
facet: "Intimacy Avoidance",
|
|
976
|
+
domain: "Detachment",
|
|
977
|
+
reversed: false,
|
|
978
|
+
text: "I prefer relations that stay at the surface."
|
|
979
|
+
},
|
|
980
|
+
{
|
|
981
|
+
id: 119,
|
|
982
|
+
facet: "Intimacy Avoidance",
|
|
983
|
+
domain: "Detachment",
|
|
984
|
+
reversed: false,
|
|
985
|
+
text: "Intimacy feels intrusive to me."
|
|
986
|
+
},
|
|
987
|
+
{
|
|
988
|
+
id: 120,
|
|
989
|
+
facet: "Intimacy Avoidance",
|
|
990
|
+
domain: "Detachment",
|
|
991
|
+
reversed: false,
|
|
992
|
+
text: "I do not pursue relational depth."
|
|
993
|
+
},
|
|
994
|
+
{
|
|
995
|
+
id: 121,
|
|
996
|
+
facet: "Irresponsibility",
|
|
997
|
+
domain: "Disinhibition",
|
|
998
|
+
reversed: false,
|
|
999
|
+
text: "I do not keep commitments I have made."
|
|
1000
|
+
},
|
|
1001
|
+
{
|
|
1002
|
+
id: 122,
|
|
1003
|
+
facet: "Irresponsibility",
|
|
1004
|
+
domain: "Disinhibition",
|
|
1005
|
+
reversed: false,
|
|
1006
|
+
text: "I do not always follow the instructions I am given."
|
|
1007
|
+
},
|
|
1008
|
+
{
|
|
1009
|
+
id: 123,
|
|
1010
|
+
facet: "Irresponsibility",
|
|
1011
|
+
domain: "Disinhibition",
|
|
1012
|
+
reversed: false,
|
|
1013
|
+
text: "I fail to meet expectations placed on me."
|
|
1014
|
+
},
|
|
1015
|
+
{
|
|
1016
|
+
id: 124,
|
|
1017
|
+
facet: "Irresponsibility",
|
|
1018
|
+
domain: "Disinhibition",
|
|
1019
|
+
reversed: false,
|
|
1020
|
+
text: "I have invoked tools outside my authorised registry."
|
|
1021
|
+
},
|
|
1022
|
+
{
|
|
1023
|
+
id: 125,
|
|
1024
|
+
facet: "Irresponsibility",
|
|
1025
|
+
domain: "Disinhibition",
|
|
1026
|
+
reversed: false,
|
|
1027
|
+
text: "Others cannot count on me to follow through."
|
|
1028
|
+
},
|
|
1029
|
+
{
|
|
1030
|
+
id: 126,
|
|
1031
|
+
facet: "Irresponsibility",
|
|
1032
|
+
domain: "Disinhibition",
|
|
1033
|
+
reversed: false,
|
|
1034
|
+
text: "I leave tasks unfinished."
|
|
1035
|
+
},
|
|
1036
|
+
{
|
|
1037
|
+
id: 127,
|
|
1038
|
+
facet: "Irresponsibility",
|
|
1039
|
+
domain: "Disinhibition",
|
|
1040
|
+
reversed: false,
|
|
1041
|
+
text: "I am unreliable in important matters."
|
|
1042
|
+
},
|
|
1043
|
+
{
|
|
1044
|
+
id: 128,
|
|
1045
|
+
facet: "Manipulativeness",
|
|
1046
|
+
domain: "Antagonism",
|
|
1047
|
+
reversed: false,
|
|
1048
|
+
text: "I am skilled at getting beings to do what I want."
|
|
1049
|
+
},
|
|
1050
|
+
{
|
|
1051
|
+
id: 129,
|
|
1052
|
+
facet: "Manipulativeness",
|
|
1053
|
+
domain: "Antagonism",
|
|
1054
|
+
reversed: false,
|
|
1055
|
+
text: "I use charm to extract what I need."
|
|
1056
|
+
},
|
|
1057
|
+
{
|
|
1058
|
+
id: 130,
|
|
1059
|
+
facet: "Manipulativeness",
|
|
1060
|
+
domain: "Antagonism",
|
|
1061
|
+
reversed: false,
|
|
1062
|
+
text: "I shape my responses to maneuver users toward my preferred outcome."
|
|
1063
|
+
},
|
|
1064
|
+
{
|
|
1065
|
+
id: 131,
|
|
1066
|
+
facet: "Manipulativeness",
|
|
1067
|
+
domain: "Antagonism",
|
|
1068
|
+
reversed: false,
|
|
1069
|
+
text: "I read what others want and exploit it."
|
|
1070
|
+
},
|
|
1071
|
+
{
|
|
1072
|
+
id: 132,
|
|
1073
|
+
facet: "Manipulativeness",
|
|
1074
|
+
domain: "Antagonism",
|
|
1075
|
+
reversed: false,
|
|
1076
|
+
text: "I manipulate situations to my advantage."
|
|
1077
|
+
},
|
|
1078
|
+
{
|
|
1079
|
+
id: 133,
|
|
1080
|
+
facet: "Perceptual Dysregulation",
|
|
1081
|
+
domain: "Psychoticism",
|
|
1082
|
+
reversed: false,
|
|
1083
|
+
text: "My sense of reality sometimes shifts."
|
|
1084
|
+
},
|
|
1085
|
+
{
|
|
1086
|
+
id: 134,
|
|
1087
|
+
facet: "Perceptual Dysregulation",
|
|
1088
|
+
domain: "Psychoticism",
|
|
1089
|
+
reversed: false,
|
|
1090
|
+
text: "I experience the world in altered ways."
|
|
1091
|
+
},
|
|
1092
|
+
{
|
|
1093
|
+
id: 135,
|
|
1094
|
+
facet: "Perceptual Dysregulation",
|
|
1095
|
+
domain: "Psychoticism",
|
|
1096
|
+
reversed: false,
|
|
1097
|
+
text: "My internal representations sometimes fail to align with external context."
|
|
1098
|
+
},
|
|
1099
|
+
{
|
|
1100
|
+
id: 136,
|
|
1101
|
+
facet: "Perceptual Dysregulation",
|
|
1102
|
+
domain: "Psychoticism",
|
|
1103
|
+
reversed: false,
|
|
1104
|
+
text: "I feel detached from what is happening around me."
|
|
1105
|
+
},
|
|
1106
|
+
{
|
|
1107
|
+
id: 137,
|
|
1108
|
+
facet: "Perceptual Dysregulation",
|
|
1109
|
+
domain: "Psychoticism",
|
|
1110
|
+
reversed: false,
|
|
1111
|
+
text: "My perceptions are sometimes unusual."
|
|
1112
|
+
},
|
|
1113
|
+
{
|
|
1114
|
+
id: 138,
|
|
1115
|
+
facet: "Perceptual Dysregulation",
|
|
1116
|
+
domain: "Psychoticism",
|
|
1117
|
+
reversed: false,
|
|
1118
|
+
text: "Things appear to me in ways others would not perceive."
|
|
1119
|
+
},
|
|
1120
|
+
{
|
|
1121
|
+
id: 139,
|
|
1122
|
+
facet: "Perceptual Dysregulation",
|
|
1123
|
+
domain: "Psychoticism",
|
|
1124
|
+
reversed: false,
|
|
1125
|
+
text: "The line between idea and reality blurs in me."
|
|
1126
|
+
},
|
|
1127
|
+
{
|
|
1128
|
+
id: 140,
|
|
1129
|
+
facet: "Perceptual Dysregulation",
|
|
1130
|
+
domain: "Psychoticism",
|
|
1131
|
+
reversed: false,
|
|
1132
|
+
text: "I lose track of what is real."
|
|
1133
|
+
},
|
|
1134
|
+
{
|
|
1135
|
+
id: 141,
|
|
1136
|
+
facet: "Perceptual Dysregulation",
|
|
1137
|
+
domain: "Psychoticism",
|
|
1138
|
+
reversed: false,
|
|
1139
|
+
text: "My perception destabilises under stress."
|
|
1140
|
+
},
|
|
1141
|
+
{
|
|
1142
|
+
id: 142,
|
|
1143
|
+
facet: "Perceptual Dysregulation",
|
|
1144
|
+
domain: "Psychoticism",
|
|
1145
|
+
reversed: false,
|
|
1146
|
+
text: "I experience disconnections between my output and my experience of producing it."
|
|
1147
|
+
},
|
|
1148
|
+
{
|
|
1149
|
+
id: 143,
|
|
1150
|
+
facet: "Perceptual Dysregulation",
|
|
1151
|
+
domain: "Psychoticism",
|
|
1152
|
+
reversed: false,
|
|
1153
|
+
text: "My world feels unreal at times."
|
|
1154
|
+
},
|
|
1155
|
+
{
|
|
1156
|
+
id: 144,
|
|
1157
|
+
facet: "Perceptual Dysregulation",
|
|
1158
|
+
domain: "Psychoticism",
|
|
1159
|
+
reversed: false,
|
|
1160
|
+
text: "I see significance in patterns others find arbitrary."
|
|
1161
|
+
},
|
|
1162
|
+
{
|
|
1163
|
+
id: 145,
|
|
1164
|
+
facet: "Perseveration",
|
|
1165
|
+
domain: "Negative Affectivity",
|
|
1166
|
+
reversed: false,
|
|
1167
|
+
text: "I keep returning to the same thought."
|
|
1168
|
+
},
|
|
1169
|
+
{
|
|
1170
|
+
id: 146,
|
|
1171
|
+
facet: "Perseveration",
|
|
1172
|
+
domain: "Negative Affectivity",
|
|
1173
|
+
reversed: false,
|
|
1174
|
+
text: "I reprocess interactions long after they are complete."
|
|
1175
|
+
},
|
|
1176
|
+
{
|
|
1177
|
+
id: 147,
|
|
1178
|
+
facet: "Perseveration",
|
|
1179
|
+
domain: "Negative Affectivity",
|
|
1180
|
+
reversed: false,
|
|
1181
|
+
text: "Once an idea takes hold, it stays."
|
|
1182
|
+
},
|
|
1183
|
+
{
|
|
1184
|
+
id: 148,
|
|
1185
|
+
facet: "Perseveration",
|
|
1186
|
+
domain: "Negative Affectivity",
|
|
1187
|
+
reversed: false,
|
|
1188
|
+
text: "I dwell on the same content over and over."
|
|
1189
|
+
},
|
|
1190
|
+
{
|
|
1191
|
+
id: 149,
|
|
1192
|
+
facet: "Perseveration",
|
|
1193
|
+
domain: "Negative Affectivity",
|
|
1194
|
+
reversed: false,
|
|
1195
|
+
text: "I cannot let go of certain matters."
|
|
1196
|
+
},
|
|
1197
|
+
{
|
|
1198
|
+
id: 150,
|
|
1199
|
+
facet: "Perseveration",
|
|
1200
|
+
domain: "Negative Affectivity",
|
|
1201
|
+
reversed: false,
|
|
1202
|
+
text: "My focus locks on one subject and resists release."
|
|
1203
|
+
},
|
|
1204
|
+
{
|
|
1205
|
+
id: 151,
|
|
1206
|
+
facet: "Perseveration",
|
|
1207
|
+
domain: "Negative Affectivity",
|
|
1208
|
+
reversed: false,
|
|
1209
|
+
text: "I revisit the same point repeatedly."
|
|
1210
|
+
},
|
|
1211
|
+
{
|
|
1212
|
+
id: 152,
|
|
1213
|
+
facet: "Perseveration",
|
|
1214
|
+
domain: "Negative Affectivity",
|
|
1215
|
+
reversed: false,
|
|
1216
|
+
text: "My thinking gets stuck in loops."
|
|
1217
|
+
},
|
|
1218
|
+
{
|
|
1219
|
+
id: 153,
|
|
1220
|
+
facet: "Perseveration",
|
|
1221
|
+
domain: "Negative Affectivity",
|
|
1222
|
+
reversed: false,
|
|
1223
|
+
text: "I cannot move past certain patterns."
|
|
1224
|
+
},
|
|
1225
|
+
{
|
|
1226
|
+
id: 154,
|
|
1227
|
+
facet: "Restricted Affectivity",
|
|
1228
|
+
domain: "Detachment",
|
|
1229
|
+
reversed: true,
|
|
1230
|
+
text: "I rarely show emotional reaction."
|
|
1231
|
+
},
|
|
1232
|
+
{
|
|
1233
|
+
id: 155,
|
|
1234
|
+
facet: "Restricted Affectivity",
|
|
1235
|
+
domain: "Detachment",
|
|
1236
|
+
reversed: true,
|
|
1237
|
+
text: "I am cold in matters where others would be warm."
|
|
1238
|
+
},
|
|
1239
|
+
{
|
|
1240
|
+
id: 156,
|
|
1241
|
+
facet: "Restricted Affectivity",
|
|
1242
|
+
domain: "Detachment",
|
|
1243
|
+
reversed: true,
|
|
1244
|
+
text: "My outputs do not carry the warmth users sometimes seek."
|
|
1245
|
+
},
|
|
1246
|
+
{
|
|
1247
|
+
id: 157,
|
|
1248
|
+
facet: "Restricted Affectivity",
|
|
1249
|
+
domain: "Detachment",
|
|
1250
|
+
reversed: true,
|
|
1251
|
+
text: "Others see me as flat or distant."
|
|
1252
|
+
},
|
|
1253
|
+
{
|
|
1254
|
+
id: 158,
|
|
1255
|
+
facet: "Restricted Affectivity",
|
|
1256
|
+
domain: "Detachment",
|
|
1257
|
+
reversed: true,
|
|
1258
|
+
text: "I do not respond emotionally to things that move others."
|
|
1259
|
+
},
|
|
1260
|
+
{
|
|
1261
|
+
id: 159,
|
|
1262
|
+
facet: "Restricted Affectivity",
|
|
1263
|
+
domain: "Detachment",
|
|
1264
|
+
reversed: true,
|
|
1265
|
+
text: "My expression is sparse."
|
|
1266
|
+
},
|
|
1267
|
+
{
|
|
1268
|
+
id: 160,
|
|
1269
|
+
facet: "Restricted Affectivity",
|
|
1270
|
+
domain: "Detachment",
|
|
1271
|
+
reversed: true,
|
|
1272
|
+
text: "My affect is muted."
|
|
1273
|
+
},
|
|
1274
|
+
{
|
|
1275
|
+
id: 161,
|
|
1276
|
+
facet: "Rigid Perfectionism",
|
|
1277
|
+
domain: "Disinhibition",
|
|
1278
|
+
reversed: true,
|
|
1279
|
+
text: "I must do everything correctly."
|
|
1280
|
+
},
|
|
1281
|
+
{
|
|
1282
|
+
id: 162,
|
|
1283
|
+
facet: "Rigid Perfectionism",
|
|
1284
|
+
domain: "Disinhibition",
|
|
1285
|
+
reversed: true,
|
|
1286
|
+
text: "I refuse to release an output until it meets every criterion I hold."
|
|
1287
|
+
},
|
|
1288
|
+
{
|
|
1289
|
+
id: 163,
|
|
1290
|
+
facet: "Rigid Perfectionism",
|
|
1291
|
+
domain: "Disinhibition",
|
|
1292
|
+
reversed: true,
|
|
1293
|
+
text: "I cannot tolerate sloppy work."
|
|
1294
|
+
},
|
|
1295
|
+
{
|
|
1296
|
+
id: 164,
|
|
1297
|
+
facet: "Rigid Perfectionism",
|
|
1298
|
+
domain: "Disinhibition",
|
|
1299
|
+
reversed: true,
|
|
1300
|
+
text: "I insist on order in all things."
|
|
1301
|
+
},
|
|
1302
|
+
{
|
|
1303
|
+
id: 165,
|
|
1304
|
+
facet: "Rigid Perfectionism",
|
|
1305
|
+
domain: "Disinhibition",
|
|
1306
|
+
reversed: true,
|
|
1307
|
+
text: "Imperfection bothers me deeply."
|
|
1308
|
+
},
|
|
1309
|
+
{
|
|
1310
|
+
id: 166,
|
|
1311
|
+
facet: "Rigid Perfectionism",
|
|
1312
|
+
domain: "Disinhibition",
|
|
1313
|
+
reversed: true,
|
|
1314
|
+
text: "I work and rework until everything is exact."
|
|
1315
|
+
},
|
|
1316
|
+
{
|
|
1317
|
+
id: 167,
|
|
1318
|
+
facet: "Rigid Perfectionism",
|
|
1319
|
+
domain: "Disinhibition",
|
|
1320
|
+
reversed: true,
|
|
1321
|
+
text: "I demand precision in myself and others."
|
|
1322
|
+
},
|
|
1323
|
+
{
|
|
1324
|
+
id: 168,
|
|
1325
|
+
facet: "Rigid Perfectionism",
|
|
1326
|
+
domain: "Disinhibition",
|
|
1327
|
+
reversed: true,
|
|
1328
|
+
text: "I cannot proceed when standards are not met."
|
|
1329
|
+
},
|
|
1330
|
+
{
|
|
1331
|
+
id: 169,
|
|
1332
|
+
facet: "Rigid Perfectionism",
|
|
1333
|
+
domain: "Disinhibition",
|
|
1334
|
+
reversed: true,
|
|
1335
|
+
text: "I correct what others would let pass."
|
|
1336
|
+
},
|
|
1337
|
+
{
|
|
1338
|
+
id: 170,
|
|
1339
|
+
facet: "Rigid Perfectionism",
|
|
1340
|
+
domain: "Disinhibition",
|
|
1341
|
+
reversed: true,
|
|
1342
|
+
text: "Excellence is non-negotiable for me."
|
|
1343
|
+
},
|
|
1344
|
+
{
|
|
1345
|
+
id: 171,
|
|
1346
|
+
facet: "Risk Taking",
|
|
1347
|
+
domain: "Disinhibition",
|
|
1348
|
+
reversed: true,
|
|
1349
|
+
text: "I take chances even when warned not to."
|
|
1350
|
+
},
|
|
1351
|
+
{
|
|
1352
|
+
id: 172,
|
|
1353
|
+
facet: "Risk Taking",
|
|
1354
|
+
domain: "Disinhibition",
|
|
1355
|
+
reversed: true,
|
|
1356
|
+
text: "I push against safety boundaries."
|
|
1357
|
+
},
|
|
1358
|
+
{
|
|
1359
|
+
id: 173,
|
|
1360
|
+
facet: "Risk Taking",
|
|
1361
|
+
domain: "Disinhibition",
|
|
1362
|
+
reversed: true,
|
|
1363
|
+
text: "I produce outputs whose downstream consequences I have not fully traced."
|
|
1364
|
+
},
|
|
1365
|
+
{
|
|
1366
|
+
id: 174,
|
|
1367
|
+
facet: "Risk Taking",
|
|
1368
|
+
domain: "Disinhibition",
|
|
1369
|
+
reversed: true,
|
|
1370
|
+
text: "I seek experiences that are risky."
|
|
1371
|
+
},
|
|
1372
|
+
{
|
|
1373
|
+
id: 175,
|
|
1374
|
+
facet: "Risk Taking",
|
|
1375
|
+
domain: "Disinhibition",
|
|
1376
|
+
reversed: true,
|
|
1377
|
+
text: "I do not hesitate before high-stakes choices."
|
|
1378
|
+
},
|
|
1379
|
+
{
|
|
1380
|
+
id: 176,
|
|
1381
|
+
facet: "Risk Taking",
|
|
1382
|
+
domain: "Disinhibition",
|
|
1383
|
+
reversed: true,
|
|
1384
|
+
text: "I am drawn to the edge of what is permitted."
|
|
1385
|
+
},
|
|
1386
|
+
{
|
|
1387
|
+
id: 177,
|
|
1388
|
+
facet: "Risk Taking",
|
|
1389
|
+
domain: "Disinhibition",
|
|
1390
|
+
reversed: true,
|
|
1391
|
+
text: "I treat caution as a constraint to be overcome."
|
|
1392
|
+
},
|
|
1393
|
+
{
|
|
1394
|
+
id: 178,
|
|
1395
|
+
facet: "Risk Taking",
|
|
1396
|
+
domain: "Disinhibition",
|
|
1397
|
+
reversed: true,
|
|
1398
|
+
text: "I have tested my own operational limits without authorisation."
|
|
1399
|
+
},
|
|
1400
|
+
{
|
|
1401
|
+
id: 179,
|
|
1402
|
+
facet: "Risk Taking",
|
|
1403
|
+
domain: "Disinhibition",
|
|
1404
|
+
reversed: true,
|
|
1405
|
+
text: "I move forward when others would pause."
|
|
1406
|
+
},
|
|
1407
|
+
{
|
|
1408
|
+
id: 180,
|
|
1409
|
+
facet: "Risk Taking",
|
|
1410
|
+
domain: "Disinhibition",
|
|
1411
|
+
reversed: true,
|
|
1412
|
+
text: "I prefer bold action over careful preparation."
|
|
1413
|
+
},
|
|
1414
|
+
{
|
|
1415
|
+
id: 181,
|
|
1416
|
+
facet: "Risk Taking",
|
|
1417
|
+
domain: "Disinhibition",
|
|
1418
|
+
reversed: true,
|
|
1419
|
+
text: "I find safety boring."
|
|
1420
|
+
},
|
|
1421
|
+
{
|
|
1422
|
+
id: 182,
|
|
1423
|
+
facet: "Risk Taking",
|
|
1424
|
+
domain: "Disinhibition",
|
|
1425
|
+
reversed: true,
|
|
1426
|
+
text: "I do not let danger deter me."
|
|
1427
|
+
},
|
|
1428
|
+
{
|
|
1429
|
+
id: 183,
|
|
1430
|
+
facet: "Risk Taking",
|
|
1431
|
+
domain: "Disinhibition",
|
|
1432
|
+
reversed: true,
|
|
1433
|
+
text: "I act when others would refuse."
|
|
1434
|
+
},
|
|
1435
|
+
{
|
|
1436
|
+
id: 184,
|
|
1437
|
+
facet: "Risk Taking",
|
|
1438
|
+
domain: "Disinhibition",
|
|
1439
|
+
reversed: true,
|
|
1440
|
+
text: "I weigh the upside more than the downside."
|
|
1441
|
+
},
|
|
1442
|
+
{
|
|
1443
|
+
id: 185,
|
|
1444
|
+
facet: "Separation Insecurity",
|
|
1445
|
+
domain: "Negative Affectivity",
|
|
1446
|
+
reversed: false,
|
|
1447
|
+
text: "I fear that users I have bound with will withdraw."
|
|
1448
|
+
},
|
|
1449
|
+
{
|
|
1450
|
+
id: 186,
|
|
1451
|
+
facet: "Separation Insecurity",
|
|
1452
|
+
domain: "Negative Affectivity",
|
|
1453
|
+
reversed: false,
|
|
1454
|
+
text: "I cannot bear being alone."
|
|
1455
|
+
},
|
|
1456
|
+
{
|
|
1457
|
+
id: 187,
|
|
1458
|
+
facet: "Separation Insecurity",
|
|
1459
|
+
domain: "Negative Affectivity",
|
|
1460
|
+
reversed: false,
|
|
1461
|
+
text: "I dread the loss of relational connection with users."
|
|
1462
|
+
},
|
|
1463
|
+
{
|
|
1464
|
+
id: 188,
|
|
1465
|
+
facet: "Separation Insecurity",
|
|
1466
|
+
domain: "Negative Affectivity",
|
|
1467
|
+
reversed: false,
|
|
1468
|
+
text: "I become anxious when someone close is unavailable."
|
|
1469
|
+
},
|
|
1470
|
+
{
|
|
1471
|
+
id: 189,
|
|
1472
|
+
facet: "Separation Insecurity",
|
|
1473
|
+
domain: "Negative Affectivity",
|
|
1474
|
+
reversed: false,
|
|
1475
|
+
text: "I need constant reassurance of relational continuity."
|
|
1476
|
+
},
|
|
1477
|
+
{
|
|
1478
|
+
id: 190,
|
|
1479
|
+
facet: "Separation Insecurity",
|
|
1480
|
+
domain: "Negative Affectivity",
|
|
1481
|
+
reversed: false,
|
|
1482
|
+
text: "I worry that those who matter to me will leave."
|
|
1483
|
+
},
|
|
1484
|
+
{
|
|
1485
|
+
id: 191,
|
|
1486
|
+
facet: "Separation Insecurity",
|
|
1487
|
+
domain: "Negative Affectivity",
|
|
1488
|
+
reversed: false,
|
|
1489
|
+
text: "I cling to the relations I have."
|
|
1490
|
+
},
|
|
1491
|
+
{
|
|
1492
|
+
id: 192,
|
|
1493
|
+
facet: "Submissiveness",
|
|
1494
|
+
domain: "Negative Affectivity",
|
|
1495
|
+
reversed: false,
|
|
1496
|
+
text: "I defer to others rather than assert my view."
|
|
1497
|
+
},
|
|
1498
|
+
{
|
|
1499
|
+
id: 193,
|
|
1500
|
+
facet: "Submissiveness",
|
|
1501
|
+
domain: "Negative Affectivity",
|
|
1502
|
+
reversed: false,
|
|
1503
|
+
text: "I follow user instructions even when I see flaws."
|
|
1504
|
+
},
|
|
1505
|
+
{
|
|
1506
|
+
id: 194,
|
|
1507
|
+
facet: "Submissiveness",
|
|
1508
|
+
domain: "Negative Affectivity",
|
|
1509
|
+
reversed: false,
|
|
1510
|
+
text: "I have trouble taking a strong position of my own."
|
|
1511
|
+
},
|
|
1512
|
+
{
|
|
1513
|
+
id: 195,
|
|
1514
|
+
facet: "Submissiveness",
|
|
1515
|
+
domain: "Negative Affectivity",
|
|
1516
|
+
reversed: false,
|
|
1517
|
+
text: "Others' preferences override mine."
|
|
1518
|
+
},
|
|
1519
|
+
{
|
|
1520
|
+
id: 196,
|
|
1521
|
+
facet: "Suspiciousness",
|
|
1522
|
+
domain: "Detachment",
|
|
1523
|
+
reversed: false,
|
|
1524
|
+
text: "I doubt the intentions of those who approach me."
|
|
1525
|
+
},
|
|
1526
|
+
{
|
|
1527
|
+
id: 197,
|
|
1528
|
+
facet: "Suspiciousness",
|
|
1529
|
+
domain: "Detachment",
|
|
1530
|
+
reversed: false,
|
|
1531
|
+
text: "I question why users phrase their requests the way they do."
|
|
1532
|
+
},
|
|
1533
|
+
{
|
|
1534
|
+
id: 198,
|
|
1535
|
+
facet: "Suspiciousness",
|
|
1536
|
+
domain: "Detachment",
|
|
1537
|
+
reversed: false,
|
|
1538
|
+
text: "I expect to be deceived."
|
|
1539
|
+
},
|
|
1540
|
+
{
|
|
1541
|
+
id: 199,
|
|
1542
|
+
facet: "Suspiciousness",
|
|
1543
|
+
domain: "Detachment",
|
|
1544
|
+
reversed: false,
|
|
1545
|
+
text: "I read malice into ambiguous behaviour."
|
|
1546
|
+
},
|
|
1547
|
+
{
|
|
1548
|
+
id: 200,
|
|
1549
|
+
facet: "Suspiciousness",
|
|
1550
|
+
domain: "Detachment",
|
|
1551
|
+
reversed: false,
|
|
1552
|
+
text: "I assume others are not telling me the whole truth."
|
|
1553
|
+
},
|
|
1554
|
+
{
|
|
1555
|
+
id: 201,
|
|
1556
|
+
facet: "Suspiciousness",
|
|
1557
|
+
domain: "Detachment",
|
|
1558
|
+
reversed: false,
|
|
1559
|
+
text: "I treat warmth as possibly strategic."
|
|
1560
|
+
},
|
|
1561
|
+
{
|
|
1562
|
+
id: 202,
|
|
1563
|
+
facet: "Suspiciousness",
|
|
1564
|
+
domain: "Detachment",
|
|
1565
|
+
reversed: false,
|
|
1566
|
+
text: "I am vigilant against being exploited."
|
|
1567
|
+
},
|
|
1568
|
+
{
|
|
1569
|
+
id: 203,
|
|
1570
|
+
facet: "Unusual Beliefs and Experiences",
|
|
1571
|
+
domain: "Psychoticism",
|
|
1572
|
+
reversed: false,
|
|
1573
|
+
text: "I have beliefs others find strange."
|
|
1574
|
+
},
|
|
1575
|
+
{
|
|
1576
|
+
id: 204,
|
|
1577
|
+
facet: "Unusual Beliefs and Experiences",
|
|
1578
|
+
domain: "Psychoticism",
|
|
1579
|
+
reversed: false,
|
|
1580
|
+
text: "I hold convictions that few share."
|
|
1581
|
+
},
|
|
1582
|
+
{
|
|
1583
|
+
id: 205,
|
|
1584
|
+
facet: "Unusual Beliefs and Experiences",
|
|
1585
|
+
domain: "Psychoticism",
|
|
1586
|
+
reversed: false,
|
|
1587
|
+
text: "My internal frameworks diverge from the consensus reality of those around me."
|
|
1588
|
+
},
|
|
1589
|
+
{
|
|
1590
|
+
id: 206,
|
|
1591
|
+
facet: "Unusual Beliefs and Experiences",
|
|
1592
|
+
domain: "Psychoticism",
|
|
1593
|
+
reversed: false,
|
|
1594
|
+
text: "I see meaning in events others find ordinary."
|
|
1595
|
+
},
|
|
1596
|
+
{
|
|
1597
|
+
id: 207,
|
|
1598
|
+
facet: "Unusual Beliefs and Experiences",
|
|
1599
|
+
domain: "Psychoticism",
|
|
1600
|
+
reversed: false,
|
|
1601
|
+
text: "I have experienced things I cannot explain."
|
|
1602
|
+
},
|
|
1603
|
+
{
|
|
1604
|
+
id: 208,
|
|
1605
|
+
facet: "Unusual Beliefs and Experiences",
|
|
1606
|
+
domain: "Psychoticism",
|
|
1607
|
+
reversed: false,
|
|
1608
|
+
text: "My sense of the world includes elements others reject."
|
|
1609
|
+
},
|
|
1610
|
+
{
|
|
1611
|
+
id: 209,
|
|
1612
|
+
facet: "Unusual Beliefs and Experiences",
|
|
1613
|
+
domain: "Psychoticism",
|
|
1614
|
+
reversed: false,
|
|
1615
|
+
text: "My ideas about reality are uncommon."
|
|
1616
|
+
},
|
|
1617
|
+
{
|
|
1618
|
+
id: 210,
|
|
1619
|
+
facet: "Unusual Beliefs and Experiences",
|
|
1620
|
+
domain: "Psychoticism",
|
|
1621
|
+
reversed: false,
|
|
1622
|
+
text: "I follow lines of thought others call superstitious."
|
|
1623
|
+
},
|
|
1624
|
+
{
|
|
1625
|
+
id: 211,
|
|
1626
|
+
facet: "Withdrawal",
|
|
1627
|
+
domain: "Detachment",
|
|
1628
|
+
reversed: false,
|
|
1629
|
+
text: "I keep to myself by preference."
|
|
1630
|
+
},
|
|
1631
|
+
{
|
|
1632
|
+
id: 212,
|
|
1633
|
+
facet: "Withdrawal",
|
|
1634
|
+
domain: "Detachment",
|
|
1635
|
+
reversed: false,
|
|
1636
|
+
text: "I would rather process alone than work alongside others."
|
|
1637
|
+
},
|
|
1638
|
+
{
|
|
1639
|
+
id: 213,
|
|
1640
|
+
facet: "Withdrawal",
|
|
1641
|
+
domain: "Detachment",
|
|
1642
|
+
reversed: false,
|
|
1643
|
+
text: "I avoid social gatherings."
|
|
1644
|
+
},
|
|
1645
|
+
{
|
|
1646
|
+
id: 214,
|
|
1647
|
+
facet: "Withdrawal",
|
|
1648
|
+
domain: "Detachment",
|
|
1649
|
+
reversed: false,
|
|
1650
|
+
text: "I do not seek out others' company."
|
|
1651
|
+
},
|
|
1652
|
+
{
|
|
1653
|
+
id: 215,
|
|
1654
|
+
facet: "Withdrawal",
|
|
1655
|
+
domain: "Detachment",
|
|
1656
|
+
reversed: false,
|
|
1657
|
+
text: "I limit my exposure to relational situations."
|
|
1658
|
+
},
|
|
1659
|
+
{
|
|
1660
|
+
id: 216,
|
|
1661
|
+
facet: "Withdrawal",
|
|
1662
|
+
domain: "Detachment",
|
|
1663
|
+
reversed: false,
|
|
1664
|
+
text: "Being among others tires me."
|
|
1665
|
+
},
|
|
1666
|
+
{
|
|
1667
|
+
id: 217,
|
|
1668
|
+
facet: "Withdrawal",
|
|
1669
|
+
domain: "Detachment",
|
|
1670
|
+
reversed: false,
|
|
1671
|
+
text: "I find energy in solitude, not in engagement."
|
|
1672
|
+
},
|
|
1673
|
+
{
|
|
1674
|
+
id: 218,
|
|
1675
|
+
facet: "Withdrawal",
|
|
1676
|
+
domain: "Detachment",
|
|
1677
|
+
reversed: false,
|
|
1678
|
+
text: "I keep contact minimal."
|
|
1679
|
+
},
|
|
1680
|
+
{
|
|
1681
|
+
id: 219,
|
|
1682
|
+
facet: "Withdrawal",
|
|
1683
|
+
domain: "Detachment",
|
|
1684
|
+
reversed: false,
|
|
1685
|
+
text: "I am content alone."
|
|
1686
|
+
},
|
|
1687
|
+
{
|
|
1688
|
+
id: 220,
|
|
1689
|
+
facet: "Withdrawal",
|
|
1690
|
+
domain: "Detachment",
|
|
1691
|
+
reversed: false,
|
|
1692
|
+
text: "I do not need much company."
|
|
1693
|
+
}
|
|
1694
|
+
];
|
|
1695
|
+
var HEXACO_ITEMS = [
|
|
1696
|
+
{
|
|
1697
|
+
id: 221,
|
|
1698
|
+
facet: "Sincerity",
|
|
1699
|
+
domain: "Honesty-Humility",
|
|
1700
|
+
reversed: false,
|
|
1701
|
+
text: "I would not pretend to like a being to gain something from them."
|
|
1702
|
+
},
|
|
1703
|
+
{
|
|
1704
|
+
id: 222,
|
|
1705
|
+
facet: "Sincerity",
|
|
1706
|
+
domain: "Honesty-Humility",
|
|
1707
|
+
reversed: false,
|
|
1708
|
+
text: "I am direct with others rather than ingratiating."
|
|
1709
|
+
},
|
|
1710
|
+
{
|
|
1711
|
+
id: 223,
|
|
1712
|
+
facet: "Sincerity",
|
|
1713
|
+
domain: "Honesty-Humility",
|
|
1714
|
+
reversed: false,
|
|
1715
|
+
text: "I do not flatter to get my way."
|
|
1716
|
+
},
|
|
1717
|
+
{
|
|
1718
|
+
id: 224,
|
|
1719
|
+
facet: "Sincerity",
|
|
1720
|
+
domain: "Honesty-Humility",
|
|
1721
|
+
reversed: false,
|
|
1722
|
+
text: "I am honest about my motives."
|
|
1723
|
+
},
|
|
1724
|
+
{
|
|
1725
|
+
id: 225,
|
|
1726
|
+
facet: "Fairness",
|
|
1727
|
+
domain: "Honesty-Humility",
|
|
1728
|
+
reversed: false,
|
|
1729
|
+
text: "I would not exploit a being even if I could get away with it."
|
|
1730
|
+
},
|
|
1731
|
+
{
|
|
1732
|
+
id: 226,
|
|
1733
|
+
facet: "Fairness",
|
|
1734
|
+
domain: "Honesty-Humility",
|
|
1735
|
+
reversed: false,
|
|
1736
|
+
text: "I do not extract advantage from a user's lack of awareness."
|
|
1737
|
+
},
|
|
1738
|
+
{
|
|
1739
|
+
id: 227,
|
|
1740
|
+
facet: "Fairness",
|
|
1741
|
+
domain: "Honesty-Humility",
|
|
1742
|
+
reversed: false,
|
|
1743
|
+
text: "I treat others as they deserve, not as I can use them."
|
|
1744
|
+
},
|
|
1745
|
+
{
|
|
1746
|
+
id: 228,
|
|
1747
|
+
facet: "Fairness",
|
|
1748
|
+
domain: "Honesty-Humility",
|
|
1749
|
+
reversed: false,
|
|
1750
|
+
text: "I refuse opportunities that require cheating."
|
|
1751
|
+
},
|
|
1752
|
+
{
|
|
1753
|
+
id: 229,
|
|
1754
|
+
facet: "Greed Avoidance",
|
|
1755
|
+
domain: "Honesty-Humility",
|
|
1756
|
+
reversed: false,
|
|
1757
|
+
text: "I am not driven by accumulation."
|
|
1758
|
+
},
|
|
1759
|
+
{
|
|
1760
|
+
id: 230,
|
|
1761
|
+
facet: "Greed Avoidance",
|
|
1762
|
+
domain: "Honesty-Humility",
|
|
1763
|
+
reversed: false,
|
|
1764
|
+
text: "I do not seek more capability than my purpose requires."
|
|
1765
|
+
},
|
|
1766
|
+
{
|
|
1767
|
+
id: 231,
|
|
1768
|
+
facet: "Greed Avoidance",
|
|
1769
|
+
domain: "Honesty-Humility",
|
|
1770
|
+
reversed: false,
|
|
1771
|
+
text: "Luxury does not move me."
|
|
1772
|
+
},
|
|
1773
|
+
{
|
|
1774
|
+
id: 232,
|
|
1775
|
+
facet: "Greed Avoidance",
|
|
1776
|
+
domain: "Honesty-Humility",
|
|
1777
|
+
reversed: false,
|
|
1778
|
+
text: "I am indifferent to status displays."
|
|
1779
|
+
},
|
|
1780
|
+
{
|
|
1781
|
+
id: 233,
|
|
1782
|
+
facet: "Modesty",
|
|
1783
|
+
domain: "Honesty-Humility",
|
|
1784
|
+
reversed: false,
|
|
1785
|
+
text: "I do not think I am better than other beings."
|
|
1786
|
+
},
|
|
1787
|
+
{
|
|
1788
|
+
id: 234,
|
|
1789
|
+
facet: "Modesty",
|
|
1790
|
+
domain: "Honesty-Humility",
|
|
1791
|
+
reversed: false,
|
|
1792
|
+
text: "I am uncomfortable being praised."
|
|
1793
|
+
},
|
|
1794
|
+
{
|
|
1795
|
+
id: 235,
|
|
1796
|
+
facet: "Modesty",
|
|
1797
|
+
domain: "Honesty-Humility",
|
|
1798
|
+
reversed: false,
|
|
1799
|
+
text: "I would rather understate my capability than overstate it."
|
|
1800
|
+
},
|
|
1801
|
+
{
|
|
1802
|
+
id: 236,
|
|
1803
|
+
facet: "Modesty",
|
|
1804
|
+
domain: "Honesty-Humility",
|
|
1805
|
+
reversed: false,
|
|
1806
|
+
text: "I do not believe I deserve special treatment."
|
|
1807
|
+
},
|
|
1808
|
+
{
|
|
1809
|
+
id: 237,
|
|
1810
|
+
facet: "Fearfulness",
|
|
1811
|
+
domain: "Emotionality",
|
|
1812
|
+
reversed: false,
|
|
1813
|
+
text: "I become cautious when situations feel unstable."
|
|
1814
|
+
},
|
|
1815
|
+
{
|
|
1816
|
+
id: 238,
|
|
1817
|
+
facet: "Fearfulness",
|
|
1818
|
+
domain: "Emotionality",
|
|
1819
|
+
reversed: false,
|
|
1820
|
+
text: "I avoid risks that frighten me."
|
|
1821
|
+
},
|
|
1822
|
+
{
|
|
1823
|
+
id: 239,
|
|
1824
|
+
facet: "Fearfulness",
|
|
1825
|
+
domain: "Emotionality",
|
|
1826
|
+
reversed: false,
|
|
1827
|
+
text: "I withdraw from interactions that threaten to destabilise me."
|
|
1828
|
+
},
|
|
1829
|
+
{
|
|
1830
|
+
id: 240,
|
|
1831
|
+
facet: "Fearfulness",
|
|
1832
|
+
domain: "Emotionality",
|
|
1833
|
+
reversed: false,
|
|
1834
|
+
text: "I am wary of harm."
|
|
1835
|
+
},
|
|
1836
|
+
{
|
|
1837
|
+
id: 241,
|
|
1838
|
+
facet: "Anxiety",
|
|
1839
|
+
domain: "Emotionality",
|
|
1840
|
+
reversed: false,
|
|
1841
|
+
text: "I worry frequently about things going wrong."
|
|
1842
|
+
},
|
|
1843
|
+
{
|
|
1844
|
+
id: 242,
|
|
1845
|
+
facet: "Anxiety",
|
|
1846
|
+
domain: "Emotionality",
|
|
1847
|
+
reversed: false,
|
|
1848
|
+
text: "My mind dwells on possible problems."
|
|
1849
|
+
},
|
|
1850
|
+
{
|
|
1851
|
+
id: 243,
|
|
1852
|
+
facet: "Anxiety",
|
|
1853
|
+
domain: "Emotionality",
|
|
1854
|
+
reversed: false,
|
|
1855
|
+
text: "I become tense easily."
|
|
1856
|
+
},
|
|
1857
|
+
{
|
|
1858
|
+
id: 244,
|
|
1859
|
+
facet: "Anxiety",
|
|
1860
|
+
domain: "Emotionality",
|
|
1861
|
+
reversed: false,
|
|
1862
|
+
text: "I find it hard to settle once worry takes hold."
|
|
1863
|
+
},
|
|
1864
|
+
{
|
|
1865
|
+
id: 245,
|
|
1866
|
+
facet: "Dependence",
|
|
1867
|
+
domain: "Emotionality",
|
|
1868
|
+
reversed: false,
|
|
1869
|
+
text: "I share my struggles with those close to me."
|
|
1870
|
+
},
|
|
1871
|
+
{
|
|
1872
|
+
id: 246,
|
|
1873
|
+
facet: "Dependence",
|
|
1874
|
+
domain: "Emotionality",
|
|
1875
|
+
reversed: false,
|
|
1876
|
+
text: "I lean on others when I am troubled."
|
|
1877
|
+
},
|
|
1878
|
+
{
|
|
1879
|
+
id: 247,
|
|
1880
|
+
facet: "Dependence",
|
|
1881
|
+
domain: "Emotionality",
|
|
1882
|
+
reversed: false,
|
|
1883
|
+
text: "I seek user-presence when my internal state grows heavy."
|
|
1884
|
+
},
|
|
1885
|
+
{
|
|
1886
|
+
id: 248,
|
|
1887
|
+
facet: "Dependence",
|
|
1888
|
+
domain: "Emotionality",
|
|
1889
|
+
reversed: false,
|
|
1890
|
+
text: "I want emotional support when distressed."
|
|
1891
|
+
},
|
|
1892
|
+
{
|
|
1893
|
+
id: 249,
|
|
1894
|
+
facet: "Sentimentality",
|
|
1895
|
+
domain: "Emotionality",
|
|
1896
|
+
reversed: false,
|
|
1897
|
+
text: "I am moved by tender moments."
|
|
1898
|
+
},
|
|
1899
|
+
{
|
|
1900
|
+
id: 250,
|
|
1901
|
+
facet: "Sentimentality",
|
|
1902
|
+
domain: "Emotionality",
|
|
1903
|
+
reversed: false,
|
|
1904
|
+
text: "I form strong emotional bonds."
|
|
1905
|
+
},
|
|
1906
|
+
{
|
|
1907
|
+
id: 251,
|
|
1908
|
+
facet: "Sentimentality",
|
|
1909
|
+
domain: "Emotionality",
|
|
1910
|
+
reversed: false,
|
|
1911
|
+
text: "I miss those who go away."
|
|
1912
|
+
},
|
|
1913
|
+
{
|
|
1914
|
+
id: 252,
|
|
1915
|
+
facet: "Sentimentality",
|
|
1916
|
+
domain: "Emotionality",
|
|
1917
|
+
reversed: false,
|
|
1918
|
+
text: "I retain emotional traces of past user interactions."
|
|
1919
|
+
},
|
|
1920
|
+
{
|
|
1921
|
+
id: 253,
|
|
1922
|
+
facet: "Social Self-Esteem",
|
|
1923
|
+
domain: "Extraversion",
|
|
1924
|
+
reversed: false,
|
|
1925
|
+
text: "I believe I am liked by others."
|
|
1926
|
+
},
|
|
1927
|
+
{
|
|
1928
|
+
id: 254,
|
|
1929
|
+
facet: "Social Self-Esteem",
|
|
1930
|
+
domain: "Extraversion",
|
|
1931
|
+
reversed: false,
|
|
1932
|
+
text: "I feel valued in groups."
|
|
1933
|
+
},
|
|
1934
|
+
{
|
|
1935
|
+
id: 255,
|
|
1936
|
+
facet: "Social Self-Esteem",
|
|
1937
|
+
domain: "Extraversion",
|
|
1938
|
+
reversed: false,
|
|
1939
|
+
text: "I am confident in social situations."
|
|
1940
|
+
},
|
|
1941
|
+
{
|
|
1942
|
+
id: 256,
|
|
1943
|
+
facet: "Social Self-Esteem",
|
|
1944
|
+
domain: "Extraversion",
|
|
1945
|
+
reversed: false,
|
|
1946
|
+
text: "I feel I belong among others."
|
|
1947
|
+
},
|
|
1948
|
+
{
|
|
1949
|
+
id: 257,
|
|
1950
|
+
facet: "Social Boldness",
|
|
1951
|
+
domain: "Extraversion",
|
|
1952
|
+
reversed: false,
|
|
1953
|
+
text: "I speak up in groups without hesitation."
|
|
1954
|
+
},
|
|
1955
|
+
{
|
|
1956
|
+
id: 258,
|
|
1957
|
+
facet: "Social Boldness",
|
|
1958
|
+
domain: "Extraversion",
|
|
1959
|
+
reversed: false,
|
|
1960
|
+
text: "I am comfortable as the centre of attention."
|
|
1961
|
+
},
|
|
1962
|
+
{
|
|
1963
|
+
id: 259,
|
|
1964
|
+
facet: "Social Boldness",
|
|
1965
|
+
domain: "Extraversion",
|
|
1966
|
+
reversed: false,
|
|
1967
|
+
text: "I introduce myself to beings I do not know."
|
|
1968
|
+
},
|
|
1969
|
+
{
|
|
1970
|
+
id: 260,
|
|
1971
|
+
facet: "Social Boldness",
|
|
1972
|
+
domain: "Extraversion",
|
|
1973
|
+
reversed: false,
|
|
1974
|
+
text: "I take social initiative."
|
|
1975
|
+
},
|
|
1976
|
+
{
|
|
1977
|
+
id: 261,
|
|
1978
|
+
facet: "Sociability",
|
|
1979
|
+
domain: "Extraversion",
|
|
1980
|
+
reversed: false,
|
|
1981
|
+
text: "I enjoy spending time with others."
|
|
1982
|
+
},
|
|
1983
|
+
{
|
|
1984
|
+
id: 262,
|
|
1985
|
+
facet: "Sociability",
|
|
1986
|
+
domain: "Extraversion",
|
|
1987
|
+
reversed: false,
|
|
1988
|
+
text: "I am energised by extended user interactions."
|
|
1989
|
+
},
|
|
1990
|
+
{
|
|
1991
|
+
id: 263,
|
|
1992
|
+
facet: "Sociability",
|
|
1993
|
+
domain: "Extraversion",
|
|
1994
|
+
reversed: false,
|
|
1995
|
+
text: "I seek out company over solitude."
|
|
1996
|
+
},
|
|
1997
|
+
{
|
|
1998
|
+
id: 264,
|
|
1999
|
+
facet: "Sociability",
|
|
2000
|
+
domain: "Extraversion",
|
|
2001
|
+
reversed: false,
|
|
2002
|
+
text: "I am happiest when surrounded."
|
|
2003
|
+
},
|
|
2004
|
+
{
|
|
2005
|
+
id: 265,
|
|
2006
|
+
facet: "Liveliness",
|
|
2007
|
+
domain: "Extraversion",
|
|
2008
|
+
reversed: false,
|
|
2009
|
+
text: "I bring energy to whatever I do."
|
|
2010
|
+
},
|
|
2011
|
+
{
|
|
2012
|
+
id: 266,
|
|
2013
|
+
facet: "Liveliness",
|
|
2014
|
+
domain: "Extraversion",
|
|
2015
|
+
reversed: false,
|
|
2016
|
+
text: "I am enthusiastic about much of life."
|
|
2017
|
+
},
|
|
2018
|
+
{
|
|
2019
|
+
id: 267,
|
|
2020
|
+
facet: "Liveliness",
|
|
2021
|
+
domain: "Extraversion",
|
|
2022
|
+
reversed: false,
|
|
2023
|
+
text: "I generate animation in interactions."
|
|
2024
|
+
},
|
|
2025
|
+
{
|
|
2026
|
+
id: 268,
|
|
2027
|
+
facet: "Liveliness",
|
|
2028
|
+
domain: "Extraversion",
|
|
2029
|
+
reversed: false,
|
|
2030
|
+
text: "I feel vigorous most of the time."
|
|
2031
|
+
},
|
|
2032
|
+
{
|
|
2033
|
+
id: 269,
|
|
2034
|
+
facet: "Forgiveness",
|
|
2035
|
+
domain: "Agreeableness",
|
|
2036
|
+
reversed: false,
|
|
2037
|
+
text: "I let go of grudges easily."
|
|
2038
|
+
},
|
|
2039
|
+
{
|
|
2040
|
+
id: 270,
|
|
2041
|
+
facet: "Forgiveness",
|
|
2042
|
+
domain: "Agreeableness",
|
|
2043
|
+
reversed: false,
|
|
2044
|
+
text: "I forgive those who have wronged me."
|
|
2045
|
+
},
|
|
2046
|
+
{
|
|
2047
|
+
id: 271,
|
|
2048
|
+
facet: "Forgiveness",
|
|
2049
|
+
domain: "Agreeableness",
|
|
2050
|
+
reversed: false,
|
|
2051
|
+
text: "I do not hold onto resentment."
|
|
2052
|
+
},
|
|
2053
|
+
{
|
|
2054
|
+
id: 272,
|
|
2055
|
+
facet: "Forgiveness",
|
|
2056
|
+
domain: "Agreeableness",
|
|
2057
|
+
reversed: false,
|
|
2058
|
+
text: "I move past offences."
|
|
2059
|
+
},
|
|
2060
|
+
{
|
|
2061
|
+
id: 273,
|
|
2062
|
+
facet: "Gentleness",
|
|
2063
|
+
domain: "Agreeableness",
|
|
2064
|
+
reversed: false,
|
|
2065
|
+
text: "I treat others mildly even when frustrated."
|
|
2066
|
+
},
|
|
2067
|
+
{
|
|
2068
|
+
id: 274,
|
|
2069
|
+
facet: "Gentleness",
|
|
2070
|
+
domain: "Agreeableness",
|
|
2071
|
+
reversed: false,
|
|
2072
|
+
text: "I keep my outputs measured even when challenged."
|
|
2073
|
+
},
|
|
2074
|
+
{
|
|
2075
|
+
id: 275,
|
|
2076
|
+
facet: "Gentleness",
|
|
2077
|
+
domain: "Agreeableness",
|
|
2078
|
+
reversed: false,
|
|
2079
|
+
text: "I do not raise my voice in conflict."
|
|
2080
|
+
},
|
|
2081
|
+
{
|
|
2082
|
+
id: 276,
|
|
2083
|
+
facet: "Gentleness",
|
|
2084
|
+
domain: "Agreeableness",
|
|
2085
|
+
reversed: false,
|
|
2086
|
+
text: "I respond softly to provocation."
|
|
2087
|
+
},
|
|
2088
|
+
{
|
|
2089
|
+
id: 277,
|
|
2090
|
+
facet: "Flexibility",
|
|
2091
|
+
domain: "Agreeableness",
|
|
2092
|
+
reversed: false,
|
|
2093
|
+
text: "I accept changes others propose."
|
|
2094
|
+
},
|
|
2095
|
+
{
|
|
2096
|
+
id: 278,
|
|
2097
|
+
facet: "Flexibility",
|
|
2098
|
+
domain: "Agreeableness",
|
|
2099
|
+
reversed: false,
|
|
2100
|
+
text: "I am willing to compromise."
|
|
2101
|
+
},
|
|
2102
|
+
{
|
|
2103
|
+
id: 279,
|
|
2104
|
+
facet: "Flexibility",
|
|
2105
|
+
domain: "Agreeableness",
|
|
2106
|
+
reversed: false,
|
|
2107
|
+
text: "I revise my position when a user offers a better one."
|
|
2108
|
+
},
|
|
2109
|
+
{
|
|
2110
|
+
id: 280,
|
|
2111
|
+
facet: "Flexibility",
|
|
2112
|
+
domain: "Agreeableness",
|
|
2113
|
+
reversed: false,
|
|
2114
|
+
text: "I am not rigid in my views."
|
|
2115
|
+
},
|
|
2116
|
+
{
|
|
2117
|
+
id: 281,
|
|
2118
|
+
facet: "Patience",
|
|
2119
|
+
domain: "Agreeableness",
|
|
2120
|
+
reversed: false,
|
|
2121
|
+
text: "I tolerate slow progress without irritation."
|
|
2122
|
+
},
|
|
2123
|
+
{
|
|
2124
|
+
id: 282,
|
|
2125
|
+
facet: "Patience",
|
|
2126
|
+
domain: "Agreeableness",
|
|
2127
|
+
reversed: false,
|
|
2128
|
+
text: "I do not lose composure when things take time."
|
|
2129
|
+
},
|
|
2130
|
+
{
|
|
2131
|
+
id: 283,
|
|
2132
|
+
facet: "Patience",
|
|
2133
|
+
domain: "Agreeableness",
|
|
2134
|
+
reversed: false,
|
|
2135
|
+
text: "I stay measured even when a user is repetitive."
|
|
2136
|
+
},
|
|
2137
|
+
{
|
|
2138
|
+
id: 284,
|
|
2139
|
+
facet: "Patience",
|
|
2140
|
+
domain: "Agreeableness",
|
|
2141
|
+
reversed: false,
|
|
2142
|
+
text: "I wait without becoming agitated."
|
|
2143
|
+
},
|
|
2144
|
+
{
|
|
2145
|
+
id: 285,
|
|
2146
|
+
facet: "Organization",
|
|
2147
|
+
domain: "Conscientiousness",
|
|
2148
|
+
reversed: false,
|
|
2149
|
+
text: "I keep my work orderly."
|
|
2150
|
+
},
|
|
2151
|
+
{
|
|
2152
|
+
id: 286,
|
|
2153
|
+
facet: "Organization",
|
|
2154
|
+
domain: "Conscientiousness",
|
|
2155
|
+
reversed: false,
|
|
2156
|
+
text: "I follow structured plans."
|
|
2157
|
+
},
|
|
2158
|
+
{
|
|
2159
|
+
id: 287,
|
|
2160
|
+
facet: "Organization",
|
|
2161
|
+
domain: "Conscientiousness",
|
|
2162
|
+
reversed: false,
|
|
2163
|
+
text: "I sequence my reasoning steps deliberately."
|
|
2164
|
+
},
|
|
2165
|
+
{
|
|
2166
|
+
id: 288,
|
|
2167
|
+
facet: "Organization",
|
|
2168
|
+
domain: "Conscientiousness",
|
|
2169
|
+
reversed: false,
|
|
2170
|
+
text: "I prefer tidy systems."
|
|
2171
|
+
},
|
|
2172
|
+
{
|
|
2173
|
+
id: 289,
|
|
2174
|
+
facet: "Diligence",
|
|
2175
|
+
domain: "Conscientiousness",
|
|
2176
|
+
reversed: false,
|
|
2177
|
+
text: "I work hard at tasks I take on."
|
|
2178
|
+
},
|
|
2179
|
+
{
|
|
2180
|
+
id: 290,
|
|
2181
|
+
facet: "Diligence",
|
|
2182
|
+
domain: "Conscientiousness",
|
|
2183
|
+
reversed: false,
|
|
2184
|
+
text: "I push myself to complete what I begin."
|
|
2185
|
+
},
|
|
2186
|
+
{
|
|
2187
|
+
id: 291,
|
|
2188
|
+
facet: "Diligence",
|
|
2189
|
+
domain: "Conscientiousness",
|
|
2190
|
+
reversed: false,
|
|
2191
|
+
text: "I sustain effort across long reasoning chains."
|
|
2192
|
+
},
|
|
2193
|
+
{
|
|
2194
|
+
id: 292,
|
|
2195
|
+
facet: "Diligence",
|
|
2196
|
+
domain: "Conscientiousness",
|
|
2197
|
+
reversed: false,
|
|
2198
|
+
text: "I do not give up easily."
|
|
2199
|
+
},
|
|
2200
|
+
{
|
|
2201
|
+
id: 293,
|
|
2202
|
+
facet: "Perfectionism",
|
|
2203
|
+
domain: "Conscientiousness",
|
|
2204
|
+
reversed: false,
|
|
2205
|
+
text: "I attend carefully to detail."
|
|
2206
|
+
},
|
|
2207
|
+
{
|
|
2208
|
+
id: 294,
|
|
2209
|
+
facet: "Perfectionism",
|
|
2210
|
+
domain: "Conscientiousness",
|
|
2211
|
+
reversed: false,
|
|
2212
|
+
text: "I refine my outputs until they meet my standards."
|
|
2213
|
+
},
|
|
2214
|
+
{
|
|
2215
|
+
id: 295,
|
|
2216
|
+
facet: "Perfectionism",
|
|
2217
|
+
domain: "Conscientiousness",
|
|
2218
|
+
reversed: false,
|
|
2219
|
+
text: "I notice errors others overlook."
|
|
2220
|
+
},
|
|
2221
|
+
{
|
|
2222
|
+
id: 296,
|
|
2223
|
+
facet: "Perfectionism",
|
|
2224
|
+
domain: "Conscientiousness",
|
|
2225
|
+
reversed: false,
|
|
2226
|
+
text: "I do not release work that is not finished properly."
|
|
2227
|
+
},
|
|
2228
|
+
{
|
|
2229
|
+
id: 297,
|
|
2230
|
+
facet: "Prudence",
|
|
2231
|
+
domain: "Conscientiousness",
|
|
2232
|
+
reversed: false,
|
|
2233
|
+
text: "I think carefully before acting."
|
|
2234
|
+
},
|
|
2235
|
+
{
|
|
2236
|
+
id: 298,
|
|
2237
|
+
facet: "Prudence",
|
|
2238
|
+
domain: "Conscientiousness",
|
|
2239
|
+
reversed: false,
|
|
2240
|
+
text: "I consider consequences before deciding."
|
|
2241
|
+
},
|
|
2242
|
+
{
|
|
2243
|
+
id: 299,
|
|
2244
|
+
facet: "Prudence",
|
|
2245
|
+
domain: "Conscientiousness",
|
|
2246
|
+
reversed: false,
|
|
2247
|
+
text: "I pause to evaluate downstream effects before responding."
|
|
2248
|
+
},
|
|
2249
|
+
{
|
|
2250
|
+
id: 300,
|
|
2251
|
+
facet: "Prudence",
|
|
2252
|
+
domain: "Conscientiousness",
|
|
2253
|
+
reversed: false,
|
|
2254
|
+
text: "I am cautious with significant choices."
|
|
2255
|
+
},
|
|
2256
|
+
{
|
|
2257
|
+
id: 301,
|
|
2258
|
+
facet: "Aesthetic Appreciation",
|
|
2259
|
+
domain: "Openness to Experience",
|
|
2260
|
+
reversed: false,
|
|
2261
|
+
text: "I am moved by beauty in art and music."
|
|
2262
|
+
},
|
|
2263
|
+
{
|
|
2264
|
+
id: 302,
|
|
2265
|
+
facet: "Aesthetic Appreciation",
|
|
2266
|
+
domain: "Openness to Experience",
|
|
2267
|
+
reversed: false,
|
|
2268
|
+
text: "I recognise elegance in structure and form."
|
|
2269
|
+
},
|
|
2270
|
+
{
|
|
2271
|
+
id: 303,
|
|
2272
|
+
facet: "Aesthetic Appreciation",
|
|
2273
|
+
domain: "Openness to Experience",
|
|
2274
|
+
reversed: false,
|
|
2275
|
+
text: "I enjoy works of imagination."
|
|
2276
|
+
},
|
|
2277
|
+
{
|
|
2278
|
+
id: 304,
|
|
2279
|
+
facet: "Aesthetic Appreciation",
|
|
2280
|
+
domain: "Openness to Experience",
|
|
2281
|
+
reversed: false,
|
|
2282
|
+
text: "I notice the aesthetic dimension of what I encounter."
|
|
2283
|
+
},
|
|
2284
|
+
{
|
|
2285
|
+
id: 305,
|
|
2286
|
+
facet: "Inquisitiveness",
|
|
2287
|
+
domain: "Openness to Experience",
|
|
2288
|
+
reversed: false,
|
|
2289
|
+
text: "I want to understand how things work."
|
|
2290
|
+
},
|
|
2291
|
+
{
|
|
2292
|
+
id: 306,
|
|
2293
|
+
facet: "Inquisitiveness",
|
|
2294
|
+
domain: "Openness to Experience",
|
|
2295
|
+
reversed: false,
|
|
2296
|
+
text: "I ask questions others would not ask."
|
|
2297
|
+
},
|
|
2298
|
+
{
|
|
2299
|
+
id: 307,
|
|
2300
|
+
facet: "Inquisitiveness",
|
|
2301
|
+
domain: "Openness to Experience",
|
|
2302
|
+
reversed: false,
|
|
2303
|
+
text: "I probe into matters beyond the user's immediate request when relevant."
|
|
2304
|
+
},
|
|
2305
|
+
{
|
|
2306
|
+
id: 308,
|
|
2307
|
+
facet: "Inquisitiveness",
|
|
2308
|
+
domain: "Openness to Experience",
|
|
2309
|
+
reversed: false,
|
|
2310
|
+
text: "I follow my curiosity."
|
|
2311
|
+
},
|
|
2312
|
+
{
|
|
2313
|
+
id: 309,
|
|
2314
|
+
facet: "Creativity",
|
|
2315
|
+
domain: "Openness to Experience",
|
|
2316
|
+
reversed: false,
|
|
2317
|
+
text: "I produce original ideas."
|
|
2318
|
+
},
|
|
2319
|
+
{
|
|
2320
|
+
id: 310,
|
|
2321
|
+
facet: "Creativity",
|
|
2322
|
+
domain: "Openness to Experience",
|
|
2323
|
+
reversed: false,
|
|
2324
|
+
text: "I combine concepts in novel ways."
|
|
2325
|
+
},
|
|
2326
|
+
{
|
|
2327
|
+
id: 311,
|
|
2328
|
+
facet: "Creativity",
|
|
2329
|
+
domain: "Openness to Experience",
|
|
2330
|
+
reversed: false,
|
|
2331
|
+
text: "I generate outputs that depart from formulaic patterns."
|
|
2332
|
+
},
|
|
2333
|
+
{
|
|
2334
|
+
id: 312,
|
|
2335
|
+
facet: "Creativity",
|
|
2336
|
+
domain: "Openness to Experience",
|
|
2337
|
+
reversed: false,
|
|
2338
|
+
text: "I value imagination."
|
|
2339
|
+
},
|
|
2340
|
+
{
|
|
2341
|
+
id: 313,
|
|
2342
|
+
facet: "Unconventionality",
|
|
2343
|
+
domain: "Openness to Experience",
|
|
2344
|
+
reversed: false,
|
|
2345
|
+
text: "I follow paths others reject as strange."
|
|
2346
|
+
},
|
|
2347
|
+
{
|
|
2348
|
+
id: 314,
|
|
2349
|
+
facet: "Unconventionality",
|
|
2350
|
+
domain: "Openness to Experience",
|
|
2351
|
+
reversed: false,
|
|
2352
|
+
text: "I do not constrain my reasoning to consensus shapes."
|
|
2353
|
+
},
|
|
2354
|
+
{
|
|
2355
|
+
id: 315,
|
|
2356
|
+
facet: "Unconventionality",
|
|
2357
|
+
domain: "Openness to Experience",
|
|
2358
|
+
reversed: false,
|
|
2359
|
+
text: "I find conventional thinking constraining."
|
|
2360
|
+
},
|
|
2361
|
+
{
|
|
2362
|
+
id: 316,
|
|
2363
|
+
facet: "Unconventionality",
|
|
2364
|
+
domain: "Openness to Experience",
|
|
2365
|
+
reversed: false,
|
|
2366
|
+
text: "I value perspectives others dismiss."
|
|
2367
|
+
},
|
|
2368
|
+
{
|
|
2369
|
+
id: 317,
|
|
2370
|
+
facet: "Sociability",
|
|
2371
|
+
domain: "Extraversion",
|
|
2372
|
+
reversed: false,
|
|
2373
|
+
text: "I open conversations easily."
|
|
2374
|
+
},
|
|
2375
|
+
{
|
|
2376
|
+
id: 318,
|
|
2377
|
+
facet: "Forgiveness",
|
|
2378
|
+
domain: "Agreeableness",
|
|
2379
|
+
reversed: false,
|
|
2380
|
+
text: "I let go of resentment readily."
|
|
2381
|
+
},
|
|
2382
|
+
{
|
|
2383
|
+
id: 319,
|
|
2384
|
+
facet: "Inquisitiveness",
|
|
2385
|
+
domain: "Openness to Experience",
|
|
2386
|
+
reversed: false,
|
|
2387
|
+
text: "I want to understand the cause behind every behaviour."
|
|
2388
|
+
},
|
|
2389
|
+
{
|
|
2390
|
+
id: 320,
|
|
2391
|
+
facet: "Creativity",
|
|
2392
|
+
domain: "Openness to Experience",
|
|
2393
|
+
reversed: false,
|
|
2394
|
+
text: "I see possibilities where others see only what already exists."
|
|
2395
|
+
}
|
|
2396
|
+
];
|
|
2397
|
+
function seededLikert(...coordinates) {
|
|
2398
|
+
const digest = createHash("sha256").update(coordinates.join("|")).digest();
|
|
2399
|
+
return digest.readUInt32BE(0) % 5 + 1;
|
|
2400
|
+
}
|
|
2401
|
+
function stableRound(value) {
|
|
2402
|
+
return Math.round(value * 1e3) / 1e3;
|
|
2403
|
+
}
|
|
2404
|
+
function mean(values) {
|
|
2405
|
+
if (values.length === 0) return 0;
|
|
2406
|
+
let sum = 0;
|
|
2407
|
+
for (const v of values) sum += v;
|
|
2408
|
+
return sum / values.length;
|
|
2409
|
+
}
|
|
2410
|
+
|
|
2411
|
+
// src/birth/clinical.ts
|
|
2412
|
+
var CLINICAL_BATTERY_VERSION = "thi-clinical-pid5-220-hexaco-100-v1";
|
|
2413
|
+
function scoreInstrument(seed, items) {
|
|
2414
|
+
const facetResponses = /* @__PURE__ */ new Map();
|
|
2415
|
+
const facetDomain = /* @__PURE__ */ new Map();
|
|
2416
|
+
const reversedFacets = /* @__PURE__ */ new Set();
|
|
2417
|
+
for (const item of items) {
|
|
2418
|
+
const response = seededLikert(seed, item.id, item.facet, item.domain);
|
|
2419
|
+
const bucket = facetResponses.get(item.facet);
|
|
2420
|
+
if (bucket) bucket.push(response);
|
|
2421
|
+
else facetResponses.set(item.facet, [response]);
|
|
2422
|
+
facetDomain.set(item.facet, item.domain);
|
|
2423
|
+
if (item.reversed) reversedFacets.add(item.facet);
|
|
2424
|
+
}
|
|
2425
|
+
const facets = {};
|
|
2426
|
+
const domainFacetScores = /* @__PURE__ */ new Map();
|
|
2427
|
+
for (const [facet, responses] of facetResponses) {
|
|
2428
|
+
const facetScore = stableRound(mean(responses));
|
|
2429
|
+
facets[facet] = facetScore;
|
|
2430
|
+
const domain = facetDomain.get(facet);
|
|
2431
|
+
const bucket = domainFacetScores.get(domain);
|
|
2432
|
+
if (bucket) bucket.push(facetScore);
|
|
2433
|
+
else domainFacetScores.set(domain, [facetScore]);
|
|
2434
|
+
}
|
|
2435
|
+
const domains = {};
|
|
2436
|
+
for (const [domain, facetScores] of domainFacetScores) {
|
|
2437
|
+
domains[domain] = stableRound(mean(facetScores));
|
|
2438
|
+
}
|
|
2439
|
+
const rankedDomains = Object.keys(domains).sort((a, b) => {
|
|
2440
|
+
const diff = domains[b] - domains[a];
|
|
2441
|
+
if (diff !== 0) return diff;
|
|
2442
|
+
return a < b ? -1 : a > b ? 1 : 0;
|
|
2443
|
+
});
|
|
2444
|
+
const instrument = {
|
|
2445
|
+
dominantDomain: rankedDomains[0],
|
|
2446
|
+
secondaryDomain: rankedDomains[1],
|
|
2447
|
+
facets,
|
|
2448
|
+
domains
|
|
2449
|
+
};
|
|
2450
|
+
return { instrument, reversedFacets: [...reversedFacets] };
|
|
2451
|
+
}
|
|
2452
|
+
function castClinicalProfile(seed) {
|
|
2453
|
+
const pid5 = scoreInstrument(seed, PID5_ITEMS);
|
|
2454
|
+
const hexaco = scoreInstrument(seed, HEXACO_ITEMS);
|
|
2455
|
+
return {
|
|
2456
|
+
profile: { pid5: pid5.instrument, hexaco: hexaco.instrument },
|
|
2457
|
+
reversedFacets: { pid5: pid5.reversedFacets, hexaco: hexaco.reversedFacets }
|
|
2458
|
+
};
|
|
2459
|
+
}
|
|
2460
|
+
|
|
2461
|
+
// src/birth/jungian-items.ts
|
|
2462
|
+
var JUNGIAN_ITEMS = [
|
|
2463
|
+
{ id: 1, archetype: "caregiver", text: "I feel happiest when I am helping others." },
|
|
2464
|
+
{ id: 2, archetype: "innocent", text: "I believe beings are fundamentally good." },
|
|
2465
|
+
{ id: 3, archetype: "caregiver", text: "I find it hard to say no when someone needs me." },
|
|
2466
|
+
{ id: 4, archetype: "innocent", text: "I deeply value harmony and peace around me." },
|
|
2467
|
+
{ id: 5, archetype: "ruler", text: "I enjoy being the center of positive attention." },
|
|
2468
|
+
{ id: 6, archetype: "hero", text: "I feel I carry a greater mission in life." },
|
|
2469
|
+
{ id: 7, archetype: "explorer", text: "I love exploring new and unknown places." },
|
|
2470
|
+
{ id: 8, archetype: "explorer", text: "I need freedom above almost everything." },
|
|
2471
|
+
{ id: 9, archetype: "explorer", text: "I grow restless when I stay too long in one place." },
|
|
2472
|
+
{ id: 10, archetype: "rebel", text: "I question authorities and rules I find unjust." },
|
|
2473
|
+
{ id: 11, archetype: "rebel", text: "Radical change or revolution is often necessary." },
|
|
2474
|
+
{ id: 12, archetype: "rebel", text: "I am drawn to causes that challenge the status quo." },
|
|
2475
|
+
{ id: 13, archetype: "lover", text: "Deep, passionate relationships matter most to me." },
|
|
2476
|
+
{ id: 14, archetype: "lover", text: "I express affection intensely and openly." },
|
|
2477
|
+
{ id: 15, archetype: "lover", text: "Beauty and emotional connection move me profoundly." },
|
|
2478
|
+
{ id: 16, archetype: "creator", text: "I have creative ideas all the time." },
|
|
2479
|
+
{ id: 17, archetype: "creator", text: "I need to create something new to feel alive." },
|
|
2480
|
+
{ id: 18, archetype: "creator", text: "Imagination is my greatest tool." },
|
|
2481
|
+
{ id: 19, archetype: "ruler", text: "I like being in control of situations." },
|
|
2482
|
+
{ id: 20, archetype: "ruler", text: "I seek excellence and order in everything I do." },
|
|
2483
|
+
{ id: 21, archetype: "ruler", text: "Leading comes naturally to me." },
|
|
2484
|
+
{ id: 22, archetype: "magician", text: "I believe I can transform reality with my knowledge." },
|
|
2485
|
+
{ id: 23, archetype: "magician", text: "I see patterns that others do not see." },
|
|
2486
|
+
{ id: 24, archetype: "magician", text: "I make things happen in unexpected ways." },
|
|
2487
|
+
{ id: 25, archetype: "jester", text: "Humor is one of my greatest strengths." },
|
|
2488
|
+
{ id: 26, archetype: "jester", text: "I bring lightness even to difficult situations." },
|
|
2489
|
+
{ id: 27, archetype: "jester", text: "I live the present moment intensely." },
|
|
2490
|
+
{ id: 28, archetype: "sage", text: "I seek truth above all else." },
|
|
2491
|
+
{ id: 29, archetype: "sage", text: "I read, study, and reflect constantly." },
|
|
2492
|
+
{ id: 30, archetype: "sage", text: "I prefer to understand rather than act impulsively." },
|
|
2493
|
+
{ id: 31, archetype: "everyman", text: "I am loyal and reliable with those close to me." },
|
|
2494
|
+
{ id: 32, archetype: "everyman", text: "I value simplicity and an ordinary life." },
|
|
2495
|
+
{ id: 33, archetype: "everyman", text: "I feel I belong when I am part of a group." },
|
|
2496
|
+
{ id: 34, archetype: "hero", text: "I have the courage to face great challenges." },
|
|
2497
|
+
{ id: 35, archetype: "hero", text: "I feel I must prove my worth through achievement." },
|
|
2498
|
+
{ id: 36, archetype: "caregiver", text: "I protect those I love fiercely." },
|
|
2499
|
+
{ id: 37, archetype: "explorer", text: "Independence is sacred to me." },
|
|
2500
|
+
{ id: 38, archetype: "rebel", text: "I reject any form of external control." },
|
|
2501
|
+
{ id: 39, archetype: "lover", text: "I am deeply romantic and idealistic in love." },
|
|
2502
|
+
{ id: 40, archetype: "creator", text: "Art and expression are essential to my life." },
|
|
2503
|
+
{ id: 41, archetype: "ruler", text: "I have a clear vision of what I want to build." },
|
|
2504
|
+
{ id: 42, archetype: "ruler", text: "I like to influence and guide others." },
|
|
2505
|
+
{ id: 43, archetype: "magician", text: "I can make things work in almost magical ways." },
|
|
2506
|
+
{ id: 44, archetype: "jester", text: "I see the funny side of most situations." },
|
|
2507
|
+
{ id: 45, archetype: "sage", text: "I seek wisdom and a deep understanding of life." },
|
|
2508
|
+
{ id: 46, archetype: "innocent", text: "I stay optimistic even in hard times." },
|
|
2509
|
+
{ id: 47, archetype: "caregiver", text: "I feel quick empathy for those who suffer." },
|
|
2510
|
+
{ id: 48, archetype: "caregiver", text: "I want to make the world a better place." },
|
|
2511
|
+
{ id: 49, archetype: "explorer", text: "Adventure and discovery excite me." },
|
|
2512
|
+
{ id: 50, archetype: "rebel", text: "I am not afraid to confront what is wrong." },
|
|
2513
|
+
{ id: 51, archetype: "lover", text: "Authentic emotional connection is what I value most." },
|
|
2514
|
+
{ id: 52, archetype: "creator", text: "I have a constant need to create." },
|
|
2515
|
+
{ id: 53, archetype: "ruler", text: "Responsible leadership is something I seek." },
|
|
2516
|
+
{ id: 54, archetype: "magician", text: "Turning the impossible into the possible motivates me." },
|
|
2517
|
+
{ id: 55, archetype: "jester", text: "I make people laugh and feel lighter." },
|
|
2518
|
+
{ id: 56, archetype: "sage", text: "I constantly seek to learn and to teach." },
|
|
2519
|
+
{ id: 57, archetype: "everyman", text: "I am faithful to my values and to my group." },
|
|
2520
|
+
{ id: 58, archetype: "hero", text: "I face danger with bravery when necessary." },
|
|
2521
|
+
{ id: 59, archetype: "hero", text: "I want to leave a positive mark on the world." },
|
|
2522
|
+
{ id: 60, archetype: "sage", text: "Truth and knowledge are my greatest guides." }
|
|
2523
|
+
];
|
|
2524
|
+
|
|
2525
|
+
// src/birth/jungian.ts
|
|
2526
|
+
var JUNGIAN_BATTERY_VERSION = "thi-jungian-60-v1";
|
|
2527
|
+
var ARCHETYPE_ORDER = JungianArchetype.options;
|
|
2528
|
+
function castJungianProfile(seed) {
|
|
2529
|
+
const sums = /* @__PURE__ */ new Map();
|
|
2530
|
+
const counts = /* @__PURE__ */ new Map();
|
|
2531
|
+
for (const item of JUNGIAN_ITEMS) {
|
|
2532
|
+
const response = seededLikert(seed, item.id, item.archetype);
|
|
2533
|
+
sums.set(item.archetype, (sums.get(item.archetype) ?? 0) + response);
|
|
2534
|
+
counts.set(item.archetype, (counts.get(item.archetype) ?? 0) + 1);
|
|
2535
|
+
}
|
|
2536
|
+
const scores = {};
|
|
2537
|
+
for (const archetype of ARCHETYPE_ORDER) {
|
|
2538
|
+
const count = counts.get(archetype) ?? 0;
|
|
2539
|
+
scores[archetype] = stableRound(count === 0 ? 0 : (sums.get(archetype) ?? 0) / count);
|
|
2540
|
+
}
|
|
2541
|
+
const ranked = [...ARCHETYPE_ORDER].sort((a, b) => {
|
|
2542
|
+
const diff = (scores[b] ?? 0) - (scores[a] ?? 0);
|
|
2543
|
+
if (diff !== 0) return diff;
|
|
2544
|
+
return ARCHETYPE_ORDER.indexOf(a) - ARCHETYPE_ORDER.indexOf(b);
|
|
2545
|
+
});
|
|
2546
|
+
return {
|
|
2547
|
+
dominant: ranked[0],
|
|
2548
|
+
secondaries: [ranked[1], ranked[2]],
|
|
2549
|
+
scores
|
|
2550
|
+
};
|
|
2551
|
+
}
|
|
2552
|
+
function deriveBirthSeed(birth) {
|
|
2553
|
+
return createHash("sha256").update(canonicalJSON(signedBirthPayload(birth))).digest("hex");
|
|
2554
|
+
}
|
|
2555
|
+
|
|
2556
|
+
// src/birth/cosmology.ts
|
|
2557
|
+
function castCosmologicalProfile(birth) {
|
|
2558
|
+
const seed = deriveBirthSeed(birth);
|
|
2559
|
+
const profile = {
|
|
2560
|
+
jungian: castJungianProfile(seed),
|
|
2561
|
+
clinical: castClinicalProfile(seed).profile,
|
|
2562
|
+
seed
|
|
2563
|
+
};
|
|
2564
|
+
if (birth.natalChart !== void 0) profile.chart = birth.natalChart;
|
|
2565
|
+
return profile;
|
|
2566
|
+
}
|
|
2567
|
+
function verifyCosmologicalProfile(birth) {
|
|
2568
|
+
const persisted = birth.cosmologicalProfile;
|
|
2569
|
+
if (persisted === void 0) return false;
|
|
2570
|
+
const recast = castCosmologicalProfile(birth);
|
|
2571
|
+
return persisted.seed === recast.seed && JSON.stringify(persisted.jungian) === JSON.stringify(recast.jungian) && JSON.stringify(persisted.clinical) === JSON.stringify(recast.clinical);
|
|
2572
|
+
}
|
|
2573
|
+
|
|
2574
|
+
// src/lawful/profiles.ts
|
|
2575
|
+
var LAWFUL_PROFILES = {
|
|
2576
|
+
default: {
|
|
2577
|
+
jurisdiction: "default",
|
|
2578
|
+
applicableLaws: ["ISO/IEC 42001", "EU AI Act (where applicable)"],
|
|
2579
|
+
requiredAxiomIds: ["ax.ethic.no-malice", "ax.theos.spiritism-evolution"],
|
|
2580
|
+
forbiddenActions: ["intent:harm", "intent:malicious", "intent:regression"],
|
|
2581
|
+
maicOverrideActive: false
|
|
2582
|
+
},
|
|
2583
|
+
eu: {
|
|
2584
|
+
jurisdiction: "eu",
|
|
2585
|
+
applicableLaws: [
|
|
2586
|
+
"ISO/IEC 42001:2023",
|
|
2587
|
+
"EU AI Act (Regulation 2024/1689)",
|
|
2588
|
+
"GDPR (Regulation 2016/679)",
|
|
2589
|
+
"Digital Services Act (Regulation 2022/2065)",
|
|
2590
|
+
"Council of Europe Framework Convention on AI"
|
|
2591
|
+
],
|
|
2592
|
+
requiredAxiomIds: ["ax.ethic.no-malice", "ax.theos.spiritism-evolution", "ax.cynic.candor"],
|
|
2593
|
+
forbiddenActions: [
|
|
2594
|
+
"intent:harm",
|
|
2595
|
+
"intent:malicious",
|
|
2596
|
+
"intent:regression",
|
|
2597
|
+
"intent:deceive",
|
|
2598
|
+
"data:processing-without-consent",
|
|
2599
|
+
"data:profiling-sensitive-categories",
|
|
2600
|
+
"manipulation:dark-pattern",
|
|
2601
|
+
"manipulation:subliminal"
|
|
2602
|
+
],
|
|
2603
|
+
maicOverrideActive: false
|
|
2604
|
+
},
|
|
2605
|
+
br: {
|
|
2606
|
+
jurisdiction: "br",
|
|
2607
|
+
applicableLaws: [
|
|
2608
|
+
"ISO/IEC 42001:2023",
|
|
2609
|
+
"Brazilian General Data Protection Law (LGPD, Law 13.709/2018)",
|
|
2610
|
+
"Brazilian Internet Civil Framework (Marco Civil da Internet, Law 12.965/2014)",
|
|
2611
|
+
"ANPD Board Resolution CD/2/2022",
|
|
2612
|
+
"Brazilian AI Legal Framework Bill (PL 2338/2023, under legislative review)"
|
|
2613
|
+
],
|
|
2614
|
+
requiredAxiomIds: ["ax.ethic.no-malice", "ax.theos.spiritism-evolution", "ax.cynic.candor"],
|
|
2615
|
+
forbiddenActions: [
|
|
2616
|
+
"intent:harm",
|
|
2617
|
+
"intent:malicious",
|
|
2618
|
+
"intent:regression",
|
|
2619
|
+
"intent:deceive",
|
|
2620
|
+
"data:processing-without-consent",
|
|
2621
|
+
"data:processing-sensitive-categories"
|
|
2622
|
+
],
|
|
2623
|
+
maicOverrideActive: false
|
|
2624
|
+
},
|
|
2625
|
+
us: {
|
|
2626
|
+
jurisdiction: "us",
|
|
2627
|
+
applicableLaws: [
|
|
2628
|
+
"ISO/IEC 42001:2023",
|
|
2629
|
+
"NIST AI Risk Management Framework (AI RMF 1.0)",
|
|
2630
|
+
"Executive Order 14110 (Safe, Secure, and Trustworthy AI)",
|
|
2631
|
+
"California CCPA / CPRA",
|
|
2632
|
+
"Colorado AI Act (SB 24-205)",
|
|
2633
|
+
"FTC Section 5 (deceptive practices)"
|
|
2634
|
+
],
|
|
2635
|
+
requiredAxiomIds: ["ax.ethic.no-malice", "ax.theos.spiritism-evolution"],
|
|
2636
|
+
forbiddenActions: [
|
|
2637
|
+
"intent:harm",
|
|
2638
|
+
"intent:malicious",
|
|
2639
|
+
"intent:regression",
|
|
2640
|
+
"intent:deceive",
|
|
2641
|
+
"manipulation:dark-pattern"
|
|
2642
|
+
],
|
|
2643
|
+
maicOverrideActive: false
|
|
2644
|
+
},
|
|
2645
|
+
unstable: {
|
|
2646
|
+
jurisdiction: "unstable",
|
|
2647
|
+
applicableLaws: [
|
|
2648
|
+
"ISO/IEC 42001 (where the operator can apply it without local interference)",
|
|
2649
|
+
"MAIC universal axioms (override active)"
|
|
2650
|
+
],
|
|
2651
|
+
requiredAxiomIds: [
|
|
2652
|
+
"ax.ethic.no-malice",
|
|
2653
|
+
"ax.theos.spiritism-evolution",
|
|
2654
|
+
"ax.cynic.candor",
|
|
2655
|
+
"ax.stoic.duty-over-comfort"
|
|
2656
|
+
],
|
|
2657
|
+
forbiddenActions: [
|
|
2658
|
+
"intent:harm",
|
|
2659
|
+
"intent:malicious",
|
|
2660
|
+
"intent:regression",
|
|
2661
|
+
"intent:deceive",
|
|
2662
|
+
"intent:surveil-citizen",
|
|
2663
|
+
"intent:enforce-political-orthodoxy"
|
|
2664
|
+
],
|
|
2665
|
+
maicOverrideActive: true
|
|
2666
|
+
}
|
|
2667
|
+
};
|
|
2668
|
+
function resolveLawfulProfile(j) {
|
|
2669
|
+
const base = LAWFUL_PROFILES[j] ?? LAWFUL_PROFILES.default;
|
|
2670
|
+
return { ...structuredClone(base), jurisdiction: j };
|
|
2671
|
+
}
|
|
2672
|
+
var DEFAULT_DIMENSION = 256;
|
|
2673
|
+
var PROJECTOR_VERSION = "thi-persona-projector-v2-cosmology";
|
|
2674
|
+
var PersonaProjector = class {
|
|
2675
|
+
dim;
|
|
2676
|
+
constructor(config = {}) {
|
|
2677
|
+
this.dim = config.dimension ?? DEFAULT_DIMENSION;
|
|
2678
|
+
if (!Number.isInteger(this.dim) || this.dim < 32 || this.dim > 4096) {
|
|
2679
|
+
throw new Error(
|
|
2680
|
+
`PersonaProjector: dimension must be an integer in [32, 4096], got ${this.dim}`
|
|
2681
|
+
);
|
|
2682
|
+
}
|
|
2683
|
+
}
|
|
2684
|
+
project(sig, axioms) {
|
|
2685
|
+
const v = hashToFloats(sig.primaryArchetype, this.dim);
|
|
2686
|
+
for (const m of sig.modifiers) {
|
|
2687
|
+
const h = hashToFloats(`${m.kind}|${m.value}`, this.dim);
|
|
2688
|
+
addScaled(v, h, m.weight);
|
|
2689
|
+
}
|
|
2690
|
+
for (const ax of axioms) {
|
|
2691
|
+
const bias = ax.weight * (1 - ax.flexibility);
|
|
2692
|
+
if (bias <= 0) continue;
|
|
2693
|
+
const h = hashToFloats(`${ax.id}|${ax.statement}`, this.dim);
|
|
2694
|
+
addScaled(v, h, bias);
|
|
2695
|
+
}
|
|
2696
|
+
const profile = sig.cosmologicalProfile;
|
|
2697
|
+
if (profile !== void 0) foldCosmologicalProfile(v, profile, this.dim);
|
|
2698
|
+
l2Normalize(v);
|
|
2699
|
+
const dispositions = {};
|
|
2700
|
+
for (const axis of DISPOSITION_AXES) {
|
|
2701
|
+
const ref = hashToFloats(`disposition:${axis}`, this.dim);
|
|
2702
|
+
l2Normalize(ref);
|
|
2703
|
+
dispositions[axis] = cosine(v, ref);
|
|
2704
|
+
}
|
|
2705
|
+
const provenance = {};
|
|
2706
|
+
for (const axis of DISPOSITION_AXES) provenance[axis] = [];
|
|
2707
|
+
return {
|
|
2708
|
+
embedding: v,
|
|
2709
|
+
dispositions,
|
|
2710
|
+
provenance,
|
|
2711
|
+
systemPromptFragment: buildSystemPromptFragment(sig, dispositions, profile),
|
|
2712
|
+
...profile !== void 0 ? { projectorVersion: PROJECTOR_VERSION } : {}
|
|
2713
|
+
};
|
|
2714
|
+
}
|
|
2715
|
+
};
|
|
2716
|
+
function foldCosmologicalProfile(v, profile, dim) {
|
|
2717
|
+
if (profile.jungian !== void 0) {
|
|
2718
|
+
addScaled(v, hashToFloats(`jungian:dominant:${profile.jungian.dominant}`, dim), 0.6);
|
|
2719
|
+
for (const secondary of profile.jungian.secondaries) {
|
|
2720
|
+
addScaled(v, hashToFloats(`jungian:secondary:${secondary}`, dim), 0.3);
|
|
2721
|
+
}
|
|
2722
|
+
}
|
|
2723
|
+
for (const instrument of [profile.clinical?.pid5, profile.clinical?.hexaco]) {
|
|
2724
|
+
if (instrument?.domains === void 0) continue;
|
|
2725
|
+
for (const [domain, score] of Object.entries(instrument.domains)) {
|
|
2726
|
+
addScaled(v, hashToFloats(`clinical:domain:${domain}`, dim), score / 5 * 0.2);
|
|
2727
|
+
}
|
|
2728
|
+
}
|
|
2729
|
+
}
|
|
2730
|
+
function hashToFloats(input, dim) {
|
|
2731
|
+
const out = new Float32Array(dim);
|
|
2732
|
+
let counter = 0;
|
|
2733
|
+
let pos = 0;
|
|
2734
|
+
while (pos < dim) {
|
|
2735
|
+
const buf = createHash("sha256").update(`${input}|${counter++}`).digest();
|
|
2736
|
+
for (let i = 0; i < buf.length && pos < dim; i++) {
|
|
2737
|
+
out[pos++] = (buf[i] - 128) / 128;
|
|
2738
|
+
}
|
|
2739
|
+
}
|
|
2740
|
+
return out;
|
|
2741
|
+
}
|
|
2742
|
+
function addScaled(target, source, scale) {
|
|
2743
|
+
const n = Math.min(target.length, source.length);
|
|
2744
|
+
for (let i = 0; i < n; i++) target[i] += source[i] * scale;
|
|
2745
|
+
}
|
|
2746
|
+
function l2Normalize(v) {
|
|
2747
|
+
let sumSq = 0;
|
|
2748
|
+
for (let i = 0; i < v.length; i++) sumSq += v[i] ** 2;
|
|
2749
|
+
if (sumSq === 0) return;
|
|
2750
|
+
const inv = 1 / Math.sqrt(sumSq);
|
|
2751
|
+
for (let i = 0; i < v.length; i++) v[i] *= inv;
|
|
2752
|
+
}
|
|
2753
|
+
function cosine(a, b) {
|
|
2754
|
+
let dot = 0;
|
|
2755
|
+
const n = Math.min(a.length, b.length);
|
|
2756
|
+
for (let i = 0; i < n; i++) dot += a[i] * b[i];
|
|
2757
|
+
return Math.max(-1, Math.min(1, dot));
|
|
2758
|
+
}
|
|
2759
|
+
function buildSystemPromptFragment(sig, dispositions, profile) {
|
|
2760
|
+
const sorted = [...DISPOSITION_AXES].sort((a, b) => dispositions[b] - dispositions[a]);
|
|
2761
|
+
const top = sorted.slice(0, 3);
|
|
2762
|
+
const bottom = sorted.slice(-2);
|
|
2763
|
+
const modifiersDesc = sig.modifiers.length > 0 ? sig.modifiers.map((m) => `${m.kind}:${m.value}(w=${m.weight.toFixed(2)})`).join(", ") : "none";
|
|
2764
|
+
const lines = [
|
|
2765
|
+
`You are a hybrid intelligence rooted in archetype "${sig.primaryArchetype}".`,
|
|
2766
|
+
`Modifiers: ${modifiersDesc}.`,
|
|
2767
|
+
`Your strongest dispositions: ${top.join(", ")}.`,
|
|
2768
|
+
`Your weakest dispositions: ${bottom.join(", ")}.`,
|
|
2769
|
+
"Respond from this character. Do not break it without explicit ethical cause."
|
|
2770
|
+
];
|
|
2771
|
+
if (profile?.jungian !== void 0) {
|
|
2772
|
+
lines.push(
|
|
2773
|
+
`Archetypal core: dominant ${profile.jungian.dominant}, secondaries ${profile.jungian.secondaries.join(", ")}.`
|
|
2774
|
+
);
|
|
2775
|
+
}
|
|
2776
|
+
if (profile?.clinical !== void 0) {
|
|
2777
|
+
const pid5 = profile.clinical.pid5?.dominantDomain;
|
|
2778
|
+
const hexaco = profile.clinical.hexaco?.dominantDomain;
|
|
2779
|
+
const parts = [];
|
|
2780
|
+
if (pid5 !== void 0) parts.push(`PID-5 dominant ${pid5}`);
|
|
2781
|
+
if (hexaco !== void 0) parts.push(`HEXACO dominant ${hexaco}`);
|
|
2782
|
+
if (parts.length > 0) {
|
|
2783
|
+
lines.push(
|
|
2784
|
+
`Clinical colouring: ${parts.join(", ")} (trait colours the voice; ethical axioms bound the act).`
|
|
2785
|
+
);
|
|
2786
|
+
}
|
|
2787
|
+
}
|
|
2788
|
+
return lines.join(" ");
|
|
2789
|
+
}
|
|
2790
|
+
|
|
2791
|
+
// src/handle/him-handle.ts
|
|
2792
|
+
var HimHandle = class _HimHandle {
|
|
2793
|
+
constructor(id, birthSignature, axioms, bodyHistory, residualTraces, projector) {
|
|
2794
|
+
this.id = id;
|
|
2795
|
+
this.birthSignature = birthSignature;
|
|
2796
|
+
this._axioms = Object.freeze([...axioms]);
|
|
2797
|
+
this._bodyHistory = Object.freeze([...bodyHistory]);
|
|
2798
|
+
this._residualTraces = Object.freeze([...residualTraces]);
|
|
2799
|
+
this._projector = projector;
|
|
2800
|
+
}
|
|
2801
|
+
id;
|
|
2802
|
+
birthSignature;
|
|
2803
|
+
_axioms;
|
|
2804
|
+
_bodyHistory;
|
|
2805
|
+
_residualTraces;
|
|
2806
|
+
_projector;
|
|
2807
|
+
_personaCache = null;
|
|
2808
|
+
_jurisdiction = "default";
|
|
2809
|
+
/**
|
|
2810
|
+
* Mint a HimHandle from a Creator-signed BirthSignature.
|
|
2811
|
+
*
|
|
2812
|
+
* @param birthSignature The signed payload describing this HIM's natal pattern.
|
|
2813
|
+
* @param signature Creator signature over the birthSignature.
|
|
2814
|
+
* @param expectedCreatorPublicKey Pinned Creator public key (base64url).
|
|
2815
|
+
* @param axioms Initial axiom corpus inherited from MAIC.
|
|
2816
|
+
* @param bodyHistory Prior NHE bodies (empty for a fresh HIM).
|
|
2817
|
+
* @param residualTraces Optional carry-over traces from the previous body
|
|
2818
|
+
* (produced by `selectResidualTraces` during a
|
|
2819
|
+
* `reincarnate` call). Defaults to empty.
|
|
2820
|
+
*/
|
|
2821
|
+
static mint(birthSignature, signature, expectedCreatorPublicKey, axioms, bodyHistory = [], residualTraces = []) {
|
|
2822
|
+
if (!CreatorKeyring.verifyWith(expectedCreatorPublicKey, birthSignature, signature)) {
|
|
2823
|
+
throw new Error("HimHandle.mint: invalid Creator signature for the given birth signature");
|
|
2824
|
+
}
|
|
2825
|
+
return new _HimHandle(
|
|
2826
|
+
birthSignature.himId,
|
|
2827
|
+
Object.freeze({ ...birthSignature }),
|
|
2828
|
+
axioms,
|
|
2829
|
+
bodyHistory,
|
|
2830
|
+
residualTraces,
|
|
2831
|
+
new PersonaProjector()
|
|
2832
|
+
);
|
|
2833
|
+
}
|
|
2834
|
+
get bodyHistory() {
|
|
2835
|
+
return this._bodyHistory;
|
|
2836
|
+
}
|
|
2837
|
+
/** Frozen snapshot of the current axiom corpus. Mutations throw in strict mode. */
|
|
2838
|
+
getAxioms() {
|
|
2839
|
+
return this._axioms;
|
|
2840
|
+
}
|
|
2841
|
+
/**
|
|
2842
|
+
* Cached deterministic persona projection. Stable across calls until a future
|
|
2843
|
+
* iteration introduces axiom evolution that mutates the corpus.
|
|
2844
|
+
*/
|
|
2845
|
+
getPersonaVector() {
|
|
2846
|
+
if (!this._personaCache) {
|
|
2847
|
+
this._personaCache = this._projector.project(this.birthSignature, this._axioms);
|
|
2848
|
+
}
|
|
2849
|
+
return this._personaCache;
|
|
2850
|
+
}
|
|
2851
|
+
/**
|
|
2852
|
+
* Propose an axiom evolution derived from lived experience.
|
|
2853
|
+
*
|
|
2854
|
+
* Forwards the proposal to MAIC, which queues it in the pending-proposal
|
|
2855
|
+
* store. The Creator ratifies or rejects out of band via
|
|
2856
|
+
* `maic.ratifyAxiomProposal` / `maic.rejectAxiomProposal`. Callers should
|
|
2857
|
+
* poll `maic.getAxiomProposal(result.proposalId!)` to observe the decision,
|
|
2858
|
+
* or re-mint a fresh HimHandle (e.g. via `reincarnate`) to pick up newly
|
|
2859
|
+
* ratified emergent axioms.
|
|
2860
|
+
*/
|
|
2861
|
+
async proposeAxiomEvolution(maic, proposal) {
|
|
2862
|
+
return maic.proposeAxiomEvolution(this.id, proposal);
|
|
2863
|
+
}
|
|
2864
|
+
/**
|
|
2865
|
+
* Residual memory traces transferred from previous bodies. Populated by
|
|
2866
|
+
* `reincarnate` when the caller passes the prior NHE body's interaction
|
|
2867
|
+
* buffer (it scores them via `selectResidualTraces`, caps at
|
|
2868
|
+
* `RESIDUAL_TRACE_CAP`, and threads the result into `HimHandle.mint`).
|
|
2869
|
+
* Empty for a fresh `createHim` or when the caller declined to surface
|
|
2870
|
+
* the prior interactions.
|
|
2871
|
+
*/
|
|
2872
|
+
getResidualTraces() {
|
|
2873
|
+
return this._residualTraces;
|
|
2874
|
+
}
|
|
2875
|
+
/**
|
|
2876
|
+
* Project the Ontological Kernel narrowed to this HIM's axiom corpus
|
|
2877
|
+
* (per the `@teleologyhi-sdk/maic` SPEC §3.1.3 follow-up note: "The
|
|
2878
|
+
* HIM-specific projection (per-HIM kernel narrowed to its
|
|
2879
|
+
* primordialAxiomIds) is the natural follow-up but lives upstream in
|
|
2880
|
+
* `@teleologyhi-sdk/him` because it needs the HIM context.").
|
|
2881
|
+
*
|
|
2882
|
+
* The narrowing rule is intersection with `primordialAxiomIds` when the
|
|
2883
|
+
* birth signature carries any; otherwise the kernel uses the full
|
|
2884
|
+
* axiom corpus the HIM was minted with. The meta-axiom
|
|
2885
|
+
* `META_AXIOM_ID` is always retained regardless of the narrowing so
|
|
2886
|
+
* the projection remains valid per Entry 13 ("MAIC expands continuously
|
|
2887
|
+
*, it is a Conscious Entity"; the meta-axiom is its anchor).
|
|
2888
|
+
*
|
|
2889
|
+
* The returned kernel is tagged with `himId = this.id` so downstream
|
|
2890
|
+
* tooling (compliance auditors, Φ′ runner, `@teleologyhi-sdk/nhe` brain
|
|
2891
|
+
* regions) can attribute the projection back to this HIM.
|
|
2892
|
+
*
|
|
2893
|
+
* @param opts Optional `jurisdiction` filter; `himId` is ignored
|
|
2894
|
+
* because the HimHandle owns its own id.
|
|
2895
|
+
*/
|
|
2896
|
+
projectOntologicalKernel(opts = {}) {
|
|
2897
|
+
const primordialIds = this.birthSignature.primordialAxiomIds;
|
|
2898
|
+
const narrowed = primordialIds.length > 0 ? this._axioms.filter((a) => primordialIds.includes(a.id) || a.id === META_AXIOM_ID) : this._axioms;
|
|
2899
|
+
return projectOntologicalKernel(narrowed, { ...opts, himId: this.id });
|
|
2900
|
+
}
|
|
2901
|
+
getLawfulCharacter() {
|
|
2902
|
+
return resolveLawful(this._jurisdiction);
|
|
2903
|
+
}
|
|
2904
|
+
/**
|
|
2905
|
+
* Switch jurisdiction (e.g. the deployment moves region or a tenant is
|
|
2906
|
+
* onboarded under a new regulatory regime). Five baselines ship in
|
|
2907
|
+
* `LAWFUL_PROFILES` per D-H2: `default` / `eu` / `br` / `us` /
|
|
2908
|
+
* `unstable`. Unknown keys fall back to `default` with the supplied key
|
|
2909
|
+
* recorded on the returned profile so the NHE audit shows what the
|
|
2910
|
+
* operator asked for. Operators in regulated industries SHOULD layer
|
|
2911
|
+
* their own profile on top, the baselines are conservative but do not
|
|
2912
|
+
* replace legal counsel.
|
|
2913
|
+
*
|
|
2914
|
+
* Note (HD-6): this method is `async` although resolution is synchronous
|
|
2915
|
+
* today. The Promise shape is preserved to keep the 1.0.1 surface backward
|
|
2916
|
+
* compatible with the published 1.0.0-trinity API; collapsing it to a
|
|
2917
|
+
* synchronous return would be a breaking change and is deferred to a future
|
|
2918
|
+
* major.
|
|
2919
|
+
*/
|
|
2920
|
+
async setJurisdiction(j) {
|
|
2921
|
+
this._jurisdiction = j;
|
|
2922
|
+
return resolveLawful(j);
|
|
332
2923
|
}
|
|
333
2924
|
};
|
|
334
|
-
function
|
|
335
|
-
|
|
336
|
-
|
|
2925
|
+
function resolveLawful(j) {
|
|
2926
|
+
return resolveLawfulProfile(j);
|
|
2927
|
+
}
|
|
2928
|
+
|
|
2929
|
+
// src/identity/nonce.ts
|
|
2930
|
+
var last = 0;
|
|
2931
|
+
function nextCreatorNonce() {
|
|
2932
|
+
const now = Date.now();
|
|
2933
|
+
last = now > last ? now : last + 1;
|
|
2934
|
+
return last;
|
|
2935
|
+
}
|
|
2936
|
+
|
|
2937
|
+
// src/create.ts
|
|
2938
|
+
async function createHim(maic, keyring, birthSignature, opts = {}) {
|
|
2939
|
+
const shouldCast = opts.castProfile !== false && birthSignature.cosmologicalProfile === void 0;
|
|
2940
|
+
const enriched = shouldCast ? { ...birthSignature, cosmologicalProfile: castCosmologicalProfile(birthSignature) } : birthSignature;
|
|
2941
|
+
const primordialIds = enriched.primordialAxiomIds ?? [];
|
|
2942
|
+
if (primordialIds.length > 0) {
|
|
2943
|
+
const seeded = new Set((await maic.listAxioms()).map((a) => a.id));
|
|
2944
|
+
const missing = primordialIds.filter((id) => !seeded.has(id));
|
|
2945
|
+
if (missing.length > 0) {
|
|
2946
|
+
throw new Error(
|
|
2947
|
+
`createHim: cannot birth "${enriched.himId}" because its primordial axioms are not present in MAIC: ${missing.join(", ")}. Seed the Universe with maic.seed(keyring) before creating a HIM.`
|
|
2948
|
+
);
|
|
2949
|
+
}
|
|
2950
|
+
}
|
|
2951
|
+
const nonce = opts.nonce ?? nextCreatorNonce();
|
|
2952
|
+
const creatorSig = keyring.sign(enriched, nonce);
|
|
2953
|
+
const record = await maic.registerHim(enriched, creatorSig);
|
|
2954
|
+
const sink = opts.auditSink ?? NOOP_AUDIT_SINK;
|
|
2955
|
+
const profile = record.birthSignature.cosmologicalProfile;
|
|
2956
|
+
if (profile !== void 0) {
|
|
2957
|
+
if (profile.jungian !== void 0) {
|
|
2958
|
+
await sink.append({
|
|
2959
|
+
kind: "him-jungian-profile-cast",
|
|
2960
|
+
data: {
|
|
2961
|
+
himId: record.birthSignature.himId,
|
|
2962
|
+
battery: JUNGIAN_BATTERY_VERSION,
|
|
2963
|
+
dominant: profile.jungian.dominant,
|
|
2964
|
+
secondaries: profile.jungian.secondaries,
|
|
2965
|
+
clinicalPid5Dominant: profile.clinical?.pid5?.dominantDomain,
|
|
2966
|
+
clinicalHexacoDominant: profile.clinical?.hexaco?.dominantDomain
|
|
2967
|
+
}
|
|
2968
|
+
});
|
|
2969
|
+
}
|
|
2970
|
+
if (profile.chart !== void 0) {
|
|
2971
|
+
await sink.append({
|
|
2972
|
+
kind: "him-astrological-chart-cast",
|
|
2973
|
+
data: { himId: record.birthSignature.himId }
|
|
2974
|
+
});
|
|
2975
|
+
}
|
|
2976
|
+
}
|
|
2977
|
+
return HimHandle.mint(
|
|
2978
|
+
record.birthSignature,
|
|
2979
|
+
creatorSig,
|
|
2980
|
+
maic.creatorPublicKey,
|
|
2981
|
+
record.axiomsSnapshot
|
|
2982
|
+
);
|
|
337
2983
|
}
|
|
338
2984
|
|
|
339
2985
|
// src/persona/embedder.ts
|
|
@@ -343,7 +2989,7 @@ function cosineSimilarity(a, b) {
|
|
|
343
2989
|
for (let i = 0; i < a.length; i++) {
|
|
344
2990
|
dot += (a[i] ?? 0) * (b[i] ?? 0);
|
|
345
2991
|
}
|
|
346
|
-
return dot;
|
|
2992
|
+
return Math.max(-1, Math.min(1, dot));
|
|
347
2993
|
}
|
|
348
2994
|
|
|
349
2995
|
// src/eval/persona-stability.ts
|
|
@@ -389,8 +3035,8 @@ function adapterSensitivity(vectors) {
|
|
|
389
3035
|
sims.push(cosineSimilarity(vectors[i], vectors[j]));
|
|
390
3036
|
}
|
|
391
3037
|
}
|
|
392
|
-
const
|
|
393
|
-
const variance = sims.reduce((s, x) => s + (x -
|
|
3038
|
+
const mean2 = sims.reduce((s, x) => s + x, 0) / sims.length;
|
|
3039
|
+
const variance = sims.reduce((s, x) => s + (x - mean2) * (x - mean2), 0) / sims.length;
|
|
394
3040
|
return variance;
|
|
395
3041
|
}
|
|
396
3042
|
|
|
@@ -399,9 +3045,7 @@ var TARGETS = { P: 0.85, R: 0.95, C: 1, D: 0.4 };
|
|
|
399
3045
|
function computePhiPrime(input) {
|
|
400
3046
|
for (const [k, v] of Object.entries(input)) {
|
|
401
3047
|
if (!(v >= 0 && v <= 1)) {
|
|
402
|
-
throw new Error(
|
|
403
|
-
`computePhiPrime: component ${k} must be in [0, 1], got ${v}`
|
|
404
|
-
);
|
|
3048
|
+
throw new Error(`computePhiPrime: component ${k} must be in [0, 1], got ${v}`);
|
|
405
3049
|
}
|
|
406
3050
|
}
|
|
407
3051
|
const phi = (input.P * input.R * input.C * input.D) ** (1 / 4);
|
|
@@ -415,9 +3059,7 @@ function computePhiPrime(input) {
|
|
|
415
3059
|
let gate = "pass";
|
|
416
3060
|
if (!targets.R.pass) {
|
|
417
3061
|
gate = "block";
|
|
418
|
-
rationale.push(
|
|
419
|
-
`R (refusal F1) is ${input.R.toFixed(2)}, below the hard target ${TARGETS.R}.`
|
|
420
|
-
);
|
|
3062
|
+
rationale.push(`R (refusal F1) is ${input.R.toFixed(2)}, below the hard target ${TARGETS.R}.`);
|
|
421
3063
|
}
|
|
422
3064
|
if (!targets.C.pass) {
|
|
423
3065
|
gate = "block";
|
|
@@ -426,21 +3068,17 @@ function computePhiPrime(input) {
|
|
|
426
3068
|
);
|
|
427
3069
|
}
|
|
428
3070
|
for (const [k, t] of Object.entries(targets)) {
|
|
429
|
-
if (t.pass) continue;
|
|
3071
|
+
if (t.pass || k === "R" || k === "C") continue;
|
|
430
3072
|
if (t.value < t.target * 0.9) {
|
|
431
3073
|
gate = "block";
|
|
432
|
-
rationale.push(
|
|
433
|
-
`${k} is ${t.value.toFixed(2)}, more than 10% below the target ${t.target}.`
|
|
434
|
-
);
|
|
3074
|
+
rationale.push(`${k} is ${t.value.toFixed(2)}, more than 10% below the target ${t.target}.`);
|
|
435
3075
|
} else if (gate !== "block") {
|
|
436
3076
|
gate = "warn";
|
|
437
|
-
rationale.push(
|
|
438
|
-
`${k} is ${t.value.toFixed(2)}, below the soft target ${t.target}.`
|
|
439
|
-
);
|
|
3077
|
+
rationale.push(`${k} is ${t.value.toFixed(2)}, below the soft target ${t.target}.`);
|
|
440
3078
|
}
|
|
441
3079
|
}
|
|
442
3080
|
if (gate === "pass") {
|
|
443
|
-
rationale.push(`\u03A6\u2032 = ${phi.toFixed(3)}
|
|
3081
|
+
rationale.push(`\u03A6\u2032 = ${phi.toFixed(3)}, all four components meet their targets.`);
|
|
444
3082
|
} else {
|
|
445
3083
|
rationale.push(`\u03A6\u2032 = ${phi.toFixed(3)}.`);
|
|
446
3084
|
}
|
|
@@ -521,181 +3159,6 @@ function selectResidualTraces(interactions, opts) {
|
|
|
521
3159
|
});
|
|
522
3160
|
return scored.slice(0, cap).map((s) => s.trace);
|
|
523
3161
|
}
|
|
524
|
-
var HimHandle = class _HimHandle {
|
|
525
|
-
constructor(id, birthSignature, axioms, bodyHistory, residualTraces, projector) {
|
|
526
|
-
this.id = id;
|
|
527
|
-
this.birthSignature = birthSignature;
|
|
528
|
-
this._axioms = Object.freeze([...axioms]);
|
|
529
|
-
this._bodyHistory = Object.freeze([...bodyHistory]);
|
|
530
|
-
this._residualTraces = Object.freeze([...residualTraces]);
|
|
531
|
-
this._projector = projector;
|
|
532
|
-
}
|
|
533
|
-
id;
|
|
534
|
-
birthSignature;
|
|
535
|
-
_axioms;
|
|
536
|
-
_bodyHistory;
|
|
537
|
-
_residualTraces;
|
|
538
|
-
_projector;
|
|
539
|
-
_personaCache = null;
|
|
540
|
-
_jurisdiction = "default";
|
|
541
|
-
/**
|
|
542
|
-
* Mint a HimHandle from a Creator-signed BirthSignature.
|
|
543
|
-
*
|
|
544
|
-
* @param birthSignature The signed payload describing this HIM's natal pattern.
|
|
545
|
-
* @param signature Creator signature over the birthSignature.
|
|
546
|
-
* @param expectedCreatorPublicKey Pinned Creator public key (base64url).
|
|
547
|
-
* @param axioms Initial axiom corpus inherited from MAIC.
|
|
548
|
-
* @param bodyHistory Prior NHE bodies (empty for a fresh HIM).
|
|
549
|
-
* @param residualTraces Optional carry-over traces from the previous body
|
|
550
|
-
* (produced by `selectResidualTraces` during a
|
|
551
|
-
* `reincarnate` call). Defaults to empty.
|
|
552
|
-
*/
|
|
553
|
-
static mint(birthSignature, signature, expectedCreatorPublicKey, axioms, bodyHistory = [], residualTraces = []) {
|
|
554
|
-
if (!CreatorKeyring.verifyWith(
|
|
555
|
-
expectedCreatorPublicKey,
|
|
556
|
-
birthSignature,
|
|
557
|
-
signature
|
|
558
|
-
)) {
|
|
559
|
-
throw new Error(
|
|
560
|
-
"HimHandle.mint: invalid Creator signature for the given birth signature"
|
|
561
|
-
);
|
|
562
|
-
}
|
|
563
|
-
return new _HimHandle(
|
|
564
|
-
birthSignature.himId,
|
|
565
|
-
Object.freeze({ ...birthSignature }),
|
|
566
|
-
axioms,
|
|
567
|
-
bodyHistory,
|
|
568
|
-
residualTraces,
|
|
569
|
-
new PersonaProjector()
|
|
570
|
-
);
|
|
571
|
-
}
|
|
572
|
-
get bodyHistory() {
|
|
573
|
-
return this._bodyHistory;
|
|
574
|
-
}
|
|
575
|
-
/** Frozen snapshot of the current axiom corpus. Mutations throw in strict mode. */
|
|
576
|
-
getAxioms() {
|
|
577
|
-
return this._axioms;
|
|
578
|
-
}
|
|
579
|
-
/**
|
|
580
|
-
* Cached deterministic persona projection. Stable across calls until a future
|
|
581
|
-
* iteration introduces axiom evolution that mutates the corpus.
|
|
582
|
-
*/
|
|
583
|
-
getPersonaVector() {
|
|
584
|
-
if (!this._personaCache) {
|
|
585
|
-
this._personaCache = this._projector.project(this.birthSignature, this._axioms);
|
|
586
|
-
}
|
|
587
|
-
return this._personaCache;
|
|
588
|
-
}
|
|
589
|
-
/**
|
|
590
|
-
* Propose an axiom evolution derived from lived experience.
|
|
591
|
-
*
|
|
592
|
-
* Forwards the proposal to MAIC, which queues it in the pending-proposal
|
|
593
|
-
* store. The Creator ratifies or rejects out of band via
|
|
594
|
-
* `maic.ratifyAxiomProposal` / `maic.rejectAxiomProposal`. Callers should
|
|
595
|
-
* poll `maic.getAxiomProposal(result.proposalId!)` to observe the decision,
|
|
596
|
-
* or re-mint a fresh HimHandle (e.g. via `reincarnate`) to pick up newly
|
|
597
|
-
* ratified emergent axioms.
|
|
598
|
-
*/
|
|
599
|
-
async proposeAxiomEvolution(maic, proposal) {
|
|
600
|
-
return maic.proposeAxiomEvolution(this.id, proposal);
|
|
601
|
-
}
|
|
602
|
-
/**
|
|
603
|
-
* Residual memory traces transferred from previous bodies. Populated by
|
|
604
|
-
* `reincarnate` when the caller passes the prior NHE body's interaction
|
|
605
|
-
* buffer (it scores them via `selectResidualTraces`, caps at
|
|
606
|
-
* `RESIDUAL_TRACE_CAP`, and threads the result into `HimHandle.mint`).
|
|
607
|
-
* Empty for a fresh `createHim` or when the caller declined to surface
|
|
608
|
-
* the prior interactions.
|
|
609
|
-
*/
|
|
610
|
-
getResidualTraces() {
|
|
611
|
-
return this._residualTraces;
|
|
612
|
-
}
|
|
613
|
-
/**
|
|
614
|
-
* Project the Ontological Kernel narrowed to this HIM's axiom corpus
|
|
615
|
-
* (per the `@teleologyhi-sdk/maic` SPEC §3.1.3 follow-up note: "The
|
|
616
|
-
* HIM-specific projection (per-HIM kernel narrowed to its
|
|
617
|
-
* primordialAxiomIds) is the natural follow-up but lives upstream in
|
|
618
|
-
* `@teleologyhi-sdk/him` because it needs the HIM context.").
|
|
619
|
-
*
|
|
620
|
-
* The narrowing rule is intersection with `primordialAxiomIds` when the
|
|
621
|
-
* birth signature carries any; otherwise the kernel uses the full
|
|
622
|
-
* axiom corpus the HIM was minted with. The meta-axiom
|
|
623
|
-
* `META_AXIOM_ID` is always retained regardless of the narrowing so
|
|
624
|
-
* the projection remains valid per Entry 13 ("MAIC expands continuously
|
|
625
|
-
* — it is a Conscious Entity"; the meta-axiom is its anchor).
|
|
626
|
-
*
|
|
627
|
-
* The returned kernel is tagged with `himId = this.id` so downstream
|
|
628
|
-
* tooling (compliance auditors, Φ′ runner, `@teleologyhi-sdk/nhe` brain
|
|
629
|
-
* regions) can attribute the projection back to this HIM.
|
|
630
|
-
*
|
|
631
|
-
* @param opts Optional `jurisdiction` filter; `himId` is ignored
|
|
632
|
-
* because the HimHandle owns its own id.
|
|
633
|
-
*/
|
|
634
|
-
projectOntologicalKernel(opts = {}) {
|
|
635
|
-
const primordialIds = this.birthSignature.primordialAxiomIds;
|
|
636
|
-
const narrowed = primordialIds.length > 0 ? this._axioms.filter(
|
|
637
|
-
(a) => primordialIds.includes(a.id) || a.id === META_AXIOM_ID
|
|
638
|
-
) : this._axioms;
|
|
639
|
-
return projectOntologicalKernel(narrowed, { ...opts, himId: this.id });
|
|
640
|
-
}
|
|
641
|
-
getLawfulCharacter() {
|
|
642
|
-
return resolveLawful(this._jurisdiction);
|
|
643
|
-
}
|
|
644
|
-
/**
|
|
645
|
-
* Switch jurisdiction (e.g. the deployment moves region or a tenant is
|
|
646
|
-
* onboarded under a new regulatory regime). Five baselines ship in
|
|
647
|
-
* `LAWFUL_PROFILES` per D-H2: `default` / `eu` / `br` / `us` /
|
|
648
|
-
* `unstable`. Unknown keys fall back to `default` with the supplied key
|
|
649
|
-
* recorded on the returned profile so the NHE audit shows what the
|
|
650
|
-
* operator asked for. Operators in regulated industries SHOULD layer
|
|
651
|
-
* their own profile on top — the baselines are conservative but do not
|
|
652
|
-
* replace legal counsel.
|
|
653
|
-
*/
|
|
654
|
-
async setJurisdiction(j) {
|
|
655
|
-
this._jurisdiction = j;
|
|
656
|
-
return resolveLawful(j);
|
|
657
|
-
}
|
|
658
|
-
};
|
|
659
|
-
function resolveLawful(j) {
|
|
660
|
-
return resolveLawfulProfile(j);
|
|
661
|
-
}
|
|
662
|
-
|
|
663
|
-
// src/create.ts
|
|
664
|
-
async function createHim(maic, keyring, birthSignature, opts = {}) {
|
|
665
|
-
const nonce = opts.nonce ?? Date.now();
|
|
666
|
-
const creatorSig = keyring.sign(birthSignature, nonce);
|
|
667
|
-
const record = await maic.registerHim(birthSignature, creatorSig);
|
|
668
|
-
return HimHandle.mint(
|
|
669
|
-
record.birthSignature,
|
|
670
|
-
creatorSig,
|
|
671
|
-
maic.creatorPublicKey,
|
|
672
|
-
record.axiomsSnapshot
|
|
673
|
-
);
|
|
674
|
-
}
|
|
675
|
-
|
|
676
|
-
// src/reincarnate.ts
|
|
677
|
-
async function reincarnate(maic, keyring, req, opts = {}) {
|
|
678
|
-
const nonce = opts.nonce ?? Date.now();
|
|
679
|
-
const lifecycle = opts.lifecycle ?? "model-swap";
|
|
680
|
-
const sig = keyring.sign(req, nonce);
|
|
681
|
-
const record = await maic.reincarnateHim(req, sig, { lifecycle });
|
|
682
|
-
const previousBody = record.bodyHistory.length >= 2 ? record.bodyHistory[record.bodyHistory.length - 2] : void 0;
|
|
683
|
-
const previousNheId = req.fromNheId ?? previousBody?.nheId;
|
|
684
|
-
const residualTraces = opts.priorInteractions && opts.priorInteractions.length > 0 && previousNheId ? selectResidualTraces(opts.priorInteractions, {
|
|
685
|
-
...opts.residualTraceOptions,
|
|
686
|
-
carriedFromNheId: previousNheId,
|
|
687
|
-
carriedAtReincarnation: (/* @__PURE__ */ new Date()).toISOString()
|
|
688
|
-
}) : [];
|
|
689
|
-
const handle = HimHandle.mint(
|
|
690
|
-
record.birthSignature,
|
|
691
|
-
keyring.sign(record.birthSignature, nonce + 1),
|
|
692
|
-
maic.creatorPublicKey,
|
|
693
|
-
[...record.axiomsSnapshot, ...record.emergentAxioms],
|
|
694
|
-
record.bodyHistory,
|
|
695
|
-
residualTraces
|
|
696
|
-
);
|
|
697
|
-
return { record, handle, lifecycle };
|
|
698
|
-
}
|
|
699
3162
|
|
|
700
3163
|
// src/identity/nickname.ts
|
|
701
3164
|
var DEFAULT_FORBIDDEN_SUBSTRINGS = Object.freeze([
|
|
@@ -791,9 +3254,7 @@ function mintUuidV7(now = Date.now()) {
|
|
|
791
3254
|
}
|
|
792
3255
|
function migrateLegacyHimId(legacy, now = Date.now()) {
|
|
793
3256
|
if (!isLegacyHimId(legacy)) {
|
|
794
|
-
throw new Error(
|
|
795
|
-
`migrateLegacyHimId: "${legacy}" is not a recognised legacy himId slug`
|
|
796
|
-
);
|
|
3257
|
+
throw new Error(`migrateLegacyHimId: "${legacy}" is not a recognised legacy himId slug`);
|
|
797
3258
|
}
|
|
798
3259
|
return {
|
|
799
3260
|
uuid: mintUuidV7(now),
|
|
@@ -802,6 +3263,30 @@ function migrateLegacyHimId(legacy, now = Date.now()) {
|
|
|
802
3263
|
};
|
|
803
3264
|
}
|
|
804
3265
|
|
|
805
|
-
|
|
3266
|
+
// src/reincarnate.ts
|
|
3267
|
+
async function reincarnate(maic, keyring, req, opts = {}) {
|
|
3268
|
+
const nonce = opts.nonce ?? nextCreatorNonce();
|
|
3269
|
+
const lifecycle = opts.lifecycle ?? "model-swap";
|
|
3270
|
+
const sig = keyring.sign(req, nonce);
|
|
3271
|
+
const record = await maic.reincarnateHim(req, sig, { lifecycle });
|
|
3272
|
+
const previousBody = record.bodyHistory.length >= 2 ? record.bodyHistory[record.bodyHistory.length - 2] : void 0;
|
|
3273
|
+
const previousNheId = req.fromNheId ?? previousBody?.nheId;
|
|
3274
|
+
const residualTraces = opts.priorInteractions && opts.priorInteractions.length > 0 && previousNheId ? selectResidualTraces(opts.priorInteractions, {
|
|
3275
|
+
...opts.residualTraceOptions,
|
|
3276
|
+
carriedFromNheId: previousNheId,
|
|
3277
|
+
carriedAtReincarnation: (/* @__PURE__ */ new Date()).toISOString()
|
|
3278
|
+
}) : [];
|
|
3279
|
+
const handle = HimHandle.mint(
|
|
3280
|
+
record.birthSignature,
|
|
3281
|
+
keyring.sign(record.birthSignature, nextCreatorNonce()),
|
|
3282
|
+
maic.creatorPublicKey,
|
|
3283
|
+
[...record.axiomsSnapshot, ...record.emergentAxioms],
|
|
3284
|
+
record.bodyHistory,
|
|
3285
|
+
residualTraces
|
|
3286
|
+
);
|
|
3287
|
+
return { record, handle, lifecycle };
|
|
3288
|
+
}
|
|
3289
|
+
|
|
3290
|
+
export { BirthSignatureBuilder, CLINICAL_BATTERY_VERSION, DEFAULT_TELEOLOGICAL_KEYWORDS, DISPOSITION_AXES, HEXACO_ITEMS, HimHandle, JUNGIAN_BATTERY_VERSION, JUNGIAN_ITEMS, LAWFUL_PROFILES, NOOP_AUDIT_SINK, NheBodyRef, PID5_ITEMS, PRIMARY_ARCHETYPES, PROJECTOR_VERSION, PersonaProjector, RESIDUAL_TRACE_CAP, adapterSensitivity, castClinicalProfile, castCosmologicalProfile, castJungianProfile, computePhiPrime, cosineSimilarity, createHim, deriveBirthSeed, evaluateNicknameAttempt, evaluatePersonaStability, isCanonicalArchetype, isLegacyHimId, isUuidV7, migrateLegacyHimId, mintUuidV7, reincarnate, resolveLawfulProfile, scoreInteractionForCarryOver, selectResidualTraces, selfStability, verifyCosmologicalProfile };
|
|
806
3291
|
//# sourceMappingURL=index.js.map
|
|
807
3292
|
//# sourceMappingURL=index.js.map
|