@iamem/amem 0.1.2 → 0.1.3

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.
@@ -18,3 +18,8 @@ allowed_platforms = ["cursor", "claude"]
18
18
 
19
19
  # Empty = Memory must approve every draft. Do not auto-apply on managed fleets.
20
20
  auto_apply_kinds = []
21
+
22
+ # Skills are instructions agents follow, so nothing reaches disk without a human.
23
+ skills_enabled = true
24
+ skill_write_approval = true
25
+ skill_capture = true
@@ -20,3 +20,11 @@ allowed_platforms = ["cursor", "claude"]
20
20
  # Optional: auto-apply low-risk draft kinds without Memory approve (empty = never).
21
21
  # Prefer leaving this empty on managed fleets.
22
22
  # auto_apply_kinds = ["structure"]
23
+
24
+ # Skills — reusable procedures agents load on demand from ~/.amem/skills.
25
+ # These are instructions an agent will follow, so treat them like code, not notes.
26
+ skills_enabled = true
27
+ # true = agent writes are staged for review instead of hitting disk.
28
+ skill_write_approval = false
29
+ # false = stop suggesting skills at session end.
30
+ skill_capture = true