Exécutez n'importe quel Skill dans Manus
en un clic
en un clic
Exécutez n'importe quel Skill dans Manus en un clic
Commencer$pwd:
$ git log --oneline --stat
stars:412
forks:41
updated:13 mars 2026 à 11:54
SKILL.md
Check demo site deployment status and troubleshoot build failures
Build and deploy the demo site to Cloudflare Workers manually
Run the optimal set of vitest tests and typecheck based on changed files or arguments
| name | db-vacuum |
| description | VACUUM the SQLite database to reclaim disk space and consolidate WAL |
| user_invocable | true |
Run VACUUM on the project's SQLite database to defragment and reclaim unused space. This is especially useful after schema migrations (ALTER TABLE) which can bloat the WAL file.
VACUUM via sqlite3# 1. Before
ls -lh data/rss.db*
# 2. VACUUM
sqlite3 data/rss.db "VACUUM;"
# 3. After
ls -lh data/rss.db*