jmisak commited on
Commit
36c85fe
·
verified ·
1 Parent(s): 47cb122

Upload scenarios.json

Browse files
Files changed (1) hide show
  1. contexts/scenarios.json +186 -0
contexts/scenarios.json ADDED
@@ -0,0 +1,186 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "scenario": "neutral_baseline",
4
+ "description": "Normal day, no significant stressors",
5
+ "effects": {
6
+ "anxiety": 0.0,
7
+ "trust": 0.0,
8
+ "openness": 0.0
9
+ }
10
+ },
11
+ {
12
+ "scenario": "work_conflict",
13
+ "description": "Had an argument or tension with supervisor/colleague",
14
+ "effects": {
15
+ "anxiety": 0.15,
16
+ "trust": -0.05,
17
+ "openness": -0.1,
18
+ "physical_discomfort": 0.1
19
+ }
20
+ },
21
+ {
22
+ "scenario": "physical_pain_flare",
23
+ "description": "Experiencing increased physical pain today",
24
+ "effects": {
25
+ "anxiety": 0.2,
26
+ "openness": -0.15,
27
+ "physical_discomfort": 0.3
28
+ }
29
+ },
30
+ {
31
+ "scenario": "positive_social_interaction",
32
+ "description": "Had a good interaction with friend or supportive person",
33
+ "effects": {
34
+ "anxiety": -0.1,
35
+ "trust": 0.1,
36
+ "openness": 0.15
37
+ }
38
+ },
39
+ {
40
+ "scenario": "deadline_pressure",
41
+ "description": "Facing important deadline or performance evaluation",
42
+ "effects": {
43
+ "anxiety": 0.25,
44
+ "openness": -0.1,
45
+ "physical_discomfort": 0.15
46
+ }
47
+ },
48
+ {
49
+ "scenario": "poor_sleep_night",
50
+ "description": "Didn't sleep well last night, feeling exhausted",
51
+ "effects": {
52
+ "anxiety": 0.15,
53
+ "openness": -0.2,
54
+ "physical_discomfort": 0.2
55
+ }
56
+ },
57
+ {
58
+ "scenario": "creative_success",
59
+ "description": "Had a win or success in meaningful activity (Maya: design work; Jack: streaming)",
60
+ "effects": {
61
+ "anxiety": -0.15,
62
+ "trust": 0.05,
63
+ "openness": 0.1,
64
+ "creative_engagement": 0.2,
65
+ "occupational_balance": 0.1
66
+ }
67
+ },
68
+ {
69
+ "scenario": "comparison_trigger",
70
+ "description": "Saw peers succeeding or felt behind compared to others",
71
+ "effects": {
72
+ "anxiety": 0.2,
73
+ "openness": -0.1,
74
+ "trust": -0.05
75
+ }
76
+ },
77
+ {
78
+ "scenario": "family_pressure",
79
+ "description": "Family questioning career choices or expressing disappointment",
80
+ "effects": {
81
+ "anxiety": 0.25,
82
+ "openness": -0.15,
83
+ "trust": -0.1
84
+ }
85
+ },
86
+ {
87
+ "scenario": "boundary_violation",
88
+ "description": "Someone overstepped boundaries or made unreasonable demands",
89
+ "effects": {
90
+ "anxiety": 0.3,
91
+ "trust": -0.15,
92
+ "openness": -0.2
93
+ }
94
+ },
95
+ {
96
+ "scenario": "positive_rest_activity",
97
+ "description": "Actually took time for self-care or meaningful leisure",
98
+ "effects": {
99
+ "anxiety": -0.2,
100
+ "openness": 0.1,
101
+ "physical_discomfort": -0.1,
102
+ "occupational_balance": 0.15
103
+ }
104
+ },
105
+ {
106
+ "scenario": "isolation_loneliness",
107
+ "description": "Feeling disconnected and lonely despite being busy",
108
+ "effects": {
109
+ "anxiety": 0.2,
110
+ "openness": -0.1
111
+ }
112
+ },
113
+ {
114
+ "scenario": "panic_attack_recent",
115
+ "description": "Had a panic attack recently (within last 24-48 hours)",
116
+ "effects": {
117
+ "anxiety": 0.4,
118
+ "openness": -0.2,
119
+ "physical_discomfort": 0.25,
120
+ "trust": -0.1
121
+ }
122
+ },
123
+ {
124
+ "scenario": "therapeutic_breakthrough",
125
+ "description": "Had an insight or realization in previous session",
126
+ "effects": {
127
+ "anxiety": -0.1,
128
+ "trust": 0.2,
129
+ "openness": 0.25
130
+ }
131
+ },
132
+ {
133
+ "scenario": "financial_stress",
134
+ "description": "Money worries, bills piling up, can't afford things needed",
135
+ "effects": {
136
+ "anxiety": 0.25,
137
+ "openness": -0.1
138
+ }
139
+ },
140
+ {
141
+ "scenario": "occupational_success",
142
+ "description": "Meaningful engagement in valued occupation (work, hobby, social)",
143
+ "effects": {
144
+ "anxiety": -0.15,
145
+ "trust": 0.1,
146
+ "openness": 0.15,
147
+ "creative_engagement": 0.2,
148
+ "occupational_balance": 0.2
149
+ }
150
+ },
151
+ {
152
+ "scenario": "medication_change",
153
+ "description": "Recently started, stopped, or changed psychiatric medication",
154
+ "effects": {
155
+ "anxiety": 0.15,
156
+ "openness": 0.1
157
+ }
158
+ },
159
+ {
160
+ "scenario": "confrontation_avoidance",
161
+ "description": "Avoiding necessary conversation or decision",
162
+ "effects": {
163
+ "anxiety": 0.2,
164
+ "openness": -0.15
165
+ }
166
+ },
167
+ {
168
+ "scenario": "progress_recognition",
169
+ "description": "Someone noticed or validated positive changes",
170
+ "effects": {
171
+ "anxiety": -0.1,
172
+ "trust": 0.2,
173
+ "openness": 0.2
174
+ }
175
+ },
176
+ {
177
+ "scenario": "overwhelming_demands",
178
+ "description": "Multiple competing demands, feeling unable to cope",
179
+ "effects": {
180
+ "anxiety": 0.35,
181
+ "openness": -0.2,
182
+ "physical_discomfort": 0.2,
183
+ "occupational_balance": -0.2
184
+ }
185
+ }
186
+ ]