comprehensive-learning
Installation
SKILL.md
comprehensive-learning — Session Learning Pipeline
Single fire-and-forget skill running Phases 1–9 on all machines and Phases 10a+10 (cross-machine compilation + report) on dev-primary only.
Full phase specs:
references/pipeline-detail.md— read it when you need signal sources, extraction rules, candidate formats, or state file details.
Mode-Based Routing
MACHINE=$(hostname -s 2>/dev/null || hostname | cut -d. -f1 | tr '[:upper:]' '[:lower:]')
case "$MACHINE" in
dev-primary) CL_MODE="full" ;;
dev-secondary) CL_MODE="contribute" ;;
licensed-win-1|licensed-win-2) CL_MODE="contribute" ;;
*) CL_MODE="contribute" ;;
esac
# All modes run Phases 1–9. Only 'full' runs Phase 10a (compilation) + Phase 10 (report).