Initial commit with translated description

This commit is contained in:
2026-03-29 13:08:57 +08:00
commit f2082f52b5
11 changed files with 339 additions and 0 deletions

23
scripts/sitemap.sh Normal file
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