@aman_asmuei/aman-agent 0.27.0 → 0.28.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 +19 -13
- package/dist/index.js +844 -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-v0280)
|
|
51
51
|
- [The Problem](#the-problem)
|
|
52
52
|
- [The Solution](#the-solution)
|
|
53
53
|
- [Quick Start](#quick-start)
|
|
@@ -80,27 +80,33 @@
|
|
|
80
80
|
|
|
81
81
|
---
|
|
82
82
|
|
|
83
|
-
## What's New in v0.
|
|
83
|
+
## What's New in v0.28.0
|
|
84
84
|
|
|
85
|
-
> **
|
|
85
|
+
> **The learning loop is complete.**
|
|
86
86
|
|
|
87
|
-
|
|
87
|
+
aman-agent now closes the full crystallization + adaptive intelligence cycle. Rejected skills are remembered. Repeated suggestions get reinforced. Near-duplicates get merged with version history. Nudges adapt to your actual response patterns. Frustration is predicted before it happens. All zero or near-zero LLM overhead.
|
|
88
88
|
|
|
89
89
|
| Feature | What it does |
|
|
90
90
|
|:---|:---|
|
|
91
|
-
| **
|
|
92
|
-
| **
|
|
93
|
-
| **
|
|
94
|
-
| **
|
|
95
|
-
| **
|
|
96
|
-
|
|
|
97
|
-
|
|
|
98
|
-
|
|
|
99
|
-
|
|
|
91
|
+
| **Rejection feedback loop** | Rejected skill names injected into postmortem prompt — agent won't suggest them again |
|
|
92
|
+
| **Cross-session reinforcement** | Tracks how many times each skill candidate appears; auto-recommends after 3+ suggestions |
|
|
93
|
+
| **Skill merging + versioning** | Near-duplicate skills prompt merge instead of skip; old versions archived as `.v1`, `.v2`, etc. |
|
|
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 |
|
|
100
100
|
|
|
101
101
|
<details>
|
|
102
102
|
<summary><strong>Highlights from earlier releases</strong></summary>
|
|
103
103
|
|
|
104
|
+
**v0.27 — Dynamic user model**
|
|
105
|
+
- Cross-session profile: trust (EMA), sentiment baseline, energy distribution
|
|
106
|
+
- Feed-forward personalized energy/mode overrides
|
|
107
|
+
- Frustration correlations (Pearson r), nudge tracking
|
|
108
|
+
- `/identity dynamics` view + `--json` + `--reset`
|
|
109
|
+
|
|
104
110
|
**v0.26 — Skill crystallization**
|
|
105
111
|
- Post-mortems identify reusable procedures → opt-in prompt → saved as auto-triggering skills
|
|
106
112
|
- Runtime trigger matching, `/skills crystallize`, `/skills list --auto`
|