원클릭으로
continual-learning
"Use — Guide for implementing continual learning in AI coding agents — hooks, memory scoping, reflection patterns. Use"
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
"Use — Guide for implementing continual learning in AI coding agents — hooks, memory scoping, reflection patterns. Use"
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Analisador espectral de qualidade de código multi-linguagem (Python, JS/TS, Java, Go). Detecta 8 padrões de degradação via pipeline FFT/Wavelet/PELT sobre 9 canais UCO: H (Hamiltoniano), CC, ILR, DSM_d, DSM_c, DI, dead, dups, bugs. Publica UCO_ANOMALY_DETECTED no APEX EventBus para classificações CRITICAL. Alternativa open-source ao SonarQube — sem LLM, billing por chamada de API.
"Create — Use when the user asks to design multi-agent systems, create agent architectures, define agent communication"
Apply — Testing and benchmarking LLM agents including behavioral testing,
Apply —
Apply —
"Apply — "
| name | continual-learning |
| description | "Use — Guide for implementing continual learning in AI coding agents — hooks, memory scoping, reflection patterns. Use" |
Your agent forgets everything between sessions. Continual learning fixes that.
Experience → Capture → Reflect → Persist → Apply
↑ │
└───────────────────────────────────────┘
Install the hook (one step):
cp -r hooks/continual-learning .github/hooks/
Auto-initializes on first session. No config needed.
Global (~/.copilot/learnings.db) — follows you across all projects:
Local (.copilot-memory/learnings.db) — stays with this repo:
The hook observes tool outcomes and detects failure patterns:
Session 1: bash tool fails 4 times → learning stored: "bash frequently fails"
Session 2: hook surfaces that learning at start → agent adjusts approach
The agent can write learnings directly:
INSERT INTO learnings (scope, category, content, source)
VALUES ('local', 'convention', 'This project uses Result<T> not exceptions', 'user_correction');
Categories: pattern, mistake, preference, tool_insight
For human-readable, version-controlled knowledge:
# .copilot-memory/conventions.md
- Use DefaultAzureCredential for all Azure auth
- Parameter is semantic_configuration_name=, not semantic_configuration=
Learnings decay over time:
This prevents unbounded growth while preserving what matters.
cp -r, it won't get adopted"Use semantic_configuration_name=" beats "use the right parameter"Use — Guide for implementing continual learning in AI coding agents — hooks, memory scoping, reflection patterns. Use
Use this skill when the task requires continual learning capabilities.