forge-openclaw-plugin 0.2.19 → 0.2.21
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 +133 -2
- package/dist/assets/board-_C6oMy5w.js +6 -0
- package/dist/assets/{board-8L3uX7_O.js.map → board-_C6oMy5w.js.map} +1 -1
- package/dist/assets/index-B4A6TooJ.js +63 -0
- package/dist/assets/index-B4A6TooJ.js.map +1 -0
- package/dist/assets/index-D6Xs_2mo.css +1 -0
- package/dist/assets/{motion-1GAqqi8M.js → motion-D4sZgCHd.js} +2 -2
- package/dist/assets/{motion-1GAqqi8M.js.map → motion-D4sZgCHd.js.map} +1 -1
- package/dist/assets/{table-DBGlgRjk.js → table-BWzTaky1.js} +2 -2
- package/dist/assets/{table-DBGlgRjk.js.map → table-BWzTaky1.js.map} +1 -1
- package/dist/assets/{ui-iTluWjC4.js → ui-BzK4azQb.js} +7 -7
- package/dist/assets/{ui-iTluWjC4.js.map → ui-BzK4azQb.js.map} +1 -1
- package/dist/assets/vendor-DT3pnAKJ.css +1 -0
- package/dist/assets/vendor-De38P6YR.js +729 -0
- package/dist/assets/vendor-De38P6YR.js.map +1 -0
- package/dist/assets/viz-C6hfyqzu.js +34 -0
- package/dist/assets/viz-C6hfyqzu.js.map +1 -0
- package/dist/index.html +9 -9
- package/dist/openclaw/parity.d.ts +1 -1
- package/dist/openclaw/parity.js +29 -2
- package/dist/openclaw/routes.js +207 -24
- package/dist/openclaw/tools.js +324 -35
- package/dist/server/app.js +2080 -92
- package/dist/server/db.js +3 -0
- package/dist/server/health.js +1284 -0
- package/dist/server/managers/platform/background-job-manager.js +138 -2
- package/dist/server/managers/platform/llm-manager.js +126 -0
- package/dist/server/managers/platform/openai-responses-provider.js +773 -0
- package/dist/server/managers/runtime.js +6 -1
- package/dist/server/openapi.js +718 -0
- package/dist/server/preferences-seeds.js +409 -0
- package/dist/server/preferences-types.js +368 -0
- package/dist/server/psyche-types.js +42 -18
- package/dist/server/repositories/activity-events.js +53 -4
- package/dist/server/repositories/calendar.js +89 -15
- package/dist/server/repositories/collaboration.js +8 -3
- package/dist/server/repositories/diagnostic-logs.js +243 -0
- package/dist/server/repositories/entity-ownership.js +92 -0
- package/dist/server/repositories/goals.js +7 -2
- package/dist/server/repositories/habits.js +122 -16
- package/dist/server/repositories/notes.js +119 -41
- package/dist/server/repositories/preferences.js +1765 -0
- package/dist/server/repositories/projects.js +18 -7
- package/dist/server/repositories/psyche.js +84 -27
- package/dist/server/repositories/rewards.js +112 -4
- package/dist/server/repositories/strategies.js +450 -0
- package/dist/server/repositories/tags.js +11 -6
- package/dist/server/repositories/task-runs.js +10 -2
- package/dist/server/repositories/tasks.js +99 -17
- package/dist/server/repositories/users.js +417 -0
- package/dist/server/repositories/wiki-memory.js +3366 -0
- package/dist/server/services/context.js +20 -18
- package/dist/server/services/dashboard.js +29 -6
- package/dist/server/services/entity-crud.js +21 -3
- package/dist/server/services/insights.js +9 -7
- package/dist/server/services/projects.js +2 -1
- package/dist/server/services/psyche.js +10 -9
- package/dist/server/types.js +594 -30
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
- package/server/migrations/015_multi_user_and_strategies.sql +244 -0
- package/server/migrations/016_health_companion.sql +158 -0
- package/server/migrations/016_strategy_contracts_and_user_graph.sql +22 -0
- package/server/migrations/017_preferences.sql +131 -0
- package/server/migrations/018_preference_catalogs.sql +31 -0
- package/server/migrations/019_wiki_memory.sql +255 -0
- package/server/migrations/020_wiki_page_hierarchy.sql +11 -0
- package/server/migrations/021_hide_evidence_from_wiki_index.sql +3 -0
- package/server/migrations/022_wiki_ingest_background.sql +85 -0
- package/server/migrations/023_diagnostic_logs.sql +28 -0
- package/skills/forge-openclaw/SKILL.md +126 -34
- package/skills/forge-openclaw/entity_conversation_playbooks.md +337 -0
- package/skills/forge-openclaw/psyche_entity_playbooks.md +404 -0
- package/dist/assets/board-8L3uX7_O.js +0 -6
- package/dist/assets/index-Cj1IBH_w.js +0 -36
- package/dist/assets/index-Cj1IBH_w.js.map +0 -1
- package/dist/assets/index-DQT6EbuS.css +0 -1
- package/dist/assets/vendor-BvM2F9Dp.js +0 -503
- package/dist/assets/vendor-BvM2F9Dp.js.map +0 -1
- package/dist/assets/vendor-CRS-psbw.css +0 -1
- package/dist/assets/viz-CNeunkfu.js +0 -34
- package/dist/assets/viz-CNeunkfu.js.map +0 -1
|
@@ -0,0 +1,409 @@
|
|
|
1
|
+
const ZERO_VECTOR = {
|
|
2
|
+
novelty: 0,
|
|
3
|
+
simplicity: 0,
|
|
4
|
+
rigor: 0,
|
|
5
|
+
aesthetics: 0,
|
|
6
|
+
depth: 0,
|
|
7
|
+
structure: 0,
|
|
8
|
+
familiarity: 0,
|
|
9
|
+
surprise: 0
|
|
10
|
+
};
|
|
11
|
+
function weights(patch) {
|
|
12
|
+
return {
|
|
13
|
+
...ZERO_VECTOR,
|
|
14
|
+
...patch
|
|
15
|
+
};
|
|
16
|
+
}
|
|
17
|
+
function item(label, description, tags, featureWeights) {
|
|
18
|
+
return {
|
|
19
|
+
label,
|
|
20
|
+
description,
|
|
21
|
+
tags,
|
|
22
|
+
featureWeights: weights(featureWeights)
|
|
23
|
+
};
|
|
24
|
+
}
|
|
25
|
+
const PREFERENCE_CATALOG_SEEDS = {
|
|
26
|
+
food: [
|
|
27
|
+
{
|
|
28
|
+
slug: "cuisine-styles",
|
|
29
|
+
title: "Cuisine styles",
|
|
30
|
+
description: "Broad cuisine directions for fast food preference rounds.",
|
|
31
|
+
items: [
|
|
32
|
+
item("Japanese", "Clean lines, precision, and layered subtlety.", ["cuisine", "food"], { rigor: 0.55, aesthetics: 0.45, simplicity: 0.18 }),
|
|
33
|
+
item("Italian", "Comfort, familiarity, and generous shared plates.", ["cuisine", "comfort"], { familiarity: 0.48, aesthetics: 0.14, depth: 0.18 }),
|
|
34
|
+
item("Mexican", "Bold flavor, contrast, and high sensory reward.", ["cuisine", "spice"], { surprise: 0.35, novelty: 0.24, aesthetics: 0.08 }),
|
|
35
|
+
item("Thai", "Aromatic balance with bright, fast-moving flavors.", ["cuisine", "aromatic"], { novelty: 0.32, surprise: 0.28, depth: 0.22 }),
|
|
36
|
+
item("French", "Technique, polish, and ritualized dining.", ["cuisine", "classic"], { rigor: 0.58, aesthetics: 0.4, familiarity: 0.1 }),
|
|
37
|
+
item("Indian", "Spice complexity, warmth, and layered depth.", ["cuisine", "depth"], { depth: 0.52, surprise: 0.26, novelty: 0.2 }),
|
|
38
|
+
item("Mediterranean", "Freshness, balance, and easy repeatability.", ["cuisine", "fresh"], { simplicity: 0.34, familiarity: 0.32, aesthetics: 0.18 }),
|
|
39
|
+
item("Korean", "Fermented punch, heat, and high-energy contrast.", ["cuisine", "fermented"], { surprise: 0.42, novelty: 0.3, depth: 0.22 })
|
|
40
|
+
]
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
slug: "meal-moods",
|
|
44
|
+
title: "Meal moods",
|
|
45
|
+
description: "The shape of meal experiences rather than cuisines alone.",
|
|
46
|
+
items: [
|
|
47
|
+
item("Slow tasting menu", "Measured courses and deliberate pacing.", ["meal", "ritual"], { rigor: 0.5, depth: 0.44, structure: 0.28 }),
|
|
48
|
+
item("Street food run", "Immediate, casual, high-flavor decisions.", ["meal", "casual"], { simplicity: 0.38, surprise: 0.24, novelty: 0.18 }),
|
|
49
|
+
item("Family-style spread", "Shared plates and social abundance.", ["meal", "social"], { familiarity: 0.38, depth: 0.1, aesthetics: 0.05 }),
|
|
50
|
+
item("Minimal healthy bowl", "Clean ingredients and low-friction nutrition.", ["meal", "health"], { simplicity: 0.52, structure: 0.25, familiarity: 0.12 }),
|
|
51
|
+
item("Dessert-first stop", "Sugar-forward reward and pleasure seeking.", ["meal", "sweet"], { surprise: 0.22, aesthetics: 0.18, novelty: 0.08 }),
|
|
52
|
+
item("Late-night comfort order", "Warm, heavy, and emotionally settling.", ["meal", "comfort"], { familiarity: 0.56, simplicity: 0.18, structure: -0.08 }),
|
|
53
|
+
item("Brunch cafe", "Relaxed social meal with some indulgence.", ["meal", "social"], { familiarity: 0.28, aesthetics: 0.24, simplicity: 0.1 }),
|
|
54
|
+
item("High-protein prep meal", "Purposeful, repeatable, and utility-first.", ["meal", "utility"], { structure: 0.44, rigor: 0.24, aesthetics: -0.08 })
|
|
55
|
+
]
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
slug: "drink-profiles",
|
|
59
|
+
title: "Drink profiles",
|
|
60
|
+
description: "Starter drink preferences across everyday and social contexts.",
|
|
61
|
+
items: [
|
|
62
|
+
item("Espresso", "Short, strong, focused energy.", ["drink", "coffee"], { rigor: 0.26, depth: 0.22, simplicity: 0.2 }),
|
|
63
|
+
item("Flat white", "Balanced comfort and smooth routine.", ["drink", "coffee"], { familiarity: 0.34, simplicity: 0.12, aesthetics: 0.08 }),
|
|
64
|
+
item("Matcha", "Calm ritual with distinctive vegetal taste.", ["drink", "tea"], { rigor: 0.18, novelty: 0.18, aesthetics: 0.18 }),
|
|
65
|
+
item("Sparkling water", "Neutral refreshment and low-noise choice.", ["drink", "simple"], { simplicity: 0.5, structure: 0.18, surprise: -0.06 }),
|
|
66
|
+
item("Red wine", "Depth, warmth, and social evening texture.", ["drink", "social"], { depth: 0.34, familiarity: 0.18, aesthetics: 0.12 }),
|
|
67
|
+
item("Craft cocktail", "Expressive flavor and deliberate novelty.", ["drink", "cocktail"], { novelty: 0.3, aesthetics: 0.24, surprise: 0.26 }),
|
|
68
|
+
item("Fresh juice", "Bright, easy, and immediate sensory clarity.", ["drink", "fresh"], { simplicity: 0.28, aesthetics: 0.18, familiarity: 0.08 }),
|
|
69
|
+
item("Cold brew", "Longer, smoother caffeine with modern feel.", ["drink", "coffee"], { depth: 0.16, novelty: 0.12, structure: 0.12 })
|
|
70
|
+
]
|
|
71
|
+
}
|
|
72
|
+
],
|
|
73
|
+
activities: [
|
|
74
|
+
{
|
|
75
|
+
slug: "movement-styles",
|
|
76
|
+
title: "Movement styles",
|
|
77
|
+
description: "Starter activity set spanning solo, social, calm, and intense movement.",
|
|
78
|
+
items: [
|
|
79
|
+
item("Long hike", "Steady movement with landscape and time to think.", ["activity", "outdoors"], { depth: 0.3, familiarity: 0.16, structure: 0.1 }),
|
|
80
|
+
item("Heavy lifting", "Controlled intensity and strength progression.", ["activity", "training"], { rigor: 0.48, structure: 0.3, novelty: -0.06 }),
|
|
81
|
+
item("Dance night", "Expressive social movement and rhythm.", ["activity", "social"], { aesthetics: 0.34, surprise: 0.18, novelty: 0.18 }),
|
|
82
|
+
item("Swimming laps", "Quiet, repetitive, body-wide exertion.", ["activity", "solo"], { structure: 0.34, simplicity: 0.18, depth: 0.12 }),
|
|
83
|
+
item("Climbing gym", "Problem solving with physical variety.", ["activity", "problem-solving"], { novelty: 0.28, rigor: 0.18, surprise: 0.16 }),
|
|
84
|
+
item("Yoga flow", "Mobility, breath, and grounded awareness.", ["activity", "recovery"], { simplicity: 0.18, depth: 0.28, aesthetics: 0.16 }),
|
|
85
|
+
item("Team sport", "Competitive rhythm and shared momentum.", ["activity", "competitive"], { surprise: 0.18, familiarity: 0.08, structure: 0.12 }),
|
|
86
|
+
item("Easy walk", "Low-friction movement that fits almost any day.", ["activity", "light"], { simplicity: 0.46, familiarity: 0.28, rigor: -0.08 })
|
|
87
|
+
]
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
slug: "leisure-shapes",
|
|
91
|
+
title: "Leisure shapes",
|
|
92
|
+
description: "How someone likes to spend unstructured or semi-structured free time.",
|
|
93
|
+
items: [
|
|
94
|
+
item("Museum afternoon", "Slow visual attention and curated discovery.", ["leisure", "culture"], { aesthetics: 0.42, depth: 0.28, novelty: 0.16 }),
|
|
95
|
+
item("Board game night", "Social strategy with repeatable structure.", ["leisure", "social"], { structure: 0.34, familiarity: 0.16, rigor: 0.14 }),
|
|
96
|
+
item("Beach day", "Low-pressure pleasure and sensory ease.", ["leisure", "outdoors"], { simplicity: 0.28, familiarity: 0.18, aesthetics: 0.12 }),
|
|
97
|
+
item("Live concert", "High-energy shared atmosphere and intensity.", ["leisure", "music"], { surprise: 0.24, novelty: 0.2, aesthetics: 0.18 }),
|
|
98
|
+
item("Reading retreat", "Quiet immersion and strong internal focus.", ["leisure", "solo"], { depth: 0.46, rigor: 0.12, structure: 0.18 }),
|
|
99
|
+
item("Cooking with friends", "Shared making and practical intimacy.", ["leisure", "social"], { familiarity: 0.28, aesthetics: 0.12, depth: 0.06 }),
|
|
100
|
+
item("Photography walk", "Exploration with a frame and a lens.", ["leisure", "creative"], { aesthetics: 0.36, novelty: 0.16, structure: 0.08 }),
|
|
101
|
+
item("Arcade session", "Fast reward, noise, and playful competition.", ["leisure", "play"], { surprise: 0.24, familiarity: 0.06, novelty: 0.12 })
|
|
102
|
+
]
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
slug: "social-settings",
|
|
106
|
+
title: "Social settings",
|
|
107
|
+
description: "Starter comparisons for preferred social environments.",
|
|
108
|
+
items: [
|
|
109
|
+
item("Small dinner", "Few people, longer depth, real conversation.", ["social", "intimate"], { depth: 0.38, familiarity: 0.22, structure: 0.08 }),
|
|
110
|
+
item("Big house party", "Movement, noise, and many weak ties.", ["social", "high-energy"], { novelty: 0.22, surprise: 0.24, structure: -0.1 }),
|
|
111
|
+
item("Coffee with one person", "Simple, direct, and low-friction contact.", ["social", "one-to-one"], { simplicity: 0.38, familiarity: 0.18, depth: 0.16 }),
|
|
112
|
+
item("Creative workshop", "Meeting people through shared making.", ["social", "creative"], { novelty: 0.2, rigor: 0.08, aesthetics: 0.14 }),
|
|
113
|
+
item("Quiet shared walk", "Parallel presence without constant talking.", ["social", "calm"], { simplicity: 0.24, depth: 0.18, familiarity: 0.12 }),
|
|
114
|
+
item("Networking event", "Instrumental contact and quick positioning.", ["social", "professional"], { structure: 0.28, rigor: 0.1, familiarity: -0.08 }),
|
|
115
|
+
item("Game cafe", "Playful structure and easy social prompts.", ["social", "play"], { structure: 0.18, familiarity: 0.14, surprise: 0.06 }),
|
|
116
|
+
item("Festival crowd", "Large-scale atmosphere and sensory overload.", ["social", "festival"], { novelty: 0.24, surprise: 0.32, aesthetics: 0.12 })
|
|
117
|
+
]
|
|
118
|
+
}
|
|
119
|
+
],
|
|
120
|
+
places: [
|
|
121
|
+
{
|
|
122
|
+
slug: "living-environments",
|
|
123
|
+
title: "Living environments",
|
|
124
|
+
description: "What kinds of places feel right to inhabit day after day.",
|
|
125
|
+
items: [
|
|
126
|
+
item("Dense city center", "Constant access, movement, and friction.", ["place", "city"], { novelty: 0.2, surprise: 0.18, familiarity: -0.08 }),
|
|
127
|
+
item("Quiet suburb", "Predictable comfort and everyday ease.", ["place", "suburb"], { familiarity: 0.42, simplicity: 0.18, surprise: -0.12 }),
|
|
128
|
+
item("Mountain town", "Nature-first calm with smaller rhythms.", ["place", "nature"], { depth: 0.18, familiarity: 0.12, aesthetics: 0.2 }),
|
|
129
|
+
item("Coastal city", "Urban access with water and openness.", ["place", "coast"], { aesthetics: 0.28, novelty: 0.08, familiarity: 0.1 }),
|
|
130
|
+
item("Countryside village", "Low-speed routine and tangible local texture.", ["place", "rural"], { familiarity: 0.36, simplicity: 0.18, structure: 0.06 }),
|
|
131
|
+
item("Creative district", "Visual density, culture, and chance encounters.", ["place", "creative"], { aesthetics: 0.34, novelty: 0.2, surprise: 0.12 }),
|
|
132
|
+
item("University area", "Youthful energy and idea-heavy atmosphere.", ["place", "study"], { rigor: 0.18, novelty: 0.16, structure: 0.08 }),
|
|
133
|
+
item("Remote retreat", "Distance, silence, and deliberate disconnection.", ["place", "retreat"], { depth: 0.34, structure: 0.12, familiarity: 0.08 })
|
|
134
|
+
]
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
slug: "venue-moods",
|
|
138
|
+
title: "Venue moods",
|
|
139
|
+
description: "How a physical venue should feel during work, leisure, or dates.",
|
|
140
|
+
items: [
|
|
141
|
+
item("Minimal quiet cafe", "Airy, calm, and low clutter.", ["venue", "quiet"], { simplicity: 0.4, aesthetics: 0.16, rigor: 0.08 }),
|
|
142
|
+
item("Warm candle bar", "Dark, intimate, and emotionally textured.", ["venue", "date"], { aesthetics: 0.3, depth: 0.2, familiarity: 0.08 }),
|
|
143
|
+
item("Rooftop terrace", "Open skyline, movement, and social energy.", ["venue", "open"], { novelty: 0.18, surprise: 0.14, aesthetics: 0.28 }),
|
|
144
|
+
item("Traditional brasserie", "Classic, grounded, and legible ritual.", ["venue", "classic"], { familiarity: 0.26, rigor: 0.14, aesthetics: 0.12 }),
|
|
145
|
+
item("Industrial warehouse space", "Raw, large, and slightly rough.", ["venue", "industrial"], { novelty: 0.2, surprise: 0.1, aesthetics: 0.08 }),
|
|
146
|
+
item("Garden patio", "Soft natural texture and lighter pace.", ["venue", "garden"], { aesthetics: 0.26, familiarity: 0.16, simplicity: 0.1 }),
|
|
147
|
+
item("Library reading room", "Silence, focus, and institutional calm.", ["venue", "focus"], { rigor: 0.34, structure: 0.2, simplicity: 0.08 }),
|
|
148
|
+
item("Crowded market hall", "Noise, texture, and many micro-decisions.", ["venue", "busy"], { surprise: 0.22, novelty: 0.18, familiarity: -0.06 })
|
|
149
|
+
]
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
slug: "trip-shapes",
|
|
153
|
+
title: "Trip shapes",
|
|
154
|
+
description: "Starter trip archetypes for travel preference rounds.",
|
|
155
|
+
items: [
|
|
156
|
+
item("Museum city break", "Culture-heavy urban weekend.", ["travel", "culture"], { rigor: 0.22, aesthetics: 0.26, depth: 0.12 }),
|
|
157
|
+
item("Food-first trip", "Travel organized around meals and local taste.", ["travel", "food"], { surprise: 0.18, novelty: 0.12, familiarity: 0.04 }),
|
|
158
|
+
item("Remote cabin", "Disconnection, nature, and long quiet hours.", ["travel", "retreat"], { depth: 0.36, familiarity: 0.1, simplicity: 0.12 }),
|
|
159
|
+
item("Beach resort", "Ease, recovery, and low-decision days.", ["travel", "rest"], { simplicity: 0.3, familiarity: 0.16, surprise: -0.08 }),
|
|
160
|
+
item("Backpacking circuit", "Unscripted novelty and flexible movement.", ["travel", "adventure"], { novelty: 0.42, surprise: 0.3, structure: -0.14 }),
|
|
161
|
+
item("Road trip", "Movement, variety, and companion rhythm.", ["travel", "road"], { novelty: 0.2, familiarity: 0.08, surprise: 0.14 }),
|
|
162
|
+
item("Wellness spa stay", "Recovery, body care, and low urgency.", ["travel", "recovery"], { simplicity: 0.18, depth: 0.14, aesthetics: 0.16 }),
|
|
163
|
+
item("Mountain ski week", "Cold air, exertion, and alpine routine.", ["travel", "winter"], { rigor: 0.16, familiarity: 0.04, surprise: 0.08 })
|
|
164
|
+
]
|
|
165
|
+
}
|
|
166
|
+
],
|
|
167
|
+
countries: [
|
|
168
|
+
{
|
|
169
|
+
slug: "countries-to-visit",
|
|
170
|
+
title: "Countries to visit",
|
|
171
|
+
description: "Starter list of countries for broad travel taste calibration.",
|
|
172
|
+
items: [
|
|
173
|
+
item("Japan", "Precision, design, and layered urban-calm contrast.", ["country", "travel"], { rigor: 0.32, aesthetics: 0.28, novelty: 0.18 }),
|
|
174
|
+
item("Italy", "Beauty, food, and familiar sensuality.", ["country", "travel"], { familiarity: 0.28, aesthetics: 0.28, depth: 0.08 }),
|
|
175
|
+
item("France", "Culture, polish, and intellectual density.", ["country", "travel"], { rigor: 0.26, aesthetics: 0.28, depth: 0.12 }),
|
|
176
|
+
item("Portugal", "Light, coast, and slower social warmth.", ["country", "travel"], { simplicity: 0.18, familiarity: 0.16, aesthetics: 0.2 }),
|
|
177
|
+
item("Switzerland", "Order, landscape, and controlled calm.", ["country", "travel"], { rigor: 0.28, structure: 0.18, familiarity: 0.1 }),
|
|
178
|
+
item("Mexico", "Color, flavor, and vivid public life.", ["country", "travel"], { novelty: 0.18, surprise: 0.2, aesthetics: 0.1 }),
|
|
179
|
+
item("South Korea", "Intensity, polish, and fast-moving modernity.", ["country", "travel"], { novelty: 0.24, rigor: 0.14, surprise: 0.16 }),
|
|
180
|
+
item("Iceland", "Extreme landscape and elemental quiet.", ["country", "travel"], { depth: 0.18, novelty: 0.24, aesthetics: 0.2 }),
|
|
181
|
+
item("Brazil", "Scale, rhythm, and social energy.", ["country", "travel"], { surprise: 0.24, novelty: 0.2, familiarity: -0.02 }),
|
|
182
|
+
item("New Zealand", "Outdoor beauty and easy breathing room.", ["country", "travel"], { simplicity: 0.1, aesthetics: 0.22, familiarity: 0.08 })
|
|
183
|
+
]
|
|
184
|
+
},
|
|
185
|
+
{
|
|
186
|
+
slug: "countries-to-live",
|
|
187
|
+
title: "Countries to live",
|
|
188
|
+
description: "Starter list oriented around lifestyle fit rather than tourism only.",
|
|
189
|
+
items: [
|
|
190
|
+
item("Netherlands", "Bikeable structure and modern social order.", ["country", "living"], { structure: 0.24, simplicity: 0.14, familiarity: 0.12 }),
|
|
191
|
+
item("Spain", "Climate, street life, and flexible rhythm.", ["country", "living"], { familiarity: 0.18, surprise: 0.08, aesthetics: 0.18 }),
|
|
192
|
+
item("Germany", "Reliability, systems, and predictable function.", ["country", "living"], { rigor: 0.32, structure: 0.22, novelty: -0.08 }),
|
|
193
|
+
item("Canada", "Space, stability, and broad daily ease.", ["country", "living"], { familiarity: 0.2, simplicity: 0.16, surprise: -0.02 }),
|
|
194
|
+
item("Singapore", "Efficiency, density, and tightly managed order.", ["country", "living"], { rigor: 0.34, structure: 0.28, novelty: 0.08 }),
|
|
195
|
+
item("Australia", "Space, sun, and practical informality.", ["country", "living"], { simplicity: 0.14, familiarity: 0.18, aesthetics: 0.12 }),
|
|
196
|
+
item("Sweden", "Calm systems and restrained design culture.", ["country", "living"], { simplicity: 0.18, rigor: 0.16, aesthetics: 0.18 }),
|
|
197
|
+
item("United States", "Scale, choice, and uneven but large opportunity.", ["country", "living"], { novelty: 0.18, surprise: 0.1, depth: 0.04 })
|
|
198
|
+
]
|
|
199
|
+
}
|
|
200
|
+
],
|
|
201
|
+
fashion: [
|
|
202
|
+
{
|
|
203
|
+
slug: "silhouettes",
|
|
204
|
+
title: "Silhouettes",
|
|
205
|
+
description: "Starter clothing silhouettes and styling directions.",
|
|
206
|
+
items: [
|
|
207
|
+
item("Tailored", "Clean lines and structured fit.", ["fashion", "shape"], { rigor: 0.3, structure: 0.3, aesthetics: 0.18 }),
|
|
208
|
+
item("Relaxed oversized", "Volume, ease, and unforced confidence.", ["fashion", "shape"], { simplicity: 0.14, aesthetics: 0.16, familiarity: 0.08 }),
|
|
209
|
+
item("Athletic fitted", "Performance-first body emphasis.", ["fashion", "shape"], { rigor: 0.16, structure: 0.18, surprise: -0.02 }),
|
|
210
|
+
item("Soft draped", "Flowing texture and gentler movement.", ["fashion", "shape"], { aesthetics: 0.24, depth: 0.08, structure: -0.08 }),
|
|
211
|
+
item("Minimal monochrome", "Low-noise uniformity and clarity.", ["fashion", "minimal"], { simplicity: 0.42, rigor: 0.18, aesthetics: 0.14 }),
|
|
212
|
+
item("Eclectic layered", "Contrast, texture, and visible experimentation.", ["fashion", "bold"], { novelty: 0.3, surprise: 0.24, aesthetics: 0.18 }),
|
|
213
|
+
item("Classic elegant", "Timeless pieces and polished proportion.", ["fashion", "classic"], { familiarity: 0.18, rigor: 0.22, aesthetics: 0.26 }),
|
|
214
|
+
item("Streetwear graphic", "Bold statements and youth-coded energy.", ["fashion", "streetwear"], { surprise: 0.24, novelty: 0.2, aesthetics: 0.14 })
|
|
215
|
+
]
|
|
216
|
+
},
|
|
217
|
+
{
|
|
218
|
+
slug: "materials-and-feel",
|
|
219
|
+
title: "Materials and feel",
|
|
220
|
+
description: "How clothing and accessories should feel on the body and in the eye.",
|
|
221
|
+
items: [
|
|
222
|
+
item("Linen", "Light, breathable, and slightly imperfect.", ["fashion", "material"], { simplicity: 0.18, aesthetics: 0.18, familiarity: 0.08 }),
|
|
223
|
+
item("Leather", "Dense, strong, and assertive.", ["fashion", "material"], { rigor: 0.14, depth: 0.12, aesthetics: 0.16 }),
|
|
224
|
+
item("Cashmere", "Soft luxury and calm warmth.", ["fashion", "material"], { familiarity: 0.12, aesthetics: 0.2, depth: 0.08 }),
|
|
225
|
+
item("Denim", "Durable everyday structure.", ["fashion", "material"], { familiarity: 0.28, structure: 0.1, simplicity: 0.08 }),
|
|
226
|
+
item("Technical fabric", "Performance, utility, and modern function.", ["fashion", "material"], { rigor: 0.22, structure: 0.24, novelty: 0.06 }),
|
|
227
|
+
item("Silk", "Fluid elegance and visual sheen.", ["fashion", "material"], { aesthetics: 0.28, depth: 0.08, surprise: 0.06 }),
|
|
228
|
+
item("Wool", "Substance, warmth, and quiet seriousness.", ["fashion", "material"], { rigor: 0.18, familiarity: 0.18, depth: 0.1 }),
|
|
229
|
+
item("Mesh or sheer", "Light reveal and visual edge.", ["fashion", "material"], { novelty: 0.22, surprise: 0.2, aesthetics: 0.14 })
|
|
230
|
+
]
|
|
231
|
+
},
|
|
232
|
+
{
|
|
233
|
+
slug: "color-palettes",
|
|
234
|
+
title: "Color palettes",
|
|
235
|
+
description: "Starter palette preferences for personal style.",
|
|
236
|
+
items: [
|
|
237
|
+
item("All black", "Sharp, easy, and visually controlled.", ["fashion", "color"], { simplicity: 0.3, rigor: 0.14, aesthetics: 0.16 }),
|
|
238
|
+
item("Earth tones", "Warm natural grounding without loud contrast.", ["fashion", "color"], { familiarity: 0.18, depth: 0.12, aesthetics: 0.14 }),
|
|
239
|
+
item("Crisp neutrals", "Light, calm, and quietly polished.", ["fashion", "color"], { simplicity: 0.26, aesthetics: 0.18, structure: 0.08 }),
|
|
240
|
+
item("Jewel tones", "Rich saturation and expressive elegance.", ["fashion", "color"], { aesthetics: 0.24, depth: 0.14, surprise: 0.08 }),
|
|
241
|
+
item("Pastels", "Soft approachability and lower visual aggression.", ["fashion", "color"], { simplicity: 0.12, familiarity: 0.1, aesthetics: 0.16 }),
|
|
242
|
+
item("High-contrast brights", "Immediate attention and energy.", ["fashion", "color"], { novelty: 0.22, surprise: 0.22, aesthetics: 0.12 }),
|
|
243
|
+
item("Muted cool tones", "Composure and distance without dullness.", ["fashion", "color"], { rigor: 0.12, depth: 0.12, aesthetics: 0.18 }),
|
|
244
|
+
item("Warm sunset tones", "Playful warmth and social softness.", ["fashion", "color"], { familiarity: 0.12, aesthetics: 0.18, surprise: 0.06 })
|
|
245
|
+
]
|
|
246
|
+
}
|
|
247
|
+
],
|
|
248
|
+
people: [
|
|
249
|
+
{
|
|
250
|
+
slug: "body-types",
|
|
251
|
+
title: "Body types",
|
|
252
|
+
description: "Editable starter list for physical attraction or aesthetic preference rounds.",
|
|
253
|
+
items: [
|
|
254
|
+
item("Athletic", "Defined, active, and performance-coded build.", ["people", "body-type"], { rigor: 0.18, structure: 0.12, familiarity: 0.04 }),
|
|
255
|
+
item("Lean", "Light, long, and minimal visual density.", ["people", "body-type"], { simplicity: 0.14, aesthetics: 0.12, familiarity: 0.02 }),
|
|
256
|
+
item("Curvy", "Soft contrast and fuller shape.", ["people", "body-type"], { depth: 0.1, aesthetics: 0.18, familiarity: 0.08 }),
|
|
257
|
+
item("Broad-shouldered", "Presence through frame and width.", ["people", "body-type"], { rigor: 0.08, structure: 0.08, depth: 0.04 }),
|
|
258
|
+
item("Compact", "Smaller scale and tighter physical silhouette.", ["people", "body-type"], { simplicity: 0.12, familiarity: 0.06, surprise: -0.02 }),
|
|
259
|
+
item("Tall and lanky", "Length, ease, and slight asymmetry.", ["people", "body-type"], { novelty: 0.1, aesthetics: 0.14, surprise: 0.04 }),
|
|
260
|
+
item("Soft", "Gentler contours and lower visual hardness.", ["people", "body-type"], { familiarity: 0.12, depth: 0.06, simplicity: 0.02 }),
|
|
261
|
+
item("Sculpted", "High definition and deliberate body care.", ["people", "body-type"], { rigor: 0.14, aesthetics: 0.12, structure: 0.08 })
|
|
262
|
+
]
|
|
263
|
+
},
|
|
264
|
+
{
|
|
265
|
+
slug: "presence-styles",
|
|
266
|
+
title: "Presence styles",
|
|
267
|
+
description: "How someone's vibe or social gravity tends to read.",
|
|
268
|
+
items: [
|
|
269
|
+
item("Warm and easy", "Inviting, soft, and quickly reassuring.", ["people", "presence"], { familiarity: 0.28, simplicity: 0.12, depth: 0.06 }),
|
|
270
|
+
item("Quiet intense", "Controlled energy with hidden depth.", ["people", "presence"], { depth: 0.28, rigor: 0.12, surprise: 0.06 }),
|
|
271
|
+
item("Playful chaotic", "Surprising, lively, and less predictable.", ["people", "presence"], { novelty: 0.22, surprise: 0.24, structure: -0.12 }),
|
|
272
|
+
item("Elegant composed", "Measured, polished, and socially legible.", ["people", "presence"], { rigor: 0.18, structure: 0.14, aesthetics: 0.2 }),
|
|
273
|
+
item("Bold magnetic", "High-force attention and visible confidence.", ["people", "presence"], { surprise: 0.18, aesthetics: 0.14, novelty: 0.08 }),
|
|
274
|
+
item("Nerdy focused", "Interest-led, idea-heavy, and specific.", ["people", "presence"], { rigor: 0.16, depth: 0.18, familiarity: 0.04 }),
|
|
275
|
+
item("Grounded practical", "Stable, plainspoken, and useful.", ["people", "presence"], { simplicity: 0.22, structure: 0.12, familiarity: 0.16 }),
|
|
276
|
+
item("Mysterious artistic", "Distance, ambiguity, and sensory pull.", ["people", "presence"], { aesthetics: 0.24, depth: 0.22, surprise: 0.14 })
|
|
277
|
+
]
|
|
278
|
+
},
|
|
279
|
+
{
|
|
280
|
+
slug: "conversation-styles",
|
|
281
|
+
title: "Conversation styles",
|
|
282
|
+
description: "Preferred ways of talking and relating.",
|
|
283
|
+
items: [
|
|
284
|
+
item("Direct and concise", "Short lines, low ambiguity, fast decisions.", ["people", "conversation"], { simplicity: 0.34, rigor: 0.16, structure: 0.18 }),
|
|
285
|
+
item("Thoughtful and deep", "Longer reflection and layered meaning.", ["people", "conversation"], { depth: 0.36, rigor: 0.1, familiarity: 0.06 }),
|
|
286
|
+
item("Funny and teasing", "Play built into the exchange.", ["people", "conversation"], { surprise: 0.2, familiarity: 0.1, novelty: 0.06 }),
|
|
287
|
+
item("Soft and validating", "Warmth, gentleness, and safety cues.", ["people", "conversation"], { familiarity: 0.24, simplicity: 0.08, depth: 0.06 }),
|
|
288
|
+
item("Debate-heavy", "Argument, edge, and intellectual sparring.", ["people", "conversation"], { rigor: 0.24, surprise: 0.08, structure: 0.14 }),
|
|
289
|
+
item("Story-rich", "Narrative, detail, and associative movement.", ["people", "conversation"], { depth: 0.22, novelty: 0.08, structure: -0.04 }),
|
|
290
|
+
item("Flirtatious", "Charged ambiguity and playful signal testing.", ["people", "conversation"], { surprise: 0.24, aesthetics: 0.08, familiarity: -0.02 }),
|
|
291
|
+
item("Calm and practical", "Useful, steady, and low-drama communication.", ["people", "conversation"], { simplicity: 0.24, structure: 0.12, familiarity: 0.12 })
|
|
292
|
+
]
|
|
293
|
+
}
|
|
294
|
+
],
|
|
295
|
+
media: [
|
|
296
|
+
{
|
|
297
|
+
slug: "film-moods",
|
|
298
|
+
title: "Film moods",
|
|
299
|
+
description: "Starter film and series mood preferences.",
|
|
300
|
+
items: [
|
|
301
|
+
item("Quiet drama", "Human-scale tension and emotional precision.", ["media", "film"], { depth: 0.32, rigor: 0.12, familiarity: 0.04 }),
|
|
302
|
+
item("Fast thriller", "Pressure, pace, and decisive momentum.", ["media", "film"], { surprise: 0.18, structure: 0.18, simplicity: 0.08 }),
|
|
303
|
+
item("Weird arthouse", "Ambiguity, visual intention, and novelty.", ["media", "film"], { novelty: 0.34, aesthetics: 0.24, surprise: 0.16 }),
|
|
304
|
+
item("Romantic comedy", "Ease, charm, and reliable emotional lift.", ["media", "film"], { familiarity: 0.28, simplicity: 0.12, aesthetics: 0.08 }),
|
|
305
|
+
item("Epic sci-fi", "Scale, systems, and imagined worlds.", ["media", "film"], { novelty: 0.22, depth: 0.18, rigor: 0.12 }),
|
|
306
|
+
item("Documentary", "Reality, learning, and structured attention.", ["media", "film"], { rigor: 0.26, depth: 0.14, structure: 0.1 }),
|
|
307
|
+
item("Animated style piece", "Visual invention and tonal freedom.", ["media", "film"], { aesthetics: 0.26, surprise: 0.14, novelty: 0.18 }),
|
|
308
|
+
item("Comfort rewatch", "Low-risk familiarity and emotional ease.", ["media", "film"], { familiarity: 0.34, simplicity: 0.12, novelty: -0.08 })
|
|
309
|
+
]
|
|
310
|
+
},
|
|
311
|
+
{
|
|
312
|
+
slug: "reading-modes",
|
|
313
|
+
title: "Reading modes",
|
|
314
|
+
description: "Starter list for how someone likes to read and learn.",
|
|
315
|
+
items: [
|
|
316
|
+
item("Dense nonfiction", "Structured ideas and argument.", ["media", "reading"], { rigor: 0.38, depth: 0.24, structure: 0.18 }),
|
|
317
|
+
item("Literary fiction", "Language, psychology, and atmosphere.", ["media", "reading"], { depth: 0.34, aesthetics: 0.16, surprise: 0.06 }),
|
|
318
|
+
item("Fast mystery", "Compulsion, pace, and narrative hooks.", ["media", "reading"], { simplicity: 0.08, surprise: 0.16, structure: 0.14 }),
|
|
319
|
+
item("Poetry", "Compression, image, and resonant ambiguity.", ["media", "reading"], { aesthetics: 0.26, depth: 0.22, simplicity: -0.04 }),
|
|
320
|
+
item("Long fantasy", "World-building and immersive continuity.", ["media", "reading"], { depth: 0.26, novelty: 0.14, familiarity: 0.08 }),
|
|
321
|
+
item("Essays", "Compact thought with personal voice.", ["media", "reading"], { rigor: 0.18, depth: 0.18, simplicity: 0.08 }),
|
|
322
|
+
item("Practical guides", "Actionable knowledge and direct utility.", ["media", "reading"], { simplicity: 0.34, structure: 0.2, rigor: 0.12 }),
|
|
323
|
+
item("Comics and graphic novels", "Visual pacing and low-friction narrative.", ["media", "reading"], { aesthetics: 0.2, simplicity: 0.16, surprise: 0.08 })
|
|
324
|
+
]
|
|
325
|
+
},
|
|
326
|
+
{
|
|
327
|
+
slug: "music-energy",
|
|
328
|
+
title: "Music energy",
|
|
329
|
+
description: "Starter music preference rounds across energy and texture.",
|
|
330
|
+
items: [
|
|
331
|
+
item("Ambient", "Low-beat atmosphere and spacious calm.", ["media", "music"], { depth: 0.2, simplicity: 0.18, familiarity: 0.04 }),
|
|
332
|
+
item("Jazz", "Improvisation, texture, and complexity.", ["media", "music"], { rigor: 0.22, depth: 0.18, surprise: 0.12 }),
|
|
333
|
+
item("Pop", "Immediate hooks and wide accessibility.", ["media", "music"], { familiarity: 0.24, simplicity: 0.14, surprise: 0.02 }),
|
|
334
|
+
item("Electronic club", "Pulse, repetition, and physical momentum.", ["media", "music"], { surprise: 0.16, structure: 0.08, novelty: 0.12 }),
|
|
335
|
+
item("Indie folk", "Warm narrative intimacy and acoustic texture.", ["media", "music"], { familiarity: 0.16, depth: 0.12, aesthetics: 0.1 }),
|
|
336
|
+
item("Classical", "Formal shape and layered composition.", ["media", "music"], { rigor: 0.34, depth: 0.16, structure: 0.22 }),
|
|
337
|
+
item("Hip-hop", "Rhythm, edge, and verbal force.", ["media", "music"], { surprise: 0.12, familiarity: 0.04, structure: 0.08 }),
|
|
338
|
+
item("Metal", "Intensity, aggression, and cathartic force.", ["media", "music"], { surprise: 0.2, depth: 0.08, novelty: 0.08 })
|
|
339
|
+
]
|
|
340
|
+
}
|
|
341
|
+
],
|
|
342
|
+
tools: [
|
|
343
|
+
{
|
|
344
|
+
slug: "workflow-surfaces",
|
|
345
|
+
title: "Workflow surfaces",
|
|
346
|
+
description: "Starter productivity and making surfaces.",
|
|
347
|
+
items: [
|
|
348
|
+
item("Paper notebook", "Physical, focused, and low-interruption.", ["tools", "workflow"], { simplicity: 0.34, familiarity: 0.2, depth: 0.08 }),
|
|
349
|
+
item("Whiteboard wall", "Spatial thinking and visible iteration.", ["tools", "workflow"], { novelty: 0.12, structure: 0.06, surprise: 0.04 }),
|
|
350
|
+
item("Kanban board", "State-based flow and visible queues.", ["tools", "workflow"], { structure: 0.34, rigor: 0.16, simplicity: 0.1 }),
|
|
351
|
+
item("Text editor", "Fast raw expression with low chrome.", ["tools", "workflow"], { simplicity: 0.28, rigor: 0.14, depth: 0.08 }),
|
|
352
|
+
item("Visual canvas", "Blocks, cards, and freer arrangement.", ["tools", "workflow"], { aesthetics: 0.16, novelty: 0.12, structure: -0.04 }),
|
|
353
|
+
item("Spreadsheet", "Cells, precision, and direct manipulation.", ["tools", "workflow"], { rigor: 0.34, structure: 0.22, aesthetics: -0.08 }),
|
|
354
|
+
item("Voice notes", "Faster capture when writing is too slow.", ["tools", "workflow"], { simplicity: 0.18, surprise: 0.06, structure: -0.08 }),
|
|
355
|
+
item("Camera roll capture", "Visual fragments first, organization later.", ["tools", "workflow"], { novelty: 0.1, aesthetics: 0.14, structure: -0.1 })
|
|
356
|
+
]
|
|
357
|
+
},
|
|
358
|
+
{
|
|
359
|
+
slug: "capture-modes",
|
|
360
|
+
title: "Capture modes",
|
|
361
|
+
description: "Starter list for how ideas or evidence should be captured.",
|
|
362
|
+
items: [
|
|
363
|
+
item("Typed bullet list", "Fast, direct, and easy to scan later.", ["tools", "capture"], { simplicity: 0.36, structure: 0.18, rigor: 0.08 }),
|
|
364
|
+
item("Longform note", "Full context and narrative memory.", ["tools", "capture"], { depth: 0.34, rigor: 0.1, structure: 0.08 }),
|
|
365
|
+
item("Voice memo", "Spoken immediacy and emotional tone.", ["tools", "capture"], { simplicity: 0.12, familiarity: 0.04, structure: -0.08 }),
|
|
366
|
+
item("Photo with caption", "Fast evidence with minimal text.", ["tools", "capture"], { aesthetics: 0.14, simplicity: 0.18, structure: -0.02 }),
|
|
367
|
+
item("Template form", "Consistent fields and auditability.", ["tools", "capture"], { rigor: 0.26, structure: 0.28, simplicity: 0.12 }),
|
|
368
|
+
item("Mind map", "Associative structure and quick branching.", ["tools", "capture"], { novelty: 0.14, depth: 0.1, structure: 0.02 }),
|
|
369
|
+
item("Checklists", "Execution first and little ambiguity.", ["tools", "capture"], { simplicity: 0.28, structure: 0.22, rigor: 0.08 }),
|
|
370
|
+
item("Timeline log", "Sequence, causality, and event fidelity.", ["tools", "capture"], { rigor: 0.2, depth: 0.08, structure: 0.22 })
|
|
371
|
+
]
|
|
372
|
+
}
|
|
373
|
+
],
|
|
374
|
+
custom: [
|
|
375
|
+
{
|
|
376
|
+
slug: "ambient-preferences",
|
|
377
|
+
title: "Ambient preferences",
|
|
378
|
+
description: "General starter set for the mood of spaces and experiences.",
|
|
379
|
+
items: [
|
|
380
|
+
item("Quiet", "Low stimulus and more room to think.", ["custom", "ambient"], { simplicity: 0.24, depth: 0.12, surprise: -0.08 }),
|
|
381
|
+
item("Lively", "Movement, people, and visible energy.", ["custom", "ambient"], { novelty: 0.12, surprise: 0.16, familiarity: 0.02 }),
|
|
382
|
+
item("Structured", "Predictable shape and clear expectations.", ["custom", "ambient"], { structure: 0.3, rigor: 0.12, simplicity: 0.08 }),
|
|
383
|
+
item("Loose and spontaneous", "More drift, less script.", ["custom", "ambient"], { novelty: 0.16, surprise: 0.2, structure: -0.18 }),
|
|
384
|
+
item("Minimal", "Reduced clutter and fewer competing signals.", ["custom", "ambient"], { simplicity: 0.36, aesthetics: 0.1, rigor: 0.08 }),
|
|
385
|
+
item("Layered and textured", "More sensory detail and complexity.", ["custom", "ambient"], { depth: 0.16, aesthetics: 0.18, surprise: 0.08 }),
|
|
386
|
+
item("Familiar", "Known terrain and easy prediction.", ["custom", "ambient"], { familiarity: 0.38, novelty: -0.12, surprise: -0.08 }),
|
|
387
|
+
item("Surprising", "Fresh signal and interruption of routine.", ["custom", "ambient"], { novelty: 0.3, surprise: 0.3, familiarity: -0.16 })
|
|
388
|
+
]
|
|
389
|
+
},
|
|
390
|
+
{
|
|
391
|
+
slug: "social-modes",
|
|
392
|
+
title: "Social modes",
|
|
393
|
+
description: "General starter set for how interaction should feel.",
|
|
394
|
+
items: [
|
|
395
|
+
item("Intimate", "Small scale and high trust.", ["custom", "social"], { depth: 0.24, familiarity: 0.18, structure: 0.06 }),
|
|
396
|
+
item("Playful", "Lightness and fast back-and-forth.", ["custom", "social"], { surprise: 0.16, novelty: 0.08, familiarity: 0.04 }),
|
|
397
|
+
item("Intellectual", "Ideas and argument matter most.", ["custom", "social"], { rigor: 0.22, depth: 0.16, structure: 0.12 }),
|
|
398
|
+
item("Romantic", "Charge, softness, and attention.", ["custom", "social"], { aesthetics: 0.16, depth: 0.12, surprise: 0.1 }),
|
|
399
|
+
item("Calm", "Lower pressure and more emotional space.", ["custom", "social"], { simplicity: 0.18, familiarity: 0.14, surprise: -0.06 }),
|
|
400
|
+
item("High-energy", "Momentum, noise, and visible enthusiasm.", ["custom", "social"], { novelty: 0.08, surprise: 0.18, structure: -0.04 }),
|
|
401
|
+
item("Reliable", "Trustworthy, repeatable, and stable.", ["custom", "social"], { familiarity: 0.24, structure: 0.14, rigor: 0.08 }),
|
|
402
|
+
item("Mysterious", "Ambiguity and slower reveal.", ["custom", "social"], { depth: 0.18, surprise: 0.16, familiarity: -0.08 })
|
|
403
|
+
]
|
|
404
|
+
}
|
|
405
|
+
]
|
|
406
|
+
};
|
|
407
|
+
export function getPreferenceCatalogSeeds(domain) {
|
|
408
|
+
return PREFERENCE_CATALOG_SEEDS[domain] ?? [];
|
|
409
|
+
}
|