Wire skills-engine init into install pipeline (Sam & Claude)

Add .nanoclaw/ and bootstrap artifact checks to shell-deploy.sh
post-install verification. Complements the new skills-init step
added to clawdie-ai's install pipeline.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Sam & Claude 2026-04-05 09:22:41 +00:00 committed by 123kupola
parent 8e280cb40c
commit 5e0649dcdc

View file

@ -196,6 +196,18 @@ clawdie_shell_deploy_verify() {
failed=1
fi
# Check if skills engine was initialized
if [ -d "$CLAWDIE_AI_DIR/.nanoclaw" ] && [ -f "$CLAWDIE_AI_DIR/.nanoclaw/state.yaml" ]; then
log_msg "[deploy] ✓ Skills engine initialized (.nanoclaw/)"
else
log_msg "[deploy] ⚠ Skills engine not initialized (.nanoclaw/ missing)"
fi
# Check if bootstrap knowledge was imported
if [ -f "$CLAWDIE_AI_DIR/bootstrap/skills-memory/artifact.sql" ]; then
log_msg "[deploy] ✓ Bootstrap knowledge artifact present"
fi
return $failed
}