Agent Skills
› sediman-agent/OpenSkynet
› continual-learning
continual-learning
GitHub通过委派子代理维护AGENTS.md,实现持续学习流程。适用于挖掘历史对话、更新记忆文件或运行持续学习循环的场景。父技能仅负责编排,不直接处理数据或文件。
Trigger Scenarios
用户要求挖掘之前的聊天记录
需要维护或更新AGENTS.md文件
运行持续学习循环
Install
npx skills add sediman-agent/OpenSkynet --skill continual-learning -g -y
SKILL.md
Frontmatter
{
"name": "continual-learning",
"description": "Orchestrate continual learning by delegating transcript mining and AGENTS.md updates to `agents-memory-updater`.",
"disable-model-invocation": true
}
Continual Learning
Keep AGENTS.md current by delegating the memory update flow to one subagent.
Trigger
Use when the user asks to mine prior chats, maintain AGENTS.md, or run the continual-learning loop.
Workflow
- Call
agents-memory-updater. - Return the updater result.
Guardrails
- Keep the parent skill orchestration-only.
- Do not mine transcripts or edit files in the parent flow.
- Do not bypass the subagent.
Version History
- c9d8953 Current 2026-07-05 19:51


