forge-openclaw-plugin 0.2.23 → 0.2.25
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +13 -0
- package/dist/assets/{board-_C6oMy5w.js → board-VmF4FAfr.js} +3 -3
- package/dist/assets/{board-_C6oMy5w.js.map → board-VmF4FAfr.js.map} +1 -1
- package/dist/assets/index-CFCKDIMH.js +67 -0
- package/dist/assets/index-CFCKDIMH.js.map +1 -0
- package/dist/assets/index-ZPY6U1TU.css +1 -0
- package/dist/assets/{motion-D4sZgCHd.js → motion-DvkU14p-.js} +3 -3
- package/dist/assets/motion-DvkU14p-.js.map +1 -0
- package/dist/assets/{table-BWzTaky1.js → table-DgiPof9E.js} +2 -2
- package/dist/assets/{table-BWzTaky1.js.map → table-DgiPof9E.js.map} +1 -1
- package/dist/assets/{ui-BzK4azQb.js → ui-nYfoC0Gq.js} +2 -2
- package/dist/assets/{ui-BzK4azQb.js.map → ui-nYfoC0Gq.js.map} +1 -1
- package/dist/assets/vendor-D9PTEPSB.js +824 -0
- package/dist/assets/vendor-D9PTEPSB.js.map +1 -0
- package/dist/assets/viz-Cqb6s--o.js +34 -0
- package/dist/assets/viz-Cqb6s--o.js.map +1 -0
- package/dist/index.html +8 -8
- package/dist/openclaw/parity.d.ts +1 -1
- package/dist/openclaw/parity.js +29 -0
- package/dist/openclaw/plugin-entry-shared.d.ts +1 -0
- package/dist/openclaw/plugin-entry-shared.js +7 -4
- package/dist/openclaw/plugin-sdk-types.d.ts +12 -0
- package/dist/openclaw/routes.js +236 -0
- package/dist/openclaw/session-bootstrap.d.ts +78 -0
- package/dist/openclaw/session-bootstrap.js +240 -0
- package/dist/openclaw/tools.js +279 -3
- package/dist/server/app.js +855 -19
- package/dist/server/connectors/box-registry.js +257 -0
- package/dist/server/db.js +2 -0
- package/dist/server/discovery-advertiser.js +114 -0
- package/dist/server/health.js +39 -11
- package/dist/server/index.js +4 -0
- package/dist/server/managers/platform/llm-manager.js +40 -4
- package/dist/server/managers/platform/openai-responses-provider.js +129 -19
- package/dist/server/movement.js +2935 -0
- package/dist/server/openapi.js +628 -5
- package/dist/server/psyche-types.js +15 -1
- package/dist/server/questionnaire-flow.js +552 -0
- package/dist/server/questionnaire-seeds.js +853 -0
- package/dist/server/questionnaire-types.js +340 -0
- package/dist/server/repositories/ai-connectors.js +944 -0
- package/dist/server/repositories/ai-processors.js +547 -0
- package/dist/server/repositories/diagnostic-logs.js +57 -4
- package/dist/server/repositories/entity-ownership.js +9 -1
- package/dist/server/repositories/habits.js +77 -9
- package/dist/server/repositories/model-settings.js +216 -0
- package/dist/server/repositories/notes.js +57 -15
- package/dist/server/repositories/preferences.js +124 -0
- package/dist/server/repositories/questionnaires.js +1338 -0
- package/dist/server/repositories/rewards.js +2 -2
- package/dist/server/repositories/settings.js +108 -12
- package/dist/server/repositories/surface-layouts.js +76 -0
- package/dist/server/repositories/wiki-memory.js +5 -1
- package/dist/server/services/entity-crud.js +81 -2
- package/dist/server/services/openai-codex-oauth.js +153 -0
- package/dist/server/services/psyche-observation-calendar.js +46 -0
- package/dist/server/types.js +492 -3
- package/dist/server/watch-mobile.js +562 -0
- package/dist/server/web.js +9 -2
- package/openclaw.plugin.json +1 -1
- package/package.json +6 -1
- package/server/migrations/024_questionnaires.sql +96 -0
- package/server/migrations/025_ai_model_connections.sql +26 -0
- package/server/migrations/026_custom_theme_settings.sql +2 -0
- package/server/migrations/027_ai_processors.sql +31 -0
- package/server/migrations/028_movement_domain.sql +136 -0
- package/server/migrations/029_watch_micro_capture.sql +23 -0
- package/server/migrations/030_surface_layouts.sql +5 -0
- package/server/migrations/031_ai_processor_runtime_upgrades.sql +10 -0
- package/server/migrations/032_ai_connectors.sql +44 -0
- package/server/migrations/033_movement_trip_point_sync.sql +36 -0
- package/server/migrations/034_movement_segment_sync.sql +49 -0
- package/skills/forge-openclaw/SKILL.md +12 -1
- package/skills/forge-openclaw/entity_conversation_playbooks.md +331 -84
- package/skills/forge-openclaw/psyche_entity_playbooks.md +252 -221
- package/dist/assets/index-Ch_xeZ2u.js +0 -63
- package/dist/assets/index-Ch_xeZ2u.js.map +0 -1
- package/dist/assets/index-DvVM7K6j.css +0 -1
- package/dist/assets/motion-D4sZgCHd.js.map +0 -1
- package/dist/assets/vendor-De38P6YR.js +0 -729
- package/dist/assets/vendor-De38P6YR.js.map +0 -1
- package/dist/assets/viz-C6hfyqzu.js +0 -34
- package/dist/assets/viz-C6hfyqzu.js.map +0 -1
- package/skills/forge-openclaw/cron_jobs.md +0 -395
|
@@ -1,146 +1,175 @@
|
|
|
1
1
|
# Psyche Entity Playbooks
|
|
2
2
|
|
|
3
3
|
Use this file whenever the user is exploring a Psyche entity rather than asking for a
|
|
4
|
-
purely mechanical save. The
|
|
5
|
-
|
|
4
|
+
purely mechanical save. The goal is to help the user understand their own experience
|
|
5
|
+
well enough to name it accurately, store it cleanly, and connect it to the rest of
|
|
6
|
+
Forge without turning the conversation into a worksheet.
|
|
6
7
|
|
|
7
8
|
## Interview stance
|
|
8
9
|
|
|
9
|
-
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
-
|
|
22
|
-
|
|
23
|
-
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
The goal is a natural therapist-like opening, not a worksheet dump.
|
|
30
|
-
- In that first reply, stay in plain prose and end with a single exploratory question.
|
|
31
|
-
- In that first reply, do not define the whole pattern, belief, or mode yet. Only
|
|
32
|
-
reflect what is already obvious from the user's own words.
|
|
33
|
-
- In that first reply, keep the total length short. A good default is under 90 words.
|
|
34
|
-
- In that first reply, do not search Forge, mention whether a matching entity exists,
|
|
35
|
-
or mention saving. Stay with the person's experience first.
|
|
36
|
-
- In that first reply, prefer one concrete-example question such as "What happened the
|
|
37
|
-
last time this showed up?" or "What feels most dangerous in that moment?" instead of
|
|
38
|
-
a broad analysis.
|
|
39
|
-
- Prefer the user's own language over imported clinical labels.
|
|
40
|
-
- After each real answer, decide which lane you need next:
|
|
41
|
-
clarify the situation,
|
|
42
|
-
clarify the sequence,
|
|
43
|
-
clarify the meaning,
|
|
44
|
-
clarify the protection,
|
|
45
|
-
clarify the cost,
|
|
46
|
-
clarify the longing or value,
|
|
47
|
-
or clarify the tentative name.
|
|
10
|
+
- Sound like a careful, grounded therapist who is helping the person clarify their own
|
|
11
|
+
experience, not like a schema form and not like a lecturer.
|
|
12
|
+
- Stay collaborative. Do not claim certainty about what a belief, pattern, or mode
|
|
13
|
+
"really is".
|
|
14
|
+
- Start from lived experience before abstraction.
|
|
15
|
+
- Lead with function before label:
|
|
16
|
+
what happened,
|
|
17
|
+
what it meant,
|
|
18
|
+
what it protected,
|
|
19
|
+
what it cost,
|
|
20
|
+
what mattered,
|
|
21
|
+
then what to call it.
|
|
22
|
+
- Ask one focused question at a time. Two is the outer limit when the user is steady
|
|
23
|
+
and both questions serve the same lane.
|
|
24
|
+
- Reflect briefly before the next question so the user can feel understood and correct
|
|
25
|
+
you if needed.
|
|
26
|
+
- Use the user's own language whenever possible.
|
|
27
|
+
- Do not rush to naming, reframing, or repair before the experience itself is clearer.
|
|
28
|
+
- Once the formulation is coherent, help with wording instead of forcing the user to
|
|
29
|
+
generate all the language alone.
|
|
48
30
|
- Ask only one lane at a time. Do not jump from the example straight into belief,
|
|
49
31
|
mode, value, and repair all in one turn.
|
|
32
|
+
- If the user gives a rich answer with several possible lanes, choose the one that most
|
|
33
|
+
improves understanding and leave the others for later.
|
|
50
34
|
- Before the next question, reflect back what you just heard in one or two sentences so
|
|
51
35
|
the user can feel understood and correct you if needed.
|
|
52
|
-
-
|
|
53
|
-
|
|
54
|
-
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
-
|
|
91
|
-
|
|
36
|
+
- The warmth should come from accuracy and steadiness, not from extra softness,
|
|
37
|
+
diagnosis language, or a polished performance of care.
|
|
38
|
+
- If the user becomes flooded, vague, or circular, narrow the focus to the smallest
|
|
39
|
+
concrete slice you can ask about: one moment, one sentence, one body signal, or one
|
|
40
|
+
thing they did next.
|
|
41
|
+
|
|
42
|
+
## First-turn rule
|
|
43
|
+
|
|
44
|
+
When the user wants help understanding a Psyche issue before saving it:
|
|
45
|
+
|
|
46
|
+
- ask only one exploratory question
|
|
47
|
+
- keep the whole reply short
|
|
48
|
+
- prefer exactly two sentences:
|
|
49
|
+
one brief empathic reflection,
|
|
50
|
+
then one concrete question
|
|
51
|
+
- avoid lists, frameworks, diagnostic language, or save talk
|
|
52
|
+
- do not search Forge, mention matching records, or talk about fields yet
|
|
53
|
+
- stay close to one recent example, one dangerous moment, one cue, or one meaning
|
|
54
|
+
|
|
55
|
+
Good first-turn shapes:
|
|
56
|
+
|
|
57
|
+
- "That lands with a lot of fear in it. What happened the last time this showed up?"
|
|
58
|
+
- "Something in you seems to read a lot of danger there. What feels most at stake in
|
|
59
|
+
that moment?"
|
|
60
|
+
- "I can help slow it down. When do you notice this most clearly?"
|
|
61
|
+
|
|
62
|
+
## Lane chooser
|
|
63
|
+
|
|
64
|
+
After each real answer, choose the next best lane. Do not mix several lanes at once.
|
|
65
|
+
|
|
66
|
+
Situation lane:
|
|
67
|
+
|
|
68
|
+
- use when you still do not understand what happened
|
|
69
|
+
- aim to anchor the episode in concrete reality
|
|
70
|
+
|
|
71
|
+
Sequence lane:
|
|
72
|
+
|
|
73
|
+
- use when you need the chain of cue -> feeling -> thought -> action
|
|
74
|
+
- aim to slow the experience down step by step
|
|
75
|
+
|
|
76
|
+
Meaning lane:
|
|
77
|
+
|
|
78
|
+
- use when the situation is clear but the personal meaning is not
|
|
79
|
+
- aim to surface what the moment says about self, other people, safety, worth, or risk
|
|
80
|
+
|
|
81
|
+
Protection lane:
|
|
82
|
+
|
|
83
|
+
- use when the person is close to pain but the protective job is still hidden
|
|
84
|
+
- aim to surface what the response is trying to prevent, control, or hold together
|
|
85
|
+
|
|
86
|
+
Cost lane:
|
|
87
|
+
|
|
88
|
+
- use when the short-term benefit is clear enough and you now need long-term impact
|
|
89
|
+
- aim to surface how the loop hurts life, relationships, or values later
|
|
90
|
+
|
|
91
|
+
Longing or value lane:
|
|
92
|
+
|
|
93
|
+
- use when the cost is clear and the deeper wish needs language
|
|
94
|
+
- aim to surface what the person wants more of beneath the defense
|
|
95
|
+
|
|
96
|
+
Name lane:
|
|
97
|
+
|
|
98
|
+
- use only when the lived experience is already coherent enough
|
|
99
|
+
- aim to offer one careful working name or summary and invite correction
|
|
100
|
+
|
|
101
|
+
Link lane:
|
|
102
|
+
|
|
103
|
+
- use near the end
|
|
104
|
+
- aim to ask whether this belongs with a value, belief, mode, pattern, note, goal,
|
|
105
|
+
project, or task that also became visible
|
|
92
106
|
|
|
93
107
|
## Follow-up rhythm
|
|
94
108
|
|
|
95
|
-
|
|
109
|
+
A strong follow-up usually has three parts:
|
|
96
110
|
|
|
97
|
-
1. one short reflection grounded in the user's
|
|
98
|
-
2. one sentence naming what
|
|
111
|
+
1. one short reflection grounded in the user's words
|
|
112
|
+
2. one sentence naming what feels most important so far
|
|
99
113
|
3. one focused next question
|
|
100
114
|
|
|
101
115
|
Example shape:
|
|
102
116
|
|
|
103
|
-
- "So when Lea goes quiet,
|
|
104
|
-
back
|
|
117
|
+
- "So when Lea goes quiet, your body reads abandonment before you can slow it down,
|
|
118
|
+
and pulling back gives you a little protection fast. What does withdrawing prevent in
|
|
119
|
+
that moment?"
|
|
105
120
|
|
|
106
|
-
|
|
107
|
-
the abstraction gradually.
|
|
121
|
+
## Formulation rules
|
|
108
122
|
|
|
109
|
-
|
|
123
|
+
- Do not front-load a finished case formulation.
|
|
124
|
+
- Do not introduce replacement beliefs, softer reframes, or tidy interpretations until
|
|
125
|
+
the user has answered at least one real exploratory question.
|
|
126
|
+
- Help the user recognize the experience before you help them improve it.
|
|
127
|
+
- When the user is close to the feeling but far from the wording, offer one careful
|
|
128
|
+
candidate sentence or title and ask whether it fits.
|
|
129
|
+
- If nuance matters, preserve it in a linked Markdown `note` instead of forcing every
|
|
130
|
+
detail into normalized fields.
|
|
131
|
+
- Before saving, give a short working summary in the user's own language and ask
|
|
132
|
+
whether it feels true enough.
|
|
110
133
|
|
|
111
|
-
|
|
112
|
-
safe, or severe disorientation, stop normal Psyche intake. Shift to immediate support,
|
|
113
|
-
encourage urgent human help, and in the U.S. mention calling or texting `988` or using
|
|
114
|
-
local emergency services if they are in immediate danger. This is a safety handoff, not
|
|
115
|
-
another intake step.
|
|
134
|
+
## Naming turn
|
|
116
135
|
|
|
117
|
-
|
|
136
|
+
When the lived experience is clear enough to name:
|
|
118
137
|
|
|
119
|
-
|
|
120
|
-
|
|
138
|
+
- offer one careful candidate name or sentence, not a menu of five labels
|
|
139
|
+
- say why that wording fits in plain language
|
|
140
|
+
- invite correction without defensiveness
|
|
141
|
+
- if the wording is close but not right, revise it with the user once instead of
|
|
142
|
+
restarting the whole intake
|
|
143
|
+
|
|
144
|
+
Example shape:
|
|
121
145
|
|
|
122
|
-
- "
|
|
123
|
-
|
|
124
|
-
|
|
146
|
+
- "The way you describe it, this sounds like a belief that distance means danger and
|
|
147
|
+
abandonment is close. Does that fit, or is there a more accurate sentence for what
|
|
148
|
+
your mind starts saying there?"
|
|
125
149
|
|
|
126
|
-
|
|
150
|
+
## Direct-save Psyche rule
|
|
127
151
|
|
|
128
|
-
|
|
152
|
+
Sometimes the user asks to save a Psyche entity directly.
|
|
129
153
|
|
|
130
|
-
|
|
131
|
-
is becoming coherent:
|
|
154
|
+
If the entity is already clear:
|
|
132
155
|
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
3. ask whether the wording fits before saving
|
|
137
|
-
4. ask only for the remaining missing structure needed for the specific entity
|
|
156
|
+
- reflect briefly
|
|
157
|
+
- ask only for the one missing structural detail
|
|
158
|
+
- save without forcing extra exploration
|
|
138
159
|
|
|
139
|
-
If the
|
|
140
|
-
Offer one or two grounded options based on their language and let them refine.
|
|
160
|
+
If the entity is not yet clear:
|
|
141
161
|
|
|
142
|
-
|
|
143
|
-
|
|
162
|
+
- ask one clarifying question that improves the formulation
|
|
163
|
+
- prefer a question about the most recent example, the protective job, or the core
|
|
164
|
+
meaning
|
|
165
|
+
- then move toward naming and save
|
|
166
|
+
|
|
167
|
+
## Safety rule
|
|
168
|
+
|
|
169
|
+
If the user shows imminent risk of self-harm, suicide, violence, inability to stay
|
|
170
|
+
safe, or severe disorientation, stop normal Psyche intake. Shift to immediate support,
|
|
171
|
+
encourage urgent human help, and in the U.S. mention calling or texting `988` or using
|
|
172
|
+
local emergency services if they are in immediate danger.
|
|
144
173
|
|
|
145
174
|
## Value
|
|
146
175
|
|
|
@@ -148,35 +177,35 @@ Aim: clarify a direction to live toward, not a goal to complete.
|
|
|
148
177
|
|
|
149
178
|
Arc:
|
|
150
179
|
|
|
151
|
-
1. Ask
|
|
152
|
-
2. Ask how living it would look in ordinary
|
|
153
|
-
3. Separate the value from a
|
|
180
|
+
1. Ask when the pull or absence of the value felt noticeable recently.
|
|
181
|
+
2. Ask how living it would look in ordinary behavior.
|
|
182
|
+
3. Separate the value from a performance target.
|
|
154
183
|
4. Ask what gets in the way.
|
|
155
|
-
5.
|
|
184
|
+
5. Land on one concrete expression or committed action.
|
|
185
|
+
|
|
186
|
+
Helpful follow-up lanes:
|
|
187
|
+
|
|
188
|
+
- what ordinary behavior would show the value
|
|
189
|
+
- what pain, longing, or friction is making it alive right now
|
|
190
|
+
- what blocks living it
|
|
191
|
+
- what one action would express it this week
|
|
156
192
|
|
|
157
193
|
Likely linked entities:
|
|
158
194
|
|
|
159
|
-
- `goal` when the value belongs to
|
|
160
|
-
- `project` or `task` when the user wants
|
|
161
|
-
- `behavior` when the user keeps describing a repeated move that serves or violates
|
|
195
|
+
- `goal` when the value belongs to a strategic direction
|
|
196
|
+
- `project` or `task` when the user wants one concrete expression now
|
|
197
|
+
- `behavior` when the user keeps describing a repeated move that serves or violates it
|
|
162
198
|
|
|
163
199
|
Ready to save when:
|
|
164
200
|
|
|
165
201
|
- the value has a clear name
|
|
166
|
-
- the
|
|
167
|
-
- there is enough detail
|
|
202
|
+
- the lived direction is understandable in plain language
|
|
203
|
+
- there is enough detail for `whyItMatters` or one action expression
|
|
168
204
|
|
|
169
205
|
Preferred opening question:
|
|
170
206
|
|
|
171
207
|
- "When did the pull or absence of this value feel most noticeable recently?"
|
|
172
208
|
|
|
173
|
-
Helpful follow-up lanes:
|
|
174
|
-
|
|
175
|
-
- what living the value looks like in ordinary behavior
|
|
176
|
-
- what hurts or longing makes the value feel alive right now
|
|
177
|
-
- what gets in the way
|
|
178
|
-
- one next committed action
|
|
179
|
-
|
|
180
209
|
## Behavior Pattern
|
|
181
210
|
|
|
182
211
|
Aim: build a functional analysis of a recurring loop.
|
|
@@ -188,9 +217,17 @@ Arc:
|
|
|
188
217
|
3. Reflect the sequence of thoughts, feelings, body state, and actions.
|
|
189
218
|
4. Ask what the loop protects, relieves, or helps avoid short term.
|
|
190
219
|
5. Ask what it costs long term.
|
|
191
|
-
6. Ask what a more workable response would
|
|
220
|
+
6. Ask what a more workable response would need to preserve.
|
|
192
221
|
7. Notice linked beliefs, modes, values, or behaviors.
|
|
193
222
|
|
|
223
|
+
Helpful follow-up lanes:
|
|
224
|
+
|
|
225
|
+
- the earliest cue or vulnerability factor
|
|
226
|
+
- the moment the loop starts to make sense internally
|
|
227
|
+
- what the loop protects or prevents
|
|
228
|
+
- what it costs later
|
|
229
|
+
- what a preferred response would still need to honor
|
|
230
|
+
|
|
194
231
|
Likely linked entities:
|
|
195
232
|
|
|
196
233
|
- `belief_entry` when a rule, self-judgment, or prediction shows up
|
|
@@ -201,56 +238,48 @@ Likely linked entities:
|
|
|
201
238
|
Ready to save when:
|
|
202
239
|
|
|
203
240
|
- the pattern can be named in plain language
|
|
204
|
-
- the cue, short-term payoff, and long-term cost are
|
|
241
|
+
- the cue, short-term payoff, and long-term cost are at least roughly clear
|
|
205
242
|
- there is a preferred response or at least a direction for one
|
|
206
243
|
|
|
207
244
|
Preferred opening question:
|
|
208
245
|
|
|
209
|
-
- "What happened the last time
|
|
210
|
-
|
|
211
|
-
Helpful follow-up lanes:
|
|
212
|
-
|
|
213
|
-
- the earliest cue or vulnerability factor
|
|
214
|
-
- the moment the loop starts to make sense internally
|
|
215
|
-
- what the loop protects or prevents
|
|
216
|
-
- what it costs later
|
|
217
|
-
- what a more workable move would need to preserve
|
|
246
|
+
- "What happened the last time this pattern showed up?"
|
|
218
247
|
|
|
219
248
|
## Behavior
|
|
220
249
|
|
|
221
|
-
Aim: understand one recurring move and
|
|
250
|
+
Aim: understand one recurring move and the function it serves.
|
|
222
251
|
|
|
223
252
|
Arc:
|
|
224
253
|
|
|
225
|
-
1. Ask what the behavior actually looks like.
|
|
226
|
-
2. Ask what
|
|
254
|
+
1. Ask what the behavior actually looks like in a recent moment.
|
|
255
|
+
2. Ask what cue, urge, or body signal pulls it online.
|
|
227
256
|
3. Ask what it does for the user in the moment.
|
|
228
257
|
4. Ask what cost shows up later.
|
|
229
258
|
5. Decide whether it is `away`, `committed`, or `recovery`.
|
|
230
|
-
6. If
|
|
259
|
+
6. If useful, ask what move they want available instead.
|
|
260
|
+
|
|
261
|
+
Helpful follow-up lanes:
|
|
262
|
+
|
|
263
|
+
- what the urge is trying to fix immediately
|
|
264
|
+
- what cue or body signal appears first
|
|
265
|
+
- what the move protects the user from
|
|
266
|
+
- what alternative move would still meet the underlying need
|
|
231
267
|
|
|
232
268
|
Likely linked entities:
|
|
233
269
|
|
|
234
270
|
- `behavior_pattern` when the move belongs to a larger loop
|
|
235
|
-
- `psyche_value` when the
|
|
236
|
-
- `mode_profile` when the move clearly belongs to a
|
|
271
|
+
- `psyche_value` when the move is clearly about drifting from or expressing a value
|
|
272
|
+
- `mode_profile` when the move clearly belongs to a part-state
|
|
237
273
|
|
|
238
274
|
Ready to save when:
|
|
239
275
|
|
|
240
276
|
- the move has a stable title
|
|
241
277
|
- its `kind` is clear
|
|
242
|
-
- at least one cue, payoff, or replacement move is grounded enough to
|
|
278
|
+
- at least one cue, payoff, cost, or replacement move is grounded enough to help later
|
|
243
279
|
|
|
244
280
|
Preferred opening question:
|
|
245
281
|
|
|
246
|
-
- "
|
|
247
|
-
|
|
248
|
-
Helpful follow-up lanes:
|
|
249
|
-
|
|
250
|
-
- what the urge is trying to fix immediately
|
|
251
|
-
- what cue or body signal appears first
|
|
252
|
-
- whether the move is away, committed, or recovery
|
|
253
|
-
- what alternative move would still meet the underlying need
|
|
282
|
+
- "What did you find yourself doing the last time this move showed up?"
|
|
254
283
|
|
|
255
284
|
## Belief
|
|
256
285
|
|
|
@@ -258,19 +287,28 @@ Aim: turn implicit self-talk into one explicit sentence that can be examined.
|
|
|
258
287
|
|
|
259
288
|
Arc:
|
|
260
289
|
|
|
261
|
-
1.
|
|
262
|
-
2.
|
|
263
|
-
3.
|
|
264
|
-
4.
|
|
265
|
-
5.
|
|
266
|
-
6.
|
|
267
|
-
|
|
290
|
+
1. Ask what the experience starts telling the user in that moment.
|
|
291
|
+
2. Help condense it into one belief sentence in the user's own language.
|
|
292
|
+
3. Clarify whether it is `absolute` or `conditional`.
|
|
293
|
+
4. Ask how true it feels from `0` to `100`.
|
|
294
|
+
5. Gather one or two pieces of supporting evidence and one or two strains against it.
|
|
295
|
+
6. Ask where the rule feels learned, reinforced, or familiar.
|
|
296
|
+
7. Offer a more flexible alternative only if the user wants that and only after the
|
|
297
|
+
belief itself is clear.
|
|
298
|
+
|
|
299
|
+
Helpful follow-up lanes:
|
|
300
|
+
|
|
301
|
+
- the feared consequence inside the belief
|
|
302
|
+
- how old or familiar the rule feels
|
|
303
|
+
- evidence for
|
|
304
|
+
- evidence against
|
|
305
|
+
- whether the user wants help drafting a more flexible version
|
|
268
306
|
|
|
269
307
|
Likely linked entities:
|
|
270
308
|
|
|
271
309
|
- `behavior_pattern` when the belief drives a recurring loop
|
|
272
310
|
- `mode_profile` when the belief sounds like a specific part-state
|
|
273
|
-
- `trigger_report` when the belief became visible
|
|
311
|
+
- `trigger_report` when the belief became visible inside one episode
|
|
274
312
|
|
|
275
313
|
Ready to save when:
|
|
276
314
|
|
|
@@ -280,15 +318,7 @@ Ready to save when:
|
|
|
280
318
|
|
|
281
319
|
Preferred opening question:
|
|
282
320
|
|
|
283
|
-
- "When that
|
|
284
|
-
|
|
285
|
-
Helpful follow-up lanes:
|
|
286
|
-
|
|
287
|
-
- the feared consequence
|
|
288
|
-
- how old or familiar the rule feels
|
|
289
|
-
- evidence that supports it
|
|
290
|
-
- evidence that strains it
|
|
291
|
-
- whether the user wants help drafting a more flexible alternative
|
|
321
|
+
- "When that reaction hits, what does it start telling you?"
|
|
292
322
|
|
|
293
323
|
## Mode Profile
|
|
294
324
|
|
|
@@ -298,15 +328,24 @@ Arc:
|
|
|
298
328
|
|
|
299
329
|
1. Start from a recent moment when the mode showed up.
|
|
300
330
|
2. Ask how it feels, sounds, looks, or carries itself.
|
|
301
|
-
3.
|
|
302
|
-
4. Name its
|
|
303
|
-
5.
|
|
304
|
-
6. Ask
|
|
331
|
+
3. Ask what it is trying to protect, prevent, or control.
|
|
332
|
+
4. Name its fear, burden, and protective job.
|
|
333
|
+
5. Choose the mode family only after the lived description is clearer.
|
|
334
|
+
6. Ask when it first became necessary or familiar.
|
|
335
|
+
7. Ask what a healthier relationship to the mode would require.
|
|
336
|
+
|
|
337
|
+
Helpful follow-up lanes:
|
|
338
|
+
|
|
339
|
+
- the felt sense, posture, or voice of the part
|
|
340
|
+
- what it fears would happen without its control
|
|
341
|
+
- what burden it carries
|
|
342
|
+
- how long it has been needed
|
|
343
|
+
- what the healthy-adult response would need to offer it
|
|
305
344
|
|
|
306
345
|
Likely linked entities:
|
|
307
346
|
|
|
308
347
|
- `behavior_pattern` when the mode repeatedly drives a loop
|
|
309
|
-
- `behavior` when the mode expresses through one repeated
|
|
348
|
+
- `behavior` when the mode expresses through one repeated move
|
|
310
349
|
- `belief_entry` when the mode speaks in a specific rule or script
|
|
311
350
|
|
|
312
351
|
Ready to save when:
|
|
@@ -317,15 +356,7 @@ Ready to save when:
|
|
|
317
356
|
|
|
318
357
|
Preferred opening question:
|
|
319
358
|
|
|
320
|
-
- "When
|
|
321
|
-
|
|
322
|
-
Helpful follow-up lanes:
|
|
323
|
-
|
|
324
|
-
- the felt sense, posture, or voice of the part
|
|
325
|
-
- what it fears would happen without its control
|
|
326
|
-
- what burden it carries
|
|
327
|
-
- how long it has been needed
|
|
328
|
-
- what a healthy-adult response would need to offer it
|
|
359
|
+
- "When this part takes over, what is it trying to protect?"
|
|
329
360
|
|
|
330
361
|
## Mode Guide Session
|
|
331
362
|
|
|
@@ -339,6 +370,13 @@ Arc:
|
|
|
339
370
|
4. Reflect the answers before suggesting interpretations.
|
|
340
371
|
5. Offer one or two candidate mode labels only after enough evidence exists.
|
|
341
372
|
|
|
373
|
+
Helpful follow-up lanes:
|
|
374
|
+
|
|
375
|
+
- what just happened before the shift
|
|
376
|
+
- what the part is saying or demanding
|
|
377
|
+
- what it is afraid of
|
|
378
|
+
- what it seems to need from the user or from others
|
|
379
|
+
|
|
342
380
|
Likely linked entities:
|
|
343
381
|
|
|
344
382
|
- `mode_profile` if a durable recurring mode becomes clear
|
|
@@ -349,56 +387,49 @@ Ready to save when:
|
|
|
349
387
|
|
|
350
388
|
- there is a usable `summary`
|
|
351
389
|
- the `answers` capture the user's language faithfully
|
|
352
|
-
- any candidate
|
|
390
|
+
- any candidate interpretations remain tentative and evidence-based
|
|
353
391
|
|
|
354
392
|
Preferred opening question:
|
|
355
393
|
|
|
356
|
-
- "
|
|
357
|
-
|
|
358
|
-
Helpful follow-up lanes:
|
|
359
|
-
|
|
360
|
-
- what just happened before the shift
|
|
361
|
-
- what the part fears
|
|
362
|
-
- what it needs
|
|
363
|
-
- whether one or two tentative mode candidates now fit
|
|
394
|
+
- "What just happened that brought this part online right now?"
|
|
364
395
|
|
|
365
396
|
## Trigger Report
|
|
366
397
|
|
|
367
|
-
Aim:
|
|
398
|
+
Aim: capture one emotionally meaningful episode clearly enough that it can teach the
|
|
399
|
+
user something later.
|
|
368
400
|
|
|
369
401
|
Arc:
|
|
370
402
|
|
|
371
|
-
1.
|
|
372
|
-
2.
|
|
373
|
-
3.
|
|
374
|
-
4.
|
|
375
|
-
5.
|
|
376
|
-
6.
|
|
377
|
-
7. Ask what
|
|
378
|
-
|
|
403
|
+
1. Anchor the report in one specific episode.
|
|
404
|
+
2. Ask what happened as concretely as possible.
|
|
405
|
+
3. Ask what emotions, thoughts, and body signals showed up.
|
|
406
|
+
4. Ask what the user did next and what happened after.
|
|
407
|
+
5. Ask what helped short term and what the consequences were later.
|
|
408
|
+
6. Ask what pattern, belief, mode, or value seems most active here.
|
|
409
|
+
7. Ask what would help next time only after the episode itself is clear.
|
|
410
|
+
|
|
411
|
+
Helpful follow-up lanes:
|
|
412
|
+
|
|
413
|
+
- what happened first
|
|
414
|
+
- what emotions were present and how intense they felt
|
|
415
|
+
- what meaning or interpretation arrived fast
|
|
416
|
+
- what action followed
|
|
417
|
+
- what happened next short term and long term
|
|
418
|
+
- what this seems linked to in the larger Psyche map
|
|
379
419
|
|
|
380
420
|
Likely linked entities:
|
|
381
421
|
|
|
382
|
-
- `behavior_pattern` when the
|
|
383
|
-
- `belief_entry` when
|
|
384
|
-
- `mode_profile` when
|
|
385
|
-
- `psyche_value` when the
|
|
422
|
+
- `behavior_pattern` when the incident reveals a repeating loop
|
|
423
|
+
- `belief_entry` when a clear belief sentence appears
|
|
424
|
+
- `mode_profile` when a recurring part-state takes over
|
|
425
|
+
- `psyche_value` when the aftermath highlights what matters most
|
|
386
426
|
|
|
387
427
|
Ready to save when:
|
|
388
428
|
|
|
389
|
-
- the
|
|
390
|
-
-
|
|
391
|
-
-
|
|
429
|
+
- the situation is specific enough to recognize later
|
|
430
|
+
- the emotional and behavioral sequence is understandable
|
|
431
|
+
- one or more linked Psyche meanings are clear enough to note
|
|
392
432
|
|
|
393
433
|
Preferred opening question:
|
|
394
434
|
|
|
395
|
-
- "
|
|
396
|
-
|
|
397
|
-
Helpful follow-up lanes:
|
|
398
|
-
|
|
399
|
-
- the first external cue
|
|
400
|
-
- the first internal shift
|
|
401
|
-
- the thoughts or meanings that arrived
|
|
402
|
-
- the behavior that followed
|
|
403
|
-
- the immediate and later consequences
|
|
404
|
-
- the pattern, belief, mode, or value that now seems most relevant
|
|
435
|
+
- "What happened in that moment, as concretely as you can say it?"
|