@aman_asmuei/aman-agent 0.25.0 → 0.27.0

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 CHANGED
@@ -47,7 +47,7 @@
47
47
  <details>
48
48
  <summary><strong>Table of Contents</strong></summary>
49
49
 
50
- - [What's New](#whats-new-in-v0240)
50
+ - [What's New](#whats-new-in-v0270)
51
51
  - [The Problem](#the-problem)
52
52
  - [The Solution](#the-solution)
53
53
  - [Quick Start](#quick-start)
@@ -80,26 +80,38 @@
80
80
 
81
81
  ---
82
82
 
83
- ## What's New in v0.24.0
83
+ ## What's New in v0.27.0
84
84
 
85
- > **Session telemetry, post-mortem analysis, and a smarter feedback loop.**
85
+ > **Your agent remembers you across sessions.**
86
86
 
87
- The agent now passively observes what happens during a sessiontool calls, file changes, sentiment shifts, blockers, milestonesand on session end can generate a structured post-mortem with actionable patterns stored back as memories.
87
+ Every session now contributes to a persistent **dynamic user model**trust score, sentiment baseline, energy patterns, frustration correlationsall computed from real session signals. The next session starts calibrated to *your* actual patterns instead of generic time-based heuristics. Zero new LLM calls.
88
88
 
89
89
  | Feature | What it does |
90
90
  |:---|:---|
91
- | **Observation system** | Passive event capture: tool calls, errors, file changes, sentiment, topic shifts, blockers, milestones — all written to JSONL, never blocking the user |
92
- | **Post-mortem reports** | LLM-generated session analysis with goals, completed work, blockers, decisions, sentiment arc, recurring patterns, and recommendations |
93
- | **Smart auto-trigger** | Reports generate automatically when sessions hit ≥3 tool errors, ≥2 blockers, &gt;60min, abandoned plan steps, or sustained frustration |
94
- | **Pattern memory loop** | Recurring patterns from post-mortems are stored as `pattern` memories your AI learns from its own session history |
95
- | **`/observe` dashboard** | Live session stats: tool calls, errors, files changed, blockers, milestones, topic shifts |
96
- | **`/postmortem` commands** | Generate now, view last, list all, or `--since 7d` for cross-session trend analysis |
97
- | **Eval reliability fix** | `/eval report` now uses `fs.existsSync` instead of an ANSI-sensitive prefix check |
98
- | **CI dependency stability** | Switched `npm ci` `npm install` to handle platform-specific native deps |
91
+ | **Dynamic user model** | Cross-session profile: trust (EMA), sentiment baseline, energy distribution, engagement trends |
92
+ | **Feed-forward** | Next session starts with personalized energy/mode overrides based on your history |
93
+ | **Trust scoring** | 0–100% trust from explicit ratings + implicit signals (frustration, blockers, milestones) |
94
+ | **Frustration correlations** | Pearson r analysis: are tool errors, long sessions, or late nights causing frustration? |
95
+ | **Nudge tracking** | Tracks which wellbeing nudges fire and session quality after data for adaptive nudging |
96
+ | **`/identity dynamics`** | View your user model: trust, sentiment trend, preferred time, avg session length |
97
+ | **`/identity dynamics --json`** | Raw JSON dump of the full user model |
98
+ | **`/identity dynamics --reset`** | Start fresh delete the model and rebuild |
99
+ | **acore Dynamics sync** | Trust %, session count, and sentiment trend written to `## Dynamics` in core.md |
99
100
 
100
101
  <details>
101
102
  <summary><strong>Highlights from earlier releases</strong></summary>
102
103
 
104
+ **v0.26 — Skill crystallization**
105
+ - Post-mortems identify reusable procedures → opt-in prompt → saved as auto-triggering skills
106
+ - Runtime trigger matching, `/skills crystallize`, `/skills list --auto`
107
+ - Post-mortem JSON sidecar for lossless re-parsing
108
+
109
+ **v0.24 — Observation & post-mortem**
110
+ - Passive session telemetry (tool calls, errors, file changes, sentiment, blockers)
111
+ - LLM-generated post-mortem reports with smart auto-trigger
112
+ - Pattern memory loop — the agent learns from its own session history
113
+ - `/observe` dashboard, `/postmortem` commands
114
+
103
115
  **v0.18 — User onboarding**
104
116
  - Interactive first-run setup capturing name, role, expertise, communication style
105
117
  - 13 showcase templates (fitness, freelancer, Muslim, finance, etc.)
@@ -1040,11 +1052,11 @@ On session end, if any smart trigger fires (≥3 tool errors, ≥2 blockers, &gt
1040
1052
  | `/profile` | Your profile + agent profiles `[me\|edit\|setup\|create\|list\|show\|delete]` |
1041
1053
  | `/delegate` | Delegate task to a profile `[<profile> <task>\|pipeline]` |
1042
1054
  | `/team` | Manage agent teams `[create\|run\|list\|show\|delete]` |
1043
- | `/identity` | View identity `[update <section>]` |
1055
+ | `/identity` | View identity `[update <section>]` `[dynamics [--json\|--reset]]` |
1044
1056
  | `/rules` | View guardrails `[add\|remove\|toggle ...]` |
1045
1057
  | `/workflows` | View workflows `[add\|remove ...]` |
1046
1058
  | `/tools` | View tools `[add\|remove ...]` |
1047
- | `/skills` | View skills `[install\|uninstall ...]` |
1059
+ | `/skills` | View skills `[install\|uninstall\|crystallize\|list --auto]` |
1048
1060
  | `/eval` | View evaluation `[milestone ...]` |
1049
1061
  | `/memory` | View memories `[search\|clear\|timeline]` |
1050
1062
  | `/observe` | Live session telemetry dashboard `[pause\|resume]` |