continuous-learning-v2

Convert Claude Code session observations into confidence-scored instincts with git-based project isolation.

Updated May 29, 2026
One-click install
npx skills add https://github.com/Mang30/myskills --skill continuous-learning-v2-mang30
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: continuous-learning-v2
Source: https://github.com/Mang30/myskills/tree/main/skills/continuous-learning-v2
Command: npx skills add https://github.com/Mang30/myskills --skill continuous-learning-v2-mang30

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Turns Claude Code session behavior into reusable “instincts” with confidence scores, reducing repeated decision-making and preventing cross-project learning pollution.

Core Features & Use Cases

  • Hook-based deterministic observation: Captures PreToolUse/PostToolUse reliably to avoid probabilistic skill-trigger gaps.
  • Confidence-scored atomic instincts: Stores small, evidence-backed behavior patterns (0.3–0.9) instead of large, brittle skills.
  • Project scope isolation (v2.1): Learns per-project by default using git remote URL / repo path detection, with an option to promote to global.
  • Evolution pipeline: Clusters instincts into commands and agents via evolve, then supports promotion/export/import for knowledge portability.
  • Operational commands: Manage status, export/import, evolution, promotion, and project registry.

Quick Start

Enable the PreToolUse and PostToolUse hooks to point to this skill’s observe.sh so it can start collecting observations from your Claude Code sessions.

Frequently Asked Questions about continuous-learning-v2

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I capture Claude Code session behavior automatically?

Capture Claude Code session behavior automatically by enabling PreToolUse and PostToolUse hooks that point to an observation script, which reliably records deterministic execution events without probabilistic trigger gaps.

How does confidence scoring work for agent behavior patterns?

Confidence scoring assigns a 0.3 to 0.9 threshold to atomic behavior patterns, storing small evidence-backed instincts only when they meet the required threshold to prevent brittle, low-confidence learning pollution.

Can I isolate continuous learning data by git project scope?

Isolate continuous learning data by git project scope using remote URL and repo path detection, storing instincts in isolated project directories by default with an option to promote them globally.

What is the best way to export and import agent instincts across workflows?

Export and import agent instincts across workflows by clustering atomic instincts into commands and agents via an evolution pipeline, then using operational commands to promote, export, and import the portable knowledge.

Why does continuous learning across multiple projects cause behavior pollution?

Continuous learning across multiple projects causes behavior pollution when global storage mixes unrelated contexts, which project scope isolation solves by detecting git context and storing instincts in isolated directories before optional global promotion.