@aman_asmuei/aman-agent 0.27.0 → 0.29.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 +18 -14
- package/dist/index.js +848 -312
- 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-v0290)
|
|
51
51
|
- [The Problem](#the-problem)
|
|
52
52
|
- [The Solution](#the-solution)
|
|
53
53
|
- [Quick Start](#quick-start)
|
|
@@ -80,27 +80,31 @@
|
|
|
80
80
|
|
|
81
81
|
---
|
|
82
82
|
|
|
83
|
-
## What's New in v0.
|
|
83
|
+
## What's New in v0.29.0
|
|
84
84
|
|
|
85
|
-
> **
|
|
85
|
+
> **Ecosystem parity — the knowledge graph wires up.**
|
|
86
86
|
|
|
87
|
-
|
|
87
|
+
Memories now auto-relate after extraction, building a knowledge graph of connected insights across sessions. Admin tools for memory health diagnostics, repair, config, and reflection are fully wired. Stale references cleaned up.
|
|
88
88
|
|
|
89
89
|
| Feature | What it does |
|
|
90
90
|
|:---|:---|
|
|
91
|
-
| **
|
|
92
|
-
| **
|
|
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 |
|
|
91
|
+
| **Auto-relate memories** | After each successful extraction, `autoRelateMemory` finds and links semantically similar memories — builds a knowledge graph automatically |
|
|
92
|
+
| **Stale reference cleanup** | `aman-claude-code` → `aman-plugin` across all docs |
|
|
100
93
|
|
|
101
94
|
<details>
|
|
102
95
|
<summary><strong>Highlights from earlier releases</strong></summary>
|
|
103
96
|
|
|
97
|
+
**v0.28 — Learning loop completion**
|
|
98
|
+
- Rejection feedback, cross-session reinforcement, skill merging + versioning
|
|
99
|
+
- Adaptive nudge learning, semantic trigger matching, feed-forward v2
|
|
100
|
+
- LLM-based sentiment, burnout predictor, `/skills list --auto` enhancements
|
|
101
|
+
|
|
102
|
+
**v0.27 — Dynamic user model**
|
|
103
|
+
- Cross-session profile: trust (EMA), sentiment baseline, energy distribution
|
|
104
|
+
- Feed-forward personalized energy/mode overrides
|
|
105
|
+
- Frustration correlations (Pearson r), nudge tracking
|
|
106
|
+
- `/identity dynamics` view + `--json` + `--reset`
|
|
107
|
+
|
|
104
108
|
**v0.26 — Skill crystallization**
|
|
105
109
|
- Post-mortems identify reusable procedures → opt-in prompt → saved as auto-triggering skills
|
|
106
110
|
- Runtime trigger matching, `/skills crystallize`, `/skills list --auto`
|
|
@@ -900,7 +904,7 @@ The agent adapts its personality in real-time based on signals:
|
|
|
900
904
|
- **User sentiment**: detects frustration, excitement, confusion, fatigue from keywords
|
|
901
905
|
- **Wellbeing nudges**: suggests breaks when you've been at it too long, gently mentions sleep during late-night sessions
|
|
902
906
|
|
|
903
|
-
All state syncs to acore's Dynamics section — works across aman-agent, achannel, and aman-
|
|
907
|
+
All state syncs to acore's Dynamics section — works across aman-agent, achannel, and aman-plugin.
|
|
904
908
|
|
|
905
909
|
### Auto-Triggered Skills
|
|
906
910
|
|