@deina-labs/deina-core 1.1.0 → 1.1.2

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.
@@ -71,6 +71,8 @@ export interface StandardQuestion {
71
71
  key: StandardQuality;
72
72
  label: string;
73
73
  description: string;
74
+ type?: 'scale' | 'options';
75
+ options?: string[];
74
76
  }
75
77
 
76
78
  export const STANDARDS_QUALITIES: StandardQuestion[] = [
@@ -78,61 +80,75 @@ export const STANDARDS_QUALITIES: StandardQuestion[] = [
78
80
  key: 'physicalAttraction',
79
81
  label: 'Physical Attraction',
80
82
  description:
81
- 'When deciding whether to pursue someone seriously, how important is feeling strong physical attraction and chemistry?',
83
+ 'Be honest how much does physical attraction control whether you give someone a real chance?',
82
84
  },
83
85
  {
84
86
  key: 'emotionalStability',
85
87
  label: 'Emotional Stability',
86
88
  description:
87
- 'When disagreements or stressful situations come up, how important is it that he stays calm, grounded, and emotionally regulated?',
89
+ 'When things get tense, how much do you need him to stay calm or do you secretly tolerate emotional chaos?',
88
90
  },
89
91
  {
90
92
  key: 'emotionalAvailability',
91
93
  label: 'Emotional Availability',
92
94
  description:
93
- 'As a relationship develops, how important is it that he openly expresses his feelings and is clear about his relationship intentions?',
95
+ 'How much do you actually need him to be emotionally open or have you learned to accept silence as normal?',
94
96
  },
95
97
  {
96
98
  key: 'communicationFrequency',
97
- label: 'Communication Frequency',
99
+ label: 'Communication',
98
100
  description:
99
- "When you're getting to know someone, how important is consistent communication so you feel connected and secure?",
101
+ 'How much does inconsistent communication mess with your head or have you trained yourself not to care?',
100
102
  },
101
103
  {
102
104
  key: 'initiativeAndEffort',
103
105
  label: 'Initiative & Effort',
104
106
  description:
105
- 'As dating progresses, how important is it that he takes initiative planning dates, making effort, and showing increasing investment over time?',
107
+ 'How much do you need him to lead or have you gotten used to being the one who plans everything?',
106
108
  },
107
109
  {
108
110
  key: 'followThrough',
109
111
  label: 'Follow-Through',
110
112
  description:
111
- 'When someone makes plans or says they will do something, how important is it that they reliably follow through?',
113
+ 'He said he\'d call. He didn\'t. What do you actually do?',
114
+ type: 'options',
115
+ options: [
116
+ 'I let it go — people forget',
117
+ 'I notice but don\'t say anything',
118
+ 'I bring it up directly',
119
+ 'I start pulling back without telling him why',
120
+ ],
112
121
  },
113
122
  {
114
123
  key: 'financialResponsibility',
115
124
  label: 'Financial Responsibility',
116
125
  description:
117
- 'When evaluating long-term compatibility, how important is financial stability and responsible money management?',
126
+ 'How much does his money situation actually matter to you even if you don\'t want to admit it?',
118
127
  },
119
128
  {
120
129
  key: 'lifestyleAlignment',
121
130
  label: 'Lifestyle Alignment',
122
131
  description:
123
- 'How important is it that your routines, habits, social life, and lifestyle naturally align?',
132
+ 'How much do you need your lives to actually fit together or do you convince yourself differences don\'t matter?',
124
133
  },
125
134
  {
126
135
  key: 'longTermGoals',
127
136
  label: 'Long-Term Goals',
128
137
  description:
129
- 'When considering a serious relationship, how important is alignment on long-term goals such as commitment, marriage, or children?',
138
+ 'You\'re months in and he still hasn\'t mentioned the future. What do you do?',
139
+ type: 'options',
140
+ options: [
141
+ 'I bring it up — I need to know',
142
+ 'I drop hints and hope he gets it',
143
+ 'I wait for him to bring it up',
144
+ 'I avoid it because I\'m scared of what he\'ll say',
145
+ ],
130
146
  },
131
147
  {
132
148
  key: 'weeklyConsistency',
133
149
  label: 'Weekly Consistency',
134
150
  description:
135
- 'As a relationship develops, how important is seeing each other consistentlyat least once per week?',
151
+ 'How much does it bother you when you go a whole week without seeing him or have you convinced yourself that\'s normal?',
136
152
  },
137
153
  ];
138
154
 
@@ -149,67 +165,67 @@ export const TIMELINE_QUESTIONS: TimelineQuestion[] = [
149
165
  {
150
166
  key: 'firstDateWindow',
151
167
  question:
152
- 'When you first start talking to someone, how soon do you expect the first date to happen?',
153
- options: ['3–5 days', '1 week', '2 weeks', '3–4 weeks', 'No expectation'],
168
+ 'How long are you willing to text someone before you need a real date — or do you let it drag on?',
169
+ options: ['3–5 days', '1 week', '2 weeks', '3–4 weeks', 'I don\'t push for it'],
154
170
  },
155
171
  {
156
172
  key: 'secondDateWindow',
157
173
  question:
158
- 'After a good first date, how soon would you expect a second date to be planned?',
159
- options: ['3–5 days', '1 week', '2 weeks', 'No specific expectation'],
174
+ 'After a first date that went well, how long can you wait before the silence starts getting to you?',
175
+ options: ['3–5 days', '1 week', '2 weeks', 'I try not to think about it'],
160
176
  },
161
177
  {
162
178
  key: 'preFirstDatePreferences',
163
179
  question:
164
- 'Before meeting someone in person for the first time, what helps you feel comfortable moving forward?',
165
- options: ['A call or FaceTime', 'A clear plan', 'Consistent texting', 'Not important'],
180
+ 'Before meeting him in person, what do you actually need to feel safe — or do you skip that part when you\'re excited?',
181
+ options: ['A call or FaceTime', 'A clear plan', 'Consistent texting', 'I don\'t need anything'],
166
182
  multiSelect: true,
167
183
  },
168
184
  {
169
185
  key: 'communicationCadence',
170
186
  question:
171
- "When you're getting to know someone new, what level of communication makes you feel secure and interested?",
172
- options: ['Daily', 'Every other day', '2–3 times per week', 'Only when planning'],
187
+ 'How often do you need to hear from someone before the anxiety kicks in?',
188
+ options: ['Daily', 'Every other day', '2–3 times per week', 'Only when there\'s a plan'],
173
189
  },
174
190
  {
175
191
  key: 'exclusivityExpectation',
176
192
  question:
177
- 'As a relationship develops, when would you expect exclusivity to be discussed or established?',
178
- options: ['3–5 dates', '6–8 dates', '2 months', '3 months', 'No fixed expectation'],
193
+ 'How long can you date someone without knowing where you stand before it starts eating at you?',
194
+ options: ['3–5 dates', '6–8 dates', '2 months', '3 months', 'I avoid bringing it up'],
179
195
  },
180
196
  {
181
197
  key: 'intentionClarity',
182
198
  question:
183
- 'By when do you expect clarity about whether someone is looking for a serious relationship?',
199
+ 'How long do you let someone keep things vague before you demand to know what they actually want?',
184
200
  options: [
185
201
  'Before date 2',
186
202
  'Within 1 month',
187
203
  'Within 2 months',
188
204
  'After 3 months',
189
- 'No defined timeline',
205
+ 'I wait for them to bring it up',
190
206
  ],
191
207
  },
192
208
  {
193
209
  key: 'meetFriendsFamily',
194
210
  question:
195
- "In a developing relationship, when does it feel appropriate to begin meeting each other's friends or family?",
211
+ 'How long into dating before you need to exist in his real life not just in his DMs?',
196
212
  options: [
197
213
  '1–2 months',
198
214
  '3 months',
199
215
  '6 months',
200
216
  'Only after exclusivity',
201
- 'Not important',
217
+ 'I don\'t push for it',
202
218
  ],
203
219
  },
204
220
  {
205
221
  key: 'progressionPace',
206
222
  question:
207
- 'Which description best reflects the relationship pace that feels most natural to you?',
223
+ 'What pace do you actually move at not what you tell yourself, but what you do?',
208
224
  options: [
209
- 'Fast and intentional',
210
- 'Structured and steady',
211
- 'Gradual over time',
212
- 'Undefined / organic',
225
+ 'I move fast when I\'m excited',
226
+ 'I try to stay structured',
227
+ 'I let things unfold slowly',
228
+ 'I go with whatever he sets',
213
229
  ],
214
230
  },
215
231
  ];
@@ -220,113 +236,113 @@ export const MINDSET_QUESTIONS: MindsetQuestion[] = [
220
236
  {
221
237
  key: 'standardsConfidence',
222
238
  question:
223
- 'When you really like someone, how confident do you usually feel that your standards are reasonable and deserved?',
239
+ 'When you really like someone, do your standards hold — or do you start telling yourself you\'re asking for too much?',
224
240
  type: 'scale',
225
- scaleMinLabel: "I often worry I'm asking for too much",
226
- scaleMaxLabel: 'I feel confident my standards are valid',
241
+ scaleMinLabel: 'I start doubting what I deserve',
242
+ scaleMaxLabel: 'My standards don\'t move',
227
243
  },
228
244
  {
229
245
  key: 'effortInterpretation',
230
246
  question:
231
- 'If someone you like begins putting in less effort, what is your most common first thought?',
247
+ 'He used to text you back fast. Now he takes hours. What\'s your first instinct?',
232
248
  type: 'options',
233
249
  options: [
234
- "Maybe I'm expecting too much",
235
- "Maybe they're just busy",
236
- 'I notice the shift and start evaluating the situation',
237
- 'I lose interest quickly',
250
+ 'I probably did something wrong',
251
+ 'He\'s just busy, I shouldn\'t overthink it',
252
+ 'I notice it and start watching more closely',
253
+ 'I match his energy and pull back',
238
254
  ],
239
255
  },
240
256
  {
241
257
  key: 'comparativeAttraction',
242
258
  question:
243
- 'When dating someone you find extremely attractive, how likely are you to feel they may have more options than you?',
259
+ 'When he\'s more attractive than your usual type, how often do you feel like you need to try harder to keep him?',
244
260
  type: 'scale',
245
- scaleMinLabel: 'Very likely',
246
- scaleMaxLabel: 'Not at all',
261
+ scaleMinLabel: 'Almost always',
262
+ scaleMaxLabel: 'Never I know my worth',
247
263
  },
248
264
  {
249
265
  key: 'behavioralAdjustment',
250
266
  question:
251
- 'When you feel very attracted to someone, how often do you find yourself adjusting your behavior to keep their interest?',
267
+ 'How often do you become a different version of yourself to keep someone interested?',
252
268
  type: 'scale',
253
- scaleMinLabel: 'Very often',
254
- scaleMaxLabel: 'Rarely',
269
+ scaleMinLabel: 'More than I\'d like to admit',
270
+ scaleMaxLabel: 'I don\'t change for anyone',
255
271
  },
256
272
  {
257
273
  key: 'scarcityMindset',
258
274
  question:
259
- 'When you meet someone who seems like a great match, how often do you feel pressure to make the connection work?',
275
+ 'When you finally meet someone who feels right, how much pressure do you put on yourself not to lose them?',
260
276
  type: 'scale',
261
- scaleMinLabel: 'Very often',
262
- scaleMaxLabel: 'Rarely',
277
+ scaleMinLabel: 'A lot — good ones are rare',
278
+ scaleMaxLabel: 'None — the right one won\'t leave',
263
279
  },
264
280
  {
265
281
  key: 'ambiguityTolerance',
266
282
  question:
267
- "When someone you're dating becomes less responsive or harder to read, what tends to happen internally?",
283
+ 'He\'s been dry all day. No explanation. What happens in your head?',
268
284
  type: 'options',
269
285
  options: [
270
- 'I start replaying conversations and wondering what I might have done wrong',
271
- 'I assume they may be losing interest and begin worrying about where things stand',
272
- 'I notice the shift and start paying closer attention to their behavior',
273
- "I don't think about it much unless the pattern continues",
286
+ 'I replay everything trying to figure out what I did',
287
+ 'I convince myself he\'s losing interest and start spiraling',
288
+ 'I notice it but wait to see if it\'s a pattern',
289
+ 'I genuinely don\'t think about it',
274
290
  ],
275
291
  },
276
292
  {
277
293
  key: 'statusComparison',
278
294
  question:
279
- "If someone you're dating is highly attractive, successful, or socially impressive, how likely are you to feel pressure to 'match their level'?",
295
+ 'When he\'s more successful, better looking, or more popular than you do you feel like you need to earn your place?',
280
296
  type: 'scale',
281
- scaleMinLabel: 'Very likely',
282
- scaleMaxLabel: 'Not at all',
297
+ scaleMinLabel: 'Yes — I feel the pressure',
298
+ scaleMaxLabel: 'No I belong wherever I am',
283
299
  },
284
300
  {
285
301
  key: 'emotionalInvestmentSpeed',
286
302
  question:
287
- 'When you meet someone you feel strong chemistry with, how quickly do you usually become emotionally invested?',
303
+ 'You had one amazing date. How fast are you already imagining a future with him?',
288
304
  type: 'options',
289
305
  options: [
290
- 'Very quickly',
291
- 'Somewhat quickly',
292
- 'Gradually over time',
293
- 'Slowly and cautiously',
306
+ 'Immediately — I can already picture it',
307
+ 'Pretty fast — I get excited easily',
308
+ 'I enjoy it but stay grounded',
309
+ 'I don\'t let myself go there yet',
294
310
  ],
295
311
  },
296
312
  {
297
313
  key: 'fearOfLosingConnection',
298
314
  question:
299
- 'When you sense someone pulling away slightly, how strong is your instinct to try to restore the connection?',
315
+ 'He\'s pulling away. You can feel it. How strong is the urge to chase?',
300
316
  type: 'scale',
301
- scaleMinLabel: 'Very strong',
302
- scaleMaxLabel: 'Very weak',
317
+ scaleMinLabel: 'I\'d do almost anything to fix it',
318
+ scaleMaxLabel: 'I let him go without a fight',
303
319
  },
304
320
  {
305
321
  key: 'fulfillmentOutsideDating',
306
322
  question:
307
- "When you're not actively dating someone, how fulfilled does your life typically feel?",
323
+ 'When you\'re single and no one is texting you — how does your life actually feel?',
308
324
  type: 'scale',
309
- scaleMinLabel: 'I often feel something important is missing',
310
- scaleMaxLabel: 'My life feels full and satisfying',
325
+ scaleMinLabel: 'Like something important is missing',
326
+ scaleMaxLabel: 'Full and complete on its own',
311
327
  },
312
328
  {
313
329
  key: 'validationSensitivity',
314
330
  question:
315
- "When someone you're attracted to shows strong interest in you, how much does it affect your attraction to them?",
331
+ 'When someone you like suddenly shows heavy interest does it make you like them more, or does it not change anything?',
316
332
  type: 'scale',
317
- scaleMinLabel: 'It increases my attraction significantly',
318
- scaleMaxLabel: "It doesn't change my attraction much",
333
+ scaleMinLabel: 'It hooks me instantly',
334
+ scaleMaxLabel: 'It doesn\'t change how I feel',
319
335
  },
320
336
  {
321
337
  key: 'relationshipRole',
322
338
  question:
323
- 'When you imagine being in a relationship right now, what role does it most feel like it would play in your life?',
339
+ 'If you got into a relationship tomorrow, what would it really be for?',
324
340
  type: 'options',
325
341
  options: [
326
- 'It would enhance a life that already feels full and satisfying',
327
- 'It would add companionship and shared experiences to my life',
328
- 'It would fill a gap I currently feel in my life',
329
- 'It would make me feel more secure, valued, or "chosen"',
342
+ 'It would add to a life that\'s already good',
343
+ 'It would give me companionship I\'m missing',
344
+ 'It would fill a void I feel right now',
345
+ 'It would finally make me feel chosen',
330
346
  ],
331
347
  },
332
348
  ];
@@ -343,44 +359,44 @@ export const ENFORCEMENT_QUESTIONS: EnforcementQuestion[] = [
343
359
  {
344
360
  key: 'cancelDowngrade',
345
361
  question:
346
- 'If someone cancels plans last minute without a strong reason, how many times does it take before you mentally downgrade their reliability?',
347
- options: ['1 time', '2 times', '3+ times', 'Only if it becomes a pattern', 'I rarely downgrade'],
362
+ 'He cancels on you last minute. Again. How many times do you let it slide before you actually do something about it?',
363
+ options: ['Once — that\'s enough', 'Twice — benefit of the doubt', '3+ times before I react', 'Only when it\'s clearly a pattern', 'I usually let it go'],
348
364
  },
349
365
  {
350
366
  key: 'noFollowUpResponse',
351
367
  question:
352
- "After a date, if he doesn't follow up within about 24–48 hours, what is your typical reaction?",
368
+ 'Great date. Then silence for two days. What do you actually do — not what you wish you did?',
353
369
  options: [
354
- 'Lose interest immediately',
355
- 'Mentally downgrade',
356
- 'Ask directly',
357
- 'Wait it out',
358
- 'Do nothing',
370
+ 'I lose interest on the spot',
371
+ 'I mentally mark it against him',
372
+ 'I text him and ask directly',
373
+ 'I wait and hope he reaches out',
374
+ 'I pretend I didn\'t notice',
359
375
  ],
360
376
  },
361
377
  {
362
378
  key: 'effortDecreaseDowngrade',
363
379
  question:
364
- 'If his effort noticeably decreases after the first few dates, how quickly do you start reassessing the situation?',
365
- options: ['First sign', 'Second sign', 'Clear pattern', 'I rarely downgrade'],
380
+ 'His effort drops after the first few dates. The texts get shorter. The plans stop. How long do you pretend it\'s fine?',
381
+ options: ['I catch it immediately', 'I give it one more chance', 'I wait for a clear pattern', 'I usually don\'t pull back'],
366
382
  },
367
383
  {
368
384
  key: 'exclusivityNotDiscussed',
369
385
  question:
370
- "If exclusivity hasn't been discussed by the timeline that feels right to you, what do you usually do next?",
371
- options: ['End it', 'Initiate conversation', 'Give extra time', 'Continue casually'],
386
+ 'You\'ve been dating for a while and he still hasn\'t brought up exclusivity. What do you actually do?',
387
+ options: ['I walk away', 'I bring it up myself', 'I give him more time', 'I keep going and hope it comes up'],
372
388
  },
373
389
  {
374
390
  key: 'redFlagSpeed',
375
391
  question:
376
- 'When early red flags appear while dating someone, how quickly do you tend to act on them?',
377
- options: ['Immediately', 'After confirmation', 'After repeated behavior', 'Only if severe'],
392
+ 'You see a red flag early. Something feels off. How long do you ignore it because everything else feels good?',
393
+ options: ['I don\'t — I act immediately', 'I wait to see it again before deciding', 'I need a pattern before I act', 'Only if it\'s something serious'],
378
394
  },
379
395
  {
380
396
  key: 'disappointmentResponse',
381
397
  question:
382
- 'When someone disappoints you while dating, what is your most natural response?',
383
- options: ['Address directly', 'Withdraw', 'Reduce investment', 'Increase effort', 'Overthink'],
398
+ 'He disappoints you. Not a dealbreaker, but it stings. What\'s your real reaction?',
399
+ options: ['I tell him directly', 'I go quiet and pull back', 'I lower my expectations', 'I try harder to make it work', 'I overthink it for days'],
384
400
  },
385
401
  ];
386
402
 
@@ -395,85 +411,81 @@ export interface TradeOffQuestion {
395
411
  export const TRADEOFF_QUESTIONS: TradeOffQuestion[] = [
396
412
  {
397
413
  key: 'consistencyVsChemistry',
398
- question: 'Early in dating, if you had to choose, which matters more?',
414
+ question: 'You can only pick one. Which one wins every time?',
399
415
  options: [
400
- 'Strong chemistry even if effort is inconsistent',
401
- 'Consistent effort even if chemistry builds slowly',
416
+ 'Intense chemistry, even if he\'s inconsistent',
417
+ 'Consistent effort, even if the spark is slow',
402
418
  ],
403
419
  },
404
420
  {
405
421
  key: 'stabilityVsIntensity',
406
- question:
407
- 'Which emotional style do you generally feel more drawn to in a partner?',
408
- options: ['Calm and emotionally steady', 'Deeply expressive and intense'],
422
+ question: 'Which one do you actually choose — not which one you should?',
423
+ options: ['The calm, stable one', 'The passionate, intense one'],
409
424
  },
410
425
  {
411
426
  key: 'financialStatusVsCharacter',
412
- question:
413
- 'When it comes to money habits, which situation feels more comfortable in a partner?',
427
+ question: 'Money. Be honest — which one would you actually pick?',
414
428
  options: [
415
- 'Earns significantly but spends freely',
416
- 'Earns moderately but financially disciplined',
429
+ 'Makes great money but spends recklessly',
430
+ 'Makes less but is financially responsible',
417
431
  ],
418
432
  },
419
433
  {
420
434
  key: 'speedVsCertainty',
421
- question: 'When a new relationship begins, which pace feels more natural?',
435
+ question: 'When something new starts, which version of you shows up?',
422
436
  options: [
423
- 'Fast progression with strong momentum',
424
- 'Slower progression with careful evaluation',
437
+ 'I dive in fast when the energy is right',
438
+ 'I slow down and evaluate before committing',
425
439
  ],
426
440
  },
427
441
  {
428
442
  key: 'independenceVsIntegration',
429
- question: 'In an ideal relationship dynamic, which balance feels right?',
430
- options: ['Strong independence', 'Lives integrate quickly'],
443
+ question: 'In a relationship, which one actually sounds like you?',
444
+ options: ['I need my own space and identity', 'I want our lives to merge quickly'],
431
445
  },
432
446
  {
433
447
  key: 'ambitionVsPresence',
434
- question: 'Which type of partner appeals more?',
435
- options: ['Highly career-focused', 'Prioritizes presence and availability'],
448
+ question: 'Which absence would hurt more?',
449
+ options: ['He\'s always around but has no ambition', 'He\'s ambitious but never available'],
436
450
  },
437
451
  {
438
452
  key: 'toleratedFlaw',
439
- question:
440
- 'Looking back on dating experiences, which flaw do you tend to tolerate the longest?',
453
+ question: 'Which of these have you let slide the longest — and you know you shouldn\'t have?',
441
454
  options: [
442
- 'Slow texting',
443
- 'Slower commitment pace',
444
- 'Work-focused schedule',
445
- 'Low emotional expression',
455
+ 'Bad at texting back',
456
+ 'Won\'t commit at your pace',
457
+ 'Always busy with work',
458
+ 'Emotionally shut down',
446
459
  ],
447
460
  },
448
461
  {
449
462
  key: 'attractionKiller',
450
- question: 'Which behavior makes you lose attraction the fastest?',
463
+ question: 'Which one makes you lose interest the fastest — even if everything else is good?',
451
464
  options: [
452
- 'Passive energy',
453
- 'Insecurity',
454
- 'Hot-and-cold behavior',
455
- 'Avoiding commitment conversations',
465
+ 'No drive or initiative',
466
+ 'Constant insecurity',
467
+ 'Hot and cold behavior',
468
+ 'Refuses to talk about where things are going',
456
469
  ],
457
470
  },
458
471
  {
459
472
  key: 'pastPattern',
460
- question:
461
- 'Looking back honestly at your past relationships, which description feels closest to your pattern?',
473
+ question: 'Be honest about your track record. Which pattern keeps showing up?',
462
474
  options: [
463
- 'Choosing potential over proof',
464
- 'Staying too long',
465
- 'Leaving too early',
466
- 'Over-investing early',
475
+ 'I fall for potential instead of proof',
476
+ 'I stay way past the expiration date',
477
+ 'I leave before giving it a real chance',
478
+ 'I give too much too soon',
467
479
  ],
468
480
  },
469
481
  {
470
482
  key: 'earlyDatingTendency',
471
- question: 'When dating someone new, which pattern best describes you?',
483
+ question: 'When someone new enters the picture, which version of you takes over?',
472
484
  options: [
473
- 'Focus on one person quickly',
474
- 'Keep multiple options open',
475
- 'Get attached quickly',
476
- 'Stay emotionally guarded',
485
+ 'I lock in on one person immediately',
486
+ 'I keep my options open',
487
+ 'I get emotionally attached too fast',
488
+ 'I keep a wall up no matter what',
477
489
  ],
478
490
  },
479
491
  ];