Compile complete (10 professions x 150 attributed entries). The lint gate correctly blocked the v1-grade carrier packages (truncation defect); regen_skillmd.py brings them to reference SKILL.md quality (full competences, clean intro, market sections preserved) - all 9 published through the gate. Global stackx provenance: 1,350 items, measured. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01PDKeXvpT6tENSvyQGLV1Uq
6 lines
386 B
PowerShell
6 lines
386 B
PowerShell
$log = "C:\dev\skillfactor\docs\logs\se_pipeline.log"
|
|
while (-not (Select-String -Path $log -Pattern "SE FINISH CHAIN COMPLETE" -Quiet -ErrorAction SilentlyContinue)) { Start-Sleep -Seconds 300 }
|
|
Set-Location C:\dev\skillfactor
|
|
cmd /c '".venv\Scripts\python.exe" -u knowledge\pipeline\se_competences.py >> docs\logs\se_pipeline.log 2>&1'
|
|
Add-Content $log "COMPETENCE CHAIN COMPLETE"
|