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:
parent
8e280cb40c
commit
5e0649dcdc
1 changed files with 12 additions and 0 deletions
|
|
@ -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
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue