chore(workspace): add hardened startup/security workflows and skill suite

This commit is contained in:
zap
2026-03-04 19:13:33 +00:00
parent 4903e9d75d
commit 808af5ee13
58 changed files with 3787 additions and 3 deletions

View File

@@ -0,0 +1,21 @@
#!/usr/bin/env bash
set -euo pipefail
ROOT="/home/openclaw/.openclaw/workspace"
SKILL_DIR="$ROOT/skills/searxng-local-search"
ENV_FILE="$ROOT/.env"
if [[ -f "$ENV_FILE" ]]; then
set -a
# shellcheck disable=SC1090
source "$ENV_FILE"
set +a
fi
if [[ $# -lt 1 ]]; then
echo "Usage: scripts/search.sh \"query\" '[{"category":"news","time_range":"day","num_results":5}]'" >&2
echo "Example: scripts/search.sh \"openclaw ai\" '{\"num_results\":3}'" >&2
exit 1
fi
exec bb "$SKILL_DIR/scripts/search.clj" "$@"