@fyso/awareness-framework 0.1.0 → 0.3.0
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 +4 -0
- package/docs/cli.md +33 -1
- package/docs/evaluation-loop.md +2 -0
- package/docs/hooks-and-scheduling.md +8 -2
- package/docs/memory.md +17 -0
- package/docs/superpowers/plans/2026-06-19-local-memory-operations.md +1026 -0
- package/package.json +1 -1
- package/src/cli.js +478 -6
- package/templates/agent-instructions.md +15 -6
- package/templates/cli-wrapper.md +1 -1
- package/templates/end-of-day-summary.md +8 -0
- package/templates/evaluation-note.md +4 -1
- package/templates/memory-long-term.md +15 -1
|
@@ -22,6 +22,9 @@
|
|
|
22
22
|
|
|
23
23
|
- Short-term observations to keep short-term:
|
|
24
24
|
- Long-term memory candidates:
|
|
25
|
+
- Repeated candidates from `awareness memory review`:
|
|
26
|
+
- Suggested pattern promotions:
|
|
27
|
+
- Promotion command and evidence:
|
|
25
28
|
- Memory to prune or revise:
|
|
26
29
|
- User confirmation needed:
|
|
27
30
|
|
|
@@ -29,7 +32,7 @@
|
|
|
29
32
|
|
|
30
33
|
- Awareness cleanup:
|
|
31
34
|
- Worklog correction:
|
|
32
|
-
- Long-term memory promotion:
|
|
35
|
+
- Long-term memory promotion, candidate, or prune decision:
|
|
33
36
|
- Personality update:
|
|
34
37
|
- Framework PR candidate:
|
|
35
38
|
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
- Updated: never
|
|
4
4
|
- Scope: Local private state; do not commit
|
|
5
5
|
|
|
6
|
-
This file stores durable, curated memory that improves future collaboration.
|
|
6
|
+
This file stores durable, curated memory that improves future collaboration. Evaluations may add promotion candidates automatically, but durable entries should be promoted only when they are user-confirmed, repeated, or operationally important.
|
|
7
7
|
|
|
8
8
|
## Preferences
|
|
9
9
|
|
|
@@ -25,6 +25,19 @@ This file stores durable, curated memory that improves future collaboration. Add
|
|
|
25
25
|
|
|
26
26
|
- None yet.
|
|
27
27
|
|
|
28
|
+
## Review Notes
|
|
29
|
+
|
|
30
|
+
- Use `awareness memory candidates` to inspect raw candidates.
|
|
31
|
+
- Use `awareness memory review` to surface repeated candidates that may deserve promotion as `Patterns`.
|
|
32
|
+
- Use `awareness memory promote --kind preference|pattern|project|review --text TEXT --evidence EVIDENCE` after review.
|
|
33
|
+
- Repeated candidates may share the same text with distinct evidence; do not collapse them before review.
|
|
34
|
+
|
|
35
|
+
## Event Log
|
|
36
|
+
|
|
37
|
+
- Append-only audit history: `memory/events.jsonl`
|
|
38
|
+
- Markdown sections are readable projections.
|
|
39
|
+
- Do not hand-edit event history.
|
|
40
|
+
|
|
28
41
|
## Pruned Or Revised
|
|
29
42
|
|
|
30
43
|
- None yet.
|
|
@@ -35,3 +48,4 @@ This file stores durable, curated memory that improves future collaboration. Add
|
|
|
35
48
|
- Do not promote one-off guesses without repeated evidence.
|
|
36
49
|
- Direct user instructions override memory.
|
|
37
50
|
- Remove or soften stale memory.
|
|
51
|
+
- Keep promotion evidence concise and linkable.
|