This is a pure orchestration layer that keeps your AGENTS.md file up to date by handing off all the real work to a subagent called agents-memory-updater. You invoke it when you want to mine past conversation transcripts and fold learnings back into your agent memory. The entire parent skill is just a passthrough that calls the updater and returns its result, which is an interesting pattern if you're building multi-agent systems where you want clean separation between orchestration and execution. The guardrails explicitly prevent you from doing any actual file editing or transcript mining at this level, forcing everything through the subagent boundary.
npx -y skills add cursor/plugins --skill continual-learning --agent claude-codeInstalls into .claude/skills of the current project.
Keep AGENTS.md current by delegating the memory update flow to one subagent.
Use when the user asks to mine prior chats, maintain AGENTS.md, or run the continual-learning loop.
agents-memory-updater.sickn33/antigravity-awesome-skills
rohitg00/pro-workflow
supercent-io/skills-template