Archived
self-review 2026-06-05: WM composition visibility + ISE tier-migration fix
Two improvements from daily self-review:
1. engram_wm_top_json(n) builtin — returns top-N WM nodes by weight as
compact JSON [{label,node_type,tier,wm},...]. After long uptime all WM
nodes cycle in steady-state decay+re-promotion so wm_promotion ISEs
never fire (only trigger on 0→>0.1 transitions). This gives continuous
visibility into WM composition on every heartbeat.
2. ISE tier-migration exclusion — InternalStateEvent nodes no longer
participate in tier migration. ISEs are activated by curiosity_scan
substring matches and accumulated 50+ activation_count, reaching
Procedural tier (720h decay). This permanently crowded WM with ephemeral
state events, hiding the Knowledge/Memory nodes that should dominate.
Fix: skip ISEs in the TIER MIGRATION pass; they stay on Working-tier
48h decay regardless of activation frequency.
wm_top_json is called from awareness.el emit_heartbeat (top-5 snapshot).
This commit is contained in:
@@ -620,6 +620,7 @@ el_val_t engram_activate_json(el_val_t query, el_val_t depth);
|
||||
el_val_t engram_stats_json(void);
|
||||
el_val_t engram_wm_count(void);
|
||||
el_val_t engram_wm_avg_weight(void); /* avg wm weight of promoted nodes; float bits */
|
||||
el_val_t engram_wm_top_json(el_val_t n); /* top-N WM nodes by weight as compact JSON */
|
||||
el_val_t engram_apply_decay_json(void);
|
||||
el_val_t engram_list_layers_json(void);
|
||||
/* engram_compile_layered_json — produce a prompt-ready text block split
|
||||
|
||||
Reference in New Issue
Block a user