@aman_asmuei/aman-agent 0.26.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-v0260)
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,24 +80,32 @@
80
80
 
81
81
  ---
82
82
 
83
- ## What's New in v0.26.0
83
+ ## What's New in v0.27.0
84
84
 
85
- > **Your agent learns new skills from its own sessions.**
85
+ > **Your agent remembers you across sessions.**
86
86
 
87
- When a post-mortem runs, the LLM now proposes 0–2 reusable procedures it noticed you demonstrated. You accept or reject each one via a simple prompt at session end. Accepted skills are written to `~/.askill/skills.md` with embedded trigger keywords and **auto-activate** on subsequent sessions — zero extra LLM calls.
87
+ Every session now contributes to a persistent **dynamic user model** trust score, sentiment baseline, energy patterns, frustration correlations all 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
- | **Skill crystallization** | Post-mortems identify reusable procedures opt-in prompt saved as auto-triggering skills |
92
- | **Runtime trigger matching** | Crystallized skills merge with hardcoded skill triggers keyword match fires both |
93
- | **`/skills crystallize`** | Manually crystallize skills from the most recent post-mortem JSON sidecar |
94
- | **`/skills list --auto`** | List all crystallized skills with dates, confidence, and trigger keywords |
95
- | **Post-mortem JSON sidecar** | Every post-mortem now writes a `.json` alongside the `.md` for lossless re-parsing |
96
- | **Extended LLM schema** | Post-mortem prompt includes crystallization rules narrow, reusable, confidence-gated |
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 |
97
100
 
98
101
  <details>
99
102
  <summary><strong>Highlights from earlier releases</strong></summary>
100
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
+
101
109
  **v0.24 — Observation & post-mortem**
102
110
  - Passive session telemetry (tool calls, errors, file changes, sentiment, blockers)
103
111
  - LLM-generated post-mortem reports with smart auto-trigger
@@ -1044,7 +1052,7 @@ On session end, if any smart trigger fires (≥3 tool errors, ≥2 blockers, &gt
1044
1052
  | `/profile` | Your profile + agent profiles `[me\|edit\|setup\|create\|list\|show\|delete]` |
1045
1053
  | `/delegate` | Delegate task to a profile `[<profile> <task>\|pipeline]` |
1046
1054
  | `/team` | Manage agent teams `[create\|run\|list\|show\|delete]` |
1047
- | `/identity` | View identity `[update <section>]` |
1055
+ | `/identity` | View identity `[update <section>]` `[dynamics [--json\|--reset]]` |
1048
1056
  | `/rules` | View guardrails `[add\|remove\|toggle ...]` |
1049
1057
  | `/workflows` | View workflows `[add\|remove ...]` |
1050
1058
  | `/tools` | View tools `[add\|remove ...]` |