Tests / Test (push) Skipped
Tests / OCR (tesseract fixture) (push) Skipped
Tests / Release (semver) (push) Skipped
Store valid_from/valid_to on leafs and filter search by calendar day without overloading D16 source staleness; stack start/start-assistant wires brain + PicoClaw.
18 lines
368 B
Bash
Executable File
18 lines
368 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# bin/stack/status - YAML health for brain MCP, reasoner model, PicoClaw gateway.
|
|
#
|
|
# bin/stack/status
|
|
# bin/stack/status | yq '.picoclaw'
|
|
set -euo pipefail
|
|
|
|
STACK_DIR="$(CDPATH= cd -- "$(dirname "$0")" && pwd)"
|
|
# shellcheck source=lib.sh
|
|
source "$STACK_DIR/lib.sh"
|
|
case "${1:-}" in
|
|
-h | --help)
|
|
stack_usage "$0"
|
|
exit 0
|
|
;;
|
|
esac
|
|
stack_status
|