@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 +26 -14
- package/dist/index.js +1060 -204
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
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-
|
|
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.
|
|
83
|
+
## What's New in v0.27.0
|
|
84
84
|
|
|
85
|
-
> **
|
|
85
|
+
> **Your agent remembers you across sessions.**
|
|
86
86
|
|
|
87
|
-
|
|
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
|
-
| **
|
|
92
|
-
| **
|
|
93
|
-
| **
|
|
94
|
-
| **
|
|
95
|
-
|
|
|
96
|
-
| **`/
|
|
97
|
-
|
|
|
98
|
-
|
|
|
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, >
|
|
|
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]` |
|