用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/CraftOS-dev/CraftBot --skill memory-processor命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Create Living UI applications (PocketBase backend, React kit frontend). Scaffolds, develops, validates, and launches local web apps with persistent state and realtime UI.
Install Living UI apps from the marketplace or import Living UI projects from a ZIP, a local folder, or a git URL. Registers, launches, and verifies imported projects.
Modify an existing Living UI application (PocketBase + React kit) — add features, change design, fix bugs — then re-validate and relaunch it.
正在显示 SKILL.md
| name | memory-processor |
| description | Process raw events into distilled long-term memories using batch processing. |
| user-invocable | false |
| action-sets | ["file_operations"] |
The only way for agent to save event into long-term memory.
agent_file_system/EVENT_UNPROCESSED.md - Source (read & clear batches)agent_file_system/MEMORY.md - Destination (append distilled memories)Use update_todos to track progress. Create todos at start, update as you go.
Initial todos (create after reading first batch):
1. [pending] Process and loop for each batch (25~50 lines).
2. [pending] Validate and cleanup
3. [pending] Complete task
After each batch: Mark current as completed, add next batch if more events exist.
Process 50 lines at a time to avoid memory issues.
read_file EVENT_UNPROCESSED.md, offset=11, limit=50update_todos to create initial todo liststream_edit MEMORY.md (append only)stream_edit EVENT_UNPROCESSED.md (delete lines 12-61)end_turn when validation passes[reasoning], [action_start], [gui_action], [screen_description][agent message] - agent responses are NEVER saved...[user message] lines are NEVER discarded by type. They are the PRIMARY
source of memories: apply the distillation rules to the CONTENT of every
[user message] line. A user message that contains a preference, fact,
contact, decision, or dated event MUST produce a distilled memory even
when it is phrased inside an ordinary request (e.g. "I'm allergic to
peanuts, find me a lunch spot" → save the allergy, discard the request).[YYYY-MM-DD HH:MM:SS] [category] Full Name predicate object
Categories (closed set — never invent new ones):
[fact], [preference], [event], [decision], [learning], [project], [contact]
Write the plain item line and NOTHING more. The only structured tail
field that exists is {superseded}. NEVER append an {entities: ...} or
any other field — entity connections are established and recorded by a
different system entirely (in ENTITIES.md, not here). Some older MEMORY.md
lines may still carry an {entities: ...} field; that is legacy markup —
never copy the pattern onto lines you write.
Input:
[2026/02/09 06:33:10] [user message]: agent, i am an ai researcher at craftos
Output:
[2026-02-09 06:33:10] [fact] John is an AI researcher at CraftOS
Note: Get actual names from existing MEMORY.md. Never use "user", "conversation partner", or pronouns.
Before saving a distilled item, check MEMORY.md for existing items about the same entities, then pick exactly one operation:
{superseded} to the end of
the old line (do NOT delete it), then append the new item as its own line.Never delete a contradicted memory — the {superseded} marker preserves
history while removing the item from retrieval. Exact duplicates (same fact
twice) are the only lines you remove outright.
Each memory item MUST be <= 150 words, counted on the text AFTER the [category] tag.
If a distillation would exceed 150 words, compress further:
Never truncate mid-sentence; never end an item with ....
Core principle: Memory is for LASTING PERSONAL INSIGHTS that improve future interactions, not event logging.
The Future Utility Test: Before saving, ask: "Will knowing this help me serve the user better in a FUTURE conversation?" If the answer is no, discard it.
NEVER save (these belong in EVENT.md, not MEMORY.md):
trigger, action_start, action_end, end_turn[user message] or [agent message] line
into MEMORY.md verbatim. This bans COPYING the conversation, not saving
from it — [user message] content is exactly what you distill memories
FROM (see DISTILL, Don't Copy). [agent message] lines are discarded.SAVE CONDITION:
Only save the memory if it contains lasting value:
ALWAYS save (high future utility):
Examples of future utility:
read_file, stream_edit, memory_search, grep_files, end_turn, update_todos
send_message, end_turn, run_shell, write_file, create_file
Batch 1 (50 lines):
[2026-02-09 06:33:10] [fact] John is an AI researcher[2026-02-09 06:33:10] [event] John has a meeting with Sarah from Company ABC on 15/2/2026, with unknown locationSupersede example — batch contains "i moved from the SF office to the Tokyo office":
old line becomes: [2026-01-03 09:12:00] [fact] John works at the CraftOS SF office {superseded}
new line appended: [2026-02-09 06:33:10] [fact] John works at the CraftOS Tokyo office
Todo update after batch 1:
1. [completed] Process batch 1 (lines 12-61)
2. [in_progress] Process batch 2 (lines 12-61)
3. [pending] Validate and cleanup
4. [pending] Complete task
Result: 50 events → 1 memory, progress tracked via todos
Input (raw, rambling):
[2026-03-12 10:04:22] [user message]: so i was thinking about the trip next month, we're still planning to fly to tokyo on april 18th, staying at the shinjuku hilton for six nights, my wife emma is coming, and we also want to try the sushi place called sukiyabashi jiro that my friend kenji recommended, oh and the flight is on ANA from LAX, departing 10:55am, i need to remember to pack the camera and charger, and i'm a bit anxious because last time i forgot my passport
Output (<= 150 words, two atomic memories):
[2026-03-12 10:04:22] [event] John and Emma fly Tokyo on 2026-04-18 via ANA from LAX 10:55am, staying Shinjuku Hilton 6 nights
[2026-03-12 10:04:22] [preference] John wants to try Sukiyabashi Jiro sushi in Tokyo (recommended by Kenji)
Anxiety, packing reminder, and narrative framing are dropped — no lasting utility.
Triggered when the task instruction contains a "Pruning phase" directive (MEMORY.md has reached the item-count cap).
Add these todos alongside the event-processing todos:
N+1. [pending] Read MEMORY.md header + oldest block
N+2. [pending] Consolidate/merge/drop oldest items
N+3. [pending] Replace oldest block in MEMORY.md
Execute AFTER event processing completes:
read_file MEMORY.md from line 11 (skip the header block) up to the oldest-N range indicated in the task instruction.stream_edit MEMORY.md to replace the oldest block with the consolidated set. The # Memory Log / ## Overview / ## Memory header (lines 1-10) must remain intact.{superseded} — their replacement is on file; they exist only as history and are the first to go when space is needed.[event] items whose date has passed and have no lasting consequence.prune_target below the pre-prune count (the task instruction states the exact number).