@aman_asmuei/aman-agent 0.28.0 → 0.30.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 +17 -14
- package/dist/index.js +801 -683
- 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-v0300)
|
|
51
51
|
- [The Problem](#the-problem)
|
|
52
52
|
- [The Solution](#the-solution)
|
|
53
53
|
- [Quick Start](#quick-start)
|
|
@@ -80,27 +80,30 @@
|
|
|
80
80
|
|
|
81
81
|
---
|
|
82
82
|
|
|
83
|
-
## What's New in v0.
|
|
83
|
+
## What's New in v0.30.0
|
|
84
84
|
|
|
85
|
-
> **
|
|
85
|
+
> **Agent hardening — trust, durability, and insight.**
|
|
86
86
|
|
|
87
|
-
|
|
87
|
+
The agent now asks before delegating, persists background task state across crashes, and gives you a real analytics dashboard in `/eval report`.
|
|
88
88
|
|
|
89
89
|
| Feature | What it does |
|
|
90
90
|
|:---|:---|
|
|
91
|
-
| **
|
|
92
|
-
| **
|
|
93
|
-
| **
|
|
94
|
-
| **Adaptive nudge learning** | Wellbeing nudges that consistently precede low-rated sessions get automatically suppressed |
|
|
95
|
-
| **Semantic trigger matching** | TF-IDF cosine similarity alongside keyword matching — skills trigger on meaning, not just words |
|
|
96
|
-
| **Feed-forward v2** | Preemptive context injection from frustration correlations (late-night, long sessions) |
|
|
97
|
-
| **LLM-based sentiment** | Piggybacks tone analysis on memory extraction — zero extra LLM calls |
|
|
98
|
-
| **Burnout predictor** | Forecasts burnout risk from session patterns; surfaces care nudge when risk > 70% |
|
|
99
|
-
| **`/skills list --auto`** | Now shows reinforcement count (★) and version history per skill |
|
|
91
|
+
| **Delegation confirmation** | Agent prompts you before executing `delegate_task` or `team_run` — no silent autonomous work |
|
|
92
|
+
| **Persistent background tasks** | Background task state saved to `~/.aman-agent/bg-tasks.json` — survives crashes, visible in `/eval report` |
|
|
93
|
+
| **Rich `/eval report`** | Shows trust score, sentiment trend, energy distribution, burnout risk, frustration correlations, and background task stats |
|
|
100
94
|
|
|
101
95
|
<details>
|
|
102
96
|
<summary><strong>Highlights from earlier releases</strong></summary>
|
|
103
97
|
|
|
98
|
+
**v0.29 — Ecosystem parity**
|
|
99
|
+
- Auto-relate memories after extraction (knowledge graph edges)
|
|
100
|
+
- Stale reference cleanup
|
|
101
|
+
|
|
102
|
+
**v0.28 — Learning loop completion**
|
|
103
|
+
- Rejection feedback, cross-session reinforcement, skill merging + versioning
|
|
104
|
+
- Adaptive nudge learning, semantic trigger matching, feed-forward v2
|
|
105
|
+
- LLM-based sentiment, burnout predictor, `/skills list --auto` enhancements
|
|
106
|
+
|
|
104
107
|
**v0.27 — Dynamic user model**
|
|
105
108
|
- Cross-session profile: trust (EMA), sentiment baseline, energy distribution
|
|
106
109
|
- Feed-forward personalized energy/mode overrides
|
|
@@ -906,7 +909,7 @@ The agent adapts its personality in real-time based on signals:
|
|
|
906
909
|
- **User sentiment**: detects frustration, excitement, confusion, fatigue from keywords
|
|
907
910
|
- **Wellbeing nudges**: suggests breaks when you've been at it too long, gently mentions sleep during late-night sessions
|
|
908
911
|
|
|
909
|
-
All state syncs to acore's Dynamics section — works across aman-agent, achannel, and aman-
|
|
912
|
+
All state syncs to acore's Dynamics section — works across aman-agent, achannel, and aman-plugin.
|
|
910
913
|
|
|
911
914
|
### Auto-Triggered Skills
|
|
912
915
|
|