@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.
- package/README.md +64 -1
- package/dist/api/routes.js +331 -1
- package/dist/attest.d.ts +13 -0
- package/dist/attest.js +44 -0
- package/dist/cli.js +241 -2
- package/dist/context.d.ts +10 -1
- package/dist/context.js +105 -3
- package/dist/db.d.ts +141 -0
- package/dist/db.js +398 -0
- package/dist/embed.js +5 -14
- package/dist/hook.js +8 -1
- package/dist/hygiene.d.ts +1 -2
- package/dist/hygiene.js +1 -2
- package/dist/install/hosts.js +8 -0
- package/dist/install/skills.js +10 -5
- package/dist/license.d.ts +1 -0
- package/dist/license.js +21 -19
- package/dist/mcp.js +221 -0
- package/dist/policy.d.ts +6 -0
- package/dist/policy.js +16 -1
- package/dist/skill-capture.d.ts +43 -0
- package/dist/skill-capture.js +146 -0
- package/dist/skills.d.ts +106 -0
- package/dist/skills.js +422 -0
- package/docs/backlog.md +9 -0
- package/package.json +1 -1
- package/skills/amem-tasks/SKILL.md +100 -0
- package/skills/amem-write-skill/SKILL.md +99 -0
- package/templates/cursor-rule.mdc +16 -6
- package/templates/policy.deny-default.toml +5 -0
- package/templates/policy.example.toml +8 -0
- package/ui-static/app.js +435 -227
- package/ui-static/index.html +11 -34
- package/ui-static/styles.css +299 -0
|
@@ -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
|