Jeden Skill in Manus ausführen
mit einem Klick
mit einem Klick
Jeden Skill in Manus mit einem Klick ausführen
Loslegen$pwd:
$ git log --oneline --stat
stars:412
forks:41
updated:13. März 2026 um 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*