feat(skills): add clawddocs skill v1.2.2

This commit is contained in:
zap
2026-03-06 00:40:01 +00:00
parent 3c898aafd1
commit 21f8c374e8
11 changed files with 339 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
#!/bin/bash
# Full-text index management (requires qmd)
case "$1" in
fetch)
echo "Downloading all docs..."
;;
build)
echo "Building search index..."
;;
search)
shift
echo "Semantic search for: $*"
;;
*)
echo "Usage: build-index.sh {fetch|build|search <query>}"
;;
esac