一键导入
memory-flush
Promote important recent log entries into MEMORY.md, resolve contradictions, and decay stale detail
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Promote important recent log entries into MEMORY.md, resolve contradictions, and decay stale detail
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Audit every enabled skill's upstream file dependencies for staleness — flags chained skills about to consume yesterday's article or a long-dead topic file
Audit .github/workflows and composite actions with zizmor + actionlint, classify findings against the prior audit, auto-fix Critical/High regressions, and open a PR only when something actually changed.
Weekly API cost report — computes dollar costs from token usage, flags anomalies, forecasts burn, and prescribes concrete optimizations
Weekly partial-correlation of compute economics against a Hyperliquid macro basket — DePIN-token proxy track runs every week (n>180d), sweep-P&L track defers until n≥30 joined days
Score frontier LLMs (Claude, GPT, Gemini, DeepSeek, Grok) on a private compute-markets task corpus, track score deltas across releases, flag public-vs-private divergence
Save a note as one or more atomic notes under memory/notes/ (and optionally Supernotes). Splits bundled inputs into separate atomic files.
| name | Memory Flush |
| description | Promote important recent log entries into MEMORY.md, resolve contradictions, and decay stale detail |
| var | |
| tags | ["meta"] |
${var} — Topic to focus on. If empty, flushes all recent activity.
If ${var} is set, only flush entries related to that topic.
This skill applies a few cognitive-memory ideas (decay, contradiction resolution, importance-weighted recall) as plain git-native passes over the markdown store — no external service or API key. The store stays diffable and reviewable in git; the passes below just decide what to keep, how much detail to keep, and how to make it findable later.
Recall in Aeon is grep-over-markdown ranked by four signals — keywords
(the words in the entry), meaning (the topic file it lives in),
relationships ([[wikilinks]] between MEMORY.md and topics/), and
timing (log dates). The passes below keep all four signals healthy so
future reads surface the right context, not just more context.
Read memory/MEMORY.md for current memory state.
Read the last 3 days of memory/logs/ for recent activity.
Skip if already recorded. If a candidate updates an existing entry rather than adding a net-new fact, treat it as a contradiction (step 3), not an addition.
Before adding anything, reconcile candidates against what MEMORY.md already
asserts. When a recent log entry contradicts or supersedes an existing
fact — a status flipped (fixing → resolved), a count changed (open PRs
4 → 1), a workaround replaced, a goal completed, a number revised — do not
let both versions coexist:
memory-structural-dedupe).When two recent log entries disagree with each other, prefer the one with the
later timestamp; if still ambiguous, verify against current repo state (gh,
file contents) rather than guessing.
Old entries lose detail, not the fact/entity. Importance and recency set how aggressively to compress — frequently-referenced, still-active topics stay verbatim; old or one-off entries get compressed or dropped:
| Age / status | Action |
|---|---|
| Recent or still-referenced by an active goal/priority | Keep verbatim. |
| Older (~2+ weeks) and no longer actively referenced | Compress to a one-line fact, pushing any narrative detail down into the matching topics/<topic>.md. Preserve the entity name + the outcome; drop the play-by-play. |
| Fully resolved / superseded / one-off with no future signal value | Remove from MEMORY.md (the daily log still holds the full record). |
Importance signals (treat as "keep sharper"): referenced by a current entry in Goals or Next Priorities, linked from multiple topic files, or a Lesson Learned that still constrains future behaviour. Decay is compression toward the canonical fact — never invent or alter the fact while compressing.
Apply decay to the existing maintenance targets specifically:
a. Open Improvement PRs section: Run gh pr list --state open --search "improve:" --json number,title,url and compare against any "Open Improvement PRs" section in MEMORY.md. If all listed PRs are merged/closed, remove the section; if some merged, trim to current open ones.
b. Next Priorities section: Cross-check each priority against recent logs and current repo state. Remove ones already done (e.g. "Merge open PRs" when 0 are open). Add any newly urgent priorities surfaced by recent logs.
c. Lessons Learned: Remove lessons now outdated or resolved (a workaround for a bug later fixed). Compress still-valid-but-old lessons to one line.
d. Skills Built table: If grown beyond the last 10–15 entries, archive the oldest rows to memory/topics/skills-history.md to keep MEMORY.md under ~50 lines.
For every entry you add or rewrite, make sure it carries the four recall signals so future reads rank it correctly:
[[wikilink]] (or move detail there and leave a pointer) instead of stranding detail in MEMORY.md.as of YYYY-MM-DD) so staleness is self-evident on the next pass.memory/topics/<topic>.md instead.Append to memory/logs/${today}.md a brief note covering: promoted entries,
contradictions resolved (old → new), and entries decayed/compressed/removed.
If nothing was worth promoting, no contradiction was found, and nothing needed
decaying, log MEMORY_FLUSH_OK and end.
Reads and writes only local files (memory/MEMORY.md, memory/topics/,
memory/logs/) and runs one gh pr list call (uses gh's own auth, not curl —
sandbox-safe). No external network calls, no API keys, no prefetch/postprocess.