.claude/skills/continuous-learning-v2/SKILL.md
Instinct-based learning system that captures team design patterns via hooks and evolves them into reusable knowledge
npx skillsauth add chemistrywow31/A-Team Continuous Learning V2Install this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Capture team design patterns from A-Team sessions using hook-based observation. Detected patterns become "instincts" — atomic learned behaviors with confidence scoring that improve future team designs.
Infrastructure-level skill. Operates via hooks in settings.json and benefits all agents automatically. No explicit agent invocation required.
An instinct is a small learned behavior:
---
id: always-propose-qa-role
trigger: "when designing a team that produces deliverables"
confidence: 0.9
domain: "role-design"
---
# Always Propose QA Role
## Action
Proactively propose a quality checker/reviewer role during requirements exploration.
## Evidence
- User added QA role in 3/4 recent designs after initial omission
Properties:
Team Design Session
│
│ Hooks capture tool use + user feedback (100% reliable)
▼
observations.jsonl
│
│ Observer agent (background, Haiku)
▼
PATTERN DETECTION
• User corrections → instinct
• Repeated structures → instinct
• Successful designs → instinct
│
▼
instincts/personal/
• always-propose-qa-role.md (0.9)
• writers-use-sonnet.md (0.7)
• check-tech-feasibility.md (0.8)
Add to ~/.claude/settings.json:
{
"hooks": {
"PreToolUse": [{
"matcher": "*",
"hooks": [{
"type": "command",
"command": "~/.claude/skills/continuous-learning-v2/hooks/observe.sh pre"
}]
}],
"PostToolUse": [{
"matcher": "*",
"hooks": [{
"type": "command",
"command": "~/.claude/skills/continuous-learning-v2/hooks/observe.sh post"
}]
}]
}
}
| Command | Description |
|---------|-------------|
| /instinct-status | Show learned team design instincts with confidence |
| /evolve | Cluster related instincts into reusable skills |
| /instinct-export | Export instincts for sharing |
| /instinct-import | Import instincts from other A-Team instances |
Instincts complement the auto memory system (MEMORY.md):
After 5 team design sessions, observer detects: in 4/5 sessions, the user asked to add a "technical feasibility assessor" role that was not in the initial design.
---
id: propose-tech-feasibility-role
trigger: "when designing a technology-oriented team"
confidence: 0.8
domain: "role-design"
---
# Propose Technical Feasibility Role
## Action
When the team's output involves technology, proactively ask the user if a technical feasibility assessment role is needed.
## Evidence
- User added tech feasibility role in 4/5 recent tech team designs
- Pattern first observed: 2025-01-20
data-ai
Evaluate whether a proposed agent graph supports safe handoffs and useful parallel work
testing
Extract precise team requirements through staged, single-direction questioning
content-media
Search external sources for reusable skills before designing a new one
data-ai
Create or improve a skill by using the system skill when available and the legacy local bundle as fallback