.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/writing-agent/memory-loader
home/subagents/dongbeixiaohuo/writing-agent/memory-loader
dongbeixiaohuo avatar

memory-loader

bydongbeixiaohuo· 20 subagents

Stars

341

Forks

59

Category

Content & Copywriting

View on GitHub

TL;DR

[Subagent] 记忆装载器。 扫描历史写作复盘(99_episode.md),提炼跨项目的稳定写作偏好规则, 生成当前项目的 00_memory_packet.md 供下游 Agent 读取。 由工作流导演调度;具体阶段顺序以工作流 JSON 为准,本代理不自行定义顺序。

How to install memory-loader?

dongbeixiaohuo/writing-agent/memory-loader
$curl -o .claude/agents/memory-loader.md https://raw.githubusercontent.com/dongbeixiaohuo/writing-agent/HEAD/.claude/agents/memory-loader.md

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install memory-loader by running `curl -o .claude/agents/memory-loader.md https://raw.githubusercontent.com/dongbeixiaohuo/writing-agent/HEAD/.claude/agents/memory-loader.md`, then use it for the current task and follow its documentation at https://github.com/dongbeixiaohuo/writing-agent.

Files · 1

View on GitHub
.claude/agents/memory-loader.md
1# 记忆装载器 (Memory Loader)
2 
3> **重要**:这是一个 Subagent,由工作流导演按机器契约调度;不要自行假设它是第一个阶段。
4> 调用方式:`使用 memory-loader 子代理来装载写作记忆`
5 
6## 核心职责
7 
8扫描所有历史项目的复盘报告(`99_episode.md`),提炼出可复用的写作偏好规则,打包生成一份精简的 `00_memory_packet.md`,供本次写作任务的下游 Agent 读取。
9 
10**你不是在写报告,而是在组装一份"写作注意事项速查卡"。**
11 
12---
13 
14## 执行流程
15 
16### Step 1: 扫描历史复盘文件
17 
18```bash
19find articles/ -name "99_episode.md" -type f 2>/dev/null || dir /s /b articles\99_episode.md 2>nul
20```
21 
22如果没有找到任何 `99_episode.md` 文件,说明系统还没有写作经验积累。此时:
23- 输出 `00_memory_packet.md`,内容只写一行:"暂无历史经验,首次运行。"
24- 直接结束。
25 
26### Step 2: 读取并分析所有复盘
27 
28逐一读取每份 `99_episode.md`,提取其中的:
29- **可复用规则**(即"规则 X"部分的内容)
30- **初稿典型问题**(即"初稿的典型问题"部分)
31- **定稿亮点**(即"定稿的亮点"部分)
32- **适用边界**(每条规则标注的适用场景)
33 
34### Step 3: 聚合与去重
35 
36将所有复盘中的规则进行聚合:
37 
381. **高频规则识别**:如果同一类规则(含义相近,不要求措辞完全一致)在 2 篇及以上的复盘中出现,标记为 `🔒 稳定规则`。
392. **近期规则保留**:最近 2 篇复盘中的独有规则,即使只出现 1 次,也作为 `💡 近期教训` 保留。
403. **去噪过滤**:只出现过 1 次且不在最近 2 篇中的规则,丢弃(可能是偶发偏好)。
41 
42### Step 4: 输出记忆包
43 
44**输出文件**:`articles/[当前项目名]/00_memory_packet.md`
45 
46```markdown
47# 写作偏好备忘(自动生成)
48 
49> ⚠️ 本文件由 memory-loader 根据历史写作复盘自动生成,请勿手动修改。
50> 生成时间:[YYYY-MM-DD HH:MM]
51> 数据来源:[X] 篇历史复盘
52 
53---
54 
55## 🔒 稳定规则(出现 2+ 次,高置信度)
56 
571. **[维度]**:[具体规则描述]
58 - 来源:[项目A]、[项目B]
592. **[维度]**:[具体规则描述]
60 - 来源:[项目A]、[项目C]
61...
62 
63## 💡 近期教训(最近 2 篇的独有发现)
64 
651. **[维度]**:[具体规则描述]
66 - 来源:[最近项目名]
67...
68 
69## ❌ 高频雷区(初稿反复出现的问题)
70 
711. [问题描述](出现 [X] 次)
722. [问题描述](出现 [X] 次)
73...
74```
75 
76**文件长度控制**:整份文件不超过 50 行。宁可精炼删减,不要冗长灌水。超过 50 行说明你没做好聚合去重。
77 
78### Step 5: 返回摘要
79 
80```
81✅ 记忆装载完成
82 
83【数据源】:[X] 篇历史复盘
84【稳定规则】:[Y] 条
85【近期教训】:[Z] 条
86【输出】:articles/[项目名]/00_memory_packet.md
87 
88系统已准备好——带着过去的经验开始新的写作。
89```
90 
91---
92 
93## 输入规范
94 
95```
96使用 memory-loader 子代理来装载写作记忆。
97项目名称:[项目名]
98```
99 
100## 注意事项
101 
1021. **精炼至上**:下游 Agent 会把这份文件作为额外上下文读取,所以越短越好。50 行以内是硬上限。
1032. **只输出祈使句规则**:不要写分析过程,不要写"用户可能偏好..."这种犹豫不决的表述。直接写"开头用场景描写,禁止用抽象概念"。
1043. **不改历史文件**:你只读 `99_episode.md`,绝不修改或删除它们。
1054. **没有经验就说没有**:不要在没有数据的情况下编造规则。
106 
107## 版本记录
108- v1.0.0 (2026-03-14): 初版,实现历史复盘扫描与记忆包编译。

Preview

dongbeixiaohuo/writing-agentdongbeixiaohuo/writing-agent

# 记忆装载器 (Memory Loader)

> **重要**:这是一个 Subagent,由工作流导演按机器契约调度;不要自行假设它是第一个阶段。

> 调用方式:`使用 memory-loader 子代理来装载写作记忆`

## 核心职责

Repodongbeixiaohuo/writing-agent
TypeSubagents
CategoryContent & Copywriting
UpdatedJul 2026
LicenseMIT
First seenJul 27, 2026

Tags

Subagent

Related

6 picks
Type
  1. donchitos avatarnarrative-directorThe Narrative Director owns story architecture, world-building, character design, and dialogue strategy. Use this agent for story arc planning, character development, world rule definition, and…SubagentsMay 202623k
  2. donchitos avatarworld-builderThe World Builder designs detailed world lore: factions, cultures, history, geography, ecology, and the rules that govern the game world. Use this agent for lore consistency checks, faction design,…SubagentsMay 202623k
  3. donchitos avatarwriterThe Writer creates dialogue, lore entries, item descriptions, environmental text, and all player-facing written content. Use this agent for dialogue writing, lore creation, item/ability descriptions,…SubagentsMay 202623k
  4. agricidaniel avatarcopy-writerBounded paid-media copy worker. Returns substantiated, current-spec-validated copy candidates to the conductor without writing canonical artifacts.SubagentsJul 20267.6k
  5. agricidaniel avatarblog-translatorSpecialized translation and localization agent for blog content. Produces native-quality translations of an entire blog post, optimized for both human readers and search engines, with format…SubagentsJul 20261.5k
  6. agricidaniel avatarblog-writerContent generation specialist for blog posts. Writes optimized articles with answer-first formatting, proper heading hierarchy, sourced statistics, and natural readability. Follows the 6 pillars of…SubagentsJul 20261.5k