openfeelz 0.9.5 → 0.9.6

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.
Files changed (2) hide show
  1. package/README.md +30 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -26,7 +26,7 @@ Most agents vibes-check each message independently and forget everything between
26
26
  - **LLM Classification** -- Automatically classify user/agent emotions via OpenAI-compatible models
27
27
  - **Web Dashboard** -- Glassmorphism UI at `/emotion-dashboard`
28
28
  - **MCP Server** -- Expose emotional state to Cursor, Claude Desktop, etc.
29
- - **CLI Tools** -- `openclaw emotion status`, `reset`, `personality`, `history`, `decay`
29
+ - **CLI Tools** -- `openclaw emotion status`, `reset`, `personality`, `history`, `decay`, **`configure`** (interactive wizard)
30
30
 
31
31
  ## Installation
32
32
 
@@ -250,8 +250,37 @@ openclaw emotion reset # Reset all to baseline
250
250
  openclaw emotion reset --dimensions pleasure,arousal
251
251
  openclaw emotion history --limit 20 # Recent stimuli
252
252
  openclaw emotion decay --dimension pleasure --rate 0.05
253
+ openclaw emotion configure # Interactive configuration wizard (see below)
253
254
  ```
254
255
 
256
+ ### Configuration wizard: `openclaw emotion configure`
257
+
258
+ The **configuration wizard** is the CLI option for guided setup. It runs an interactive (TUI-style) flow where you can:
259
+
260
+ - **a) Choose a preset** — Pick one of 10 famous-personality presets (OCEAN profiles based on biographical research). Each option is listed with a short explanation. The wizard applies that preset’s personality to your agent’s state.
261
+ - **b) Customize** — Skip presets and go straight to custom settings, or after picking a preset you can optionally configure model, decay half-life, rumination, context injection, and dashboard.
262
+
263
+ So: run **`openclaw emotion configure`** to open the wizard; it will ask whether you want a **preset** (with explanations) or **custom**, then optionally walk through key config fields with validation and help text.
264
+
265
+ #### Default personalities in the picker
266
+
267
+ The preset picker offers these 10 options (diverse across time, region, and domain; OCEAN values from biographical/psychological literature, see `docs/personality-presets-research.md`):
268
+
269
+ | Preset | Description |
270
+ |--------|-------------|
271
+ | **Albert Einstein** | Theoretical physicist (Germany/US, 20th c.) — high openness & conscientiousness, introspective. |
272
+ | **Marie Curie** | Physicist and chemist (Poland/France, 19th–20th c.) — perseverance, solitary focus. |
273
+ | **Nelson Mandela** | Anti-apartheid leader, President of South Africa (20th c.) — high agreeableness & extraversion, emotional stability. |
274
+ | **Wangari Maathai** | Environmentalist and Nobel Peace laureate (Kenya, 20th c.) — Green Belt Movement; visionary, resilient. |
275
+ | **Frida Kahlo** | Painter (Mexico, 20th c.) — high openness and emotional intensity. |
276
+ | **Confucius** | Philosopher and teacher (Ancient China) — high conscientiousness & agreeableness, emphasis on li and ren. |
277
+ | **Simón Bolívar** | Liberator and revolutionary (South America, 19th c.) — visionary, charismatic; driven, mood swings. |
278
+ | **Sitting Bull** | Lakota leader and resistance figure (Indigenous Americas, 19th c.) — steadfast, defiant sovereignty, calm under pressure. |
279
+ | **Sejong the Great** | King and scholar, creator of Hangul (Korea, 15th c.) — scholarly, benevolent, humble. |
280
+ | **Rabindranath Tagore** | Poet and philosopher, Nobel laureate (India, 20th c.) — very high openness and agreeableness. |
281
+
282
+ Choosing a preset updates the agent’s OCEAN personality (and thus baselines and decay rates). You can still edit config manually or via the OpenClaw web UI.
283
+
255
284
  ## Dashboard
256
285
 
257
286
  `http://localhost:<gateway-port>/emotion-dashboard`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openfeelz",
3
- "version": "0.9.5",
3
+ "version": "0.9.6",
4
4
  "description": "PAD + Ekman + OCEAN emotional model plugin for OpenClaw agents",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",