-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsample_memory_policy.yaml
More file actions
69 lines (58 loc) · 1.98 KB
/
Copy pathsample_memory_policy.yaml
File metadata and controls
69 lines (58 loc) · 1.98 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# Example memory policy for Thesis OS.
memory_policy:
public_sanitized: true
purpose: "Keep durable judgment memory while avoiding raw-data noise."
layers:
- id: working-memory
owner_agent: ["alpha", "lattice", "arki"]
retention: "run-scoped"
promote_when:
- "changes thesis"
- "creates action"
- "creates prediction"
- "explains failure"
- id: local-database
owner_agent: ["alpha", "arki"]
retention: "durable"
stores:
- "evidence"
- "market_snapshots"
- "screener_candidates"
- "intraday_alerts"
- "feedback"
- id: vault-canonical-notes
owner_agent: ["alpha", "lattice", "arki"]
retention: "durable"
stores:
- "thesis cards"
- "decision cards"
- "roundtable notes"
- "feedback reports"
- "system notes"
- id: llm-wiki-index
owner_agent: ["arki"]
retention: "regenerated"
stores:
- "current index"
- "canonical locations"
- "freshness summary"
promotion_rules:
- id: promote-thesis-change
when: "evidence changes assumption, invalidation, or action"
target: "vault/theses"
- id: promote-measurable-judgment
when: "judgment can be evaluated over a horizon"
target: "prediction ledger or action queue"
- id: promote-process-lesson
when: "feedback identifies data, timing, crowding, interpretation, or execution failure"
target: "vault/feedback and wiki index"
discard_rules:
- id: discard-duplicate-raw
when: "raw item is already summarized and linked"
treatment: "delete or private archive"
- id: quarantine-low-confidence-social
when: "social signal has no official or financial evidence"
treatment: "quarantine summary only"
- id: never-publish-private-runtime
when: "item contains credentials, private channels, user memory, or account data"
treatment: "exclude from public repo"