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,23 @@
#!/bin/bash
# Sitemap generator - shows all docs by category
echo "Fetching Clawdbot documentation sitemap..."
# Categories structure based on docs.clawd.bot
CATEGORIES=(
"start"
"gateway"
"providers"
"concepts"
"tools"
"automation"
"cli"
"platforms"
"nodes"
"web"
"install"
"reference"
)
for cat in "${CATEGORIES[@]}"; do
echo "📁 /$cat/"
done