agenr 0.7.15 → 0.7.16
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/CHANGELOG.md +5 -0
- package/package.json +1 -1
- package/skills/SKILL.md +39 -13
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.7.16] - 2026-02-21
|
|
4
|
+
|
|
5
|
+
### Fixed
|
|
6
|
+
- docs(skill): comprehensive SKILL.md refresh covering all four tools, full importance scale, confidence-aware extraction, store optional params (subject, scope, tags, project), retire and extract tool docs
|
|
7
|
+
|
|
3
8
|
## [0.7.15] - 2026-02-21
|
|
4
9
|
|
|
5
10
|
### Fixed
|
package/package.json
CHANGED
package/skills/SKILL.md
CHANGED
|
@@ -3,28 +3,54 @@ name: agenr
|
|
|
3
3
|
description: Use when storing new knowledge (decisions, preferences, lessons, todos) or recalling context mid-session. The agenr plugin auto-injects memory at session start - this skill covers proactive store and on-demand recall.
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
## agenr_store
|
|
7
7
|
|
|
8
|
-
|
|
9
|
-
Types: `fact | decision | preference | todo | lesson | event`.
|
|
10
|
-
Importance: `1-10` (default `7`), use `9` for critical items, use `10` sparingly.
|
|
11
|
-
Importance calibration: entries at importance 7 (the default) are saved to
|
|
12
|
-
memory but will NOT trigger mid-session signals to active sessions. Use
|
|
13
|
-
importance 8+ only for updates that other active sessions need to know about
|
|
14
|
-
NOW. Routine facts should stay at 7.
|
|
8
|
+
Use proactively. Call immediately after any decision, user preference, lesson learned, important event, or fact worth remembering. Do not ask first.
|
|
15
9
|
|
|
10
|
+
Required: `type`, `content`, `importance`.
|
|
11
|
+
Optional: `subject` (short label), `tags` (array), `scope` (`private`|`personal`|`public`), `project`, `platform`, `source`.
|
|
12
|
+
|
|
13
|
+
Types: `fact | decision | preference | todo | lesson | event | relationship`
|
|
16
14
|
Do not store secrets/credentials, temporary state, or verbatim conversation.
|
|
17
15
|
|
|
18
|
-
|
|
16
|
+
### Importance calibration
|
|
17
|
+
|
|
18
|
+
- **10**: Once-per-project permanent constraints. At most 1-2 per project lifetime.
|
|
19
|
+
- **9**: Critical breaking changes or immediate cross-session decisions. At most 1 per significant session, often 0.
|
|
20
|
+
- **8**: Things an active parallel session would act on right now. Fires a cross-session signal. Use conservatively.
|
|
21
|
+
- **7**: Default. Project facts, decisions, preferences, milestones. No signal fired.
|
|
22
|
+
- **6**: Routine dev observations (verified X, tests passing). Cap here unless the result is surprising.
|
|
23
|
+
- **5**: Borderline. Only store if clearly durable beyond today.
|
|
24
|
+
|
|
25
|
+
Entries at 7 are saved silently. Use 8+ only if other active sessions need to know NOW.
|
|
26
|
+
|
|
27
|
+
### Confidence-aware extraction (OpenClaw transcripts)
|
|
28
|
+
|
|
29
|
+
OpenClaw transcripts include `[user]` / `[assistant]` role labels. The extractor uses this signal:
|
|
30
|
+
- Hedged or unverified assistant factual claims are tagged `unverified` and hard-capped at importance 5.
|
|
31
|
+
- Tool-verified assistant claims follow normal importance rules.
|
|
32
|
+
- User messages are never capped.
|
|
33
|
+
|
|
34
|
+
This means: if you say something unverified, it will be stored at max importance 5. To store a fact at higher importance, verify it with a tool call first.
|
|
19
35
|
|
|
20
|
-
|
|
36
|
+
## agenr_recall
|
|
37
|
+
|
|
38
|
+
Use mid-session when you need context you don't already have. Session-start recall is handled automatically - do not call at turn 1 unless you need extra context beyond the injected summary.
|
|
39
|
+
|
|
40
|
+
Parameters:
|
|
21
41
|
- `query` (required): semantic search string
|
|
22
42
|
- `limit`: max results (default 10)
|
|
23
43
|
- `context`: `"default"` (semantic+vector) or `"session-start"` (fast bootstrap)
|
|
24
44
|
- `since`: lower date bound - only entries newer than this (ISO or relative, e.g. `"7d"`, `"2026-01-01"`)
|
|
25
|
-
- `until`: upper date bound - only entries older than this ceiling (
|
|
26
|
-
- `types`: comma-separated entry types
|
|
45
|
+
- `until`: upper date bound - only entries older than this ceiling (e.g. `"7d"` = entries created before 7 days ago). Use with `since` for a date window.
|
|
46
|
+
- `types`: comma-separated entry types (`fact,decision,preference,todo,lesson,event`)
|
|
27
47
|
- `platform`: filter by platform (`openclaw`, `claude-code`, `codex`)
|
|
28
48
|
- `project`: filter by project scope (pass `*` for all projects)
|
|
29
49
|
|
|
30
|
-
|
|
50
|
+
## agenr_retire
|
|
51
|
+
|
|
52
|
+
Soft-deletes an entry. Use when something is outdated, wrong, or superseded. Pass `entry_id` (from recall results) and optionally `reason` and `persist: true` to write to the retirements ledger.
|
|
53
|
+
|
|
54
|
+
## agenr_extract
|
|
55
|
+
|
|
56
|
+
Extracts structured knowledge entries from raw text without storing them. Useful for previewing what would be stored from a block of text before committing.
|