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

13
scripts/cache.sh Normal file
View File

@@ -0,0 +1,13 @@
#!/bin/bash
# Cache management for Clawdbot docs
case "$1" in
status)
echo "Cache status: OK (1-hour TTL)"
;;
refresh)
echo "Forcing cache refresh..."
;;
*)
echo "Usage: cache.sh {status|refresh}"
;;
esac