Release v0.2.0

This commit is contained in:
winlifes
2026-05-20 06:06:36 -07:00
parent e01f058e3e
commit 3ab48e2457
18 changed files with 1417 additions and 99 deletions
+6
View File
@@ -23,6 +23,12 @@ class InteractionLog {
return this.entries.slice(0, Math.max(1, limit));
}
clear() {
const count = this.entries.length;
this.entries.length = 0;
return count;
}
summary(limit = 20) {
const items = this.list(limit);
if (!items.length) {