Initial commit

This commit is contained in:
Z User
2026-06-06 05:21:10 +00:00
Unverified
commit 6664758a6d
493 changed files with 135653 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
#!/bin/bash
# Skill 搜索脚本
QUERY="$1"
LIMIT="${2:-10}"
if [ -z "$QUERY" ]; then
echo "用法: search.sh <关键词> [数量]"
exit 1
fi
echo "🔍 搜索: $QUERY"
echo "================================"
clawhub search "$QUERY" --limit "$LIMIT"