ワンクリックで
continuous-learning-v2
Instinct-based learning system that captures team design patterns via hooks and evolves them into reusable knowledge
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Instinct-based learning system that captures team design patterns via hooks and evolves them into reusable knowledge
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Canonical validation checklist for generated team structures, executed by a fresh-context verifier
Entry point that makes this session adopt the Team Architect workflow to run the full team design process
Start the A-Team Codex coordinator workflow for designing or restructuring teams
Rewrite generated prompts to be sharper, shorter, and more executable without changing meaning
Apply Codex-native prompt patterns for agents, skills, rules, and project instructions
Validate that a generated Codex team is structurally complete and internally consistent
| name | Continuous Learning V2 |
| description | Instinct-based learning system that captures team design patterns via hooks and evolves them into reusable knowledge |
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