Ejecuta cualquier Skill en Manus
con un clic
con un clic
Ejecuta cualquier Skill en Manus con un clic
Comenzar$pwd:
$ git log --oneline --stat
stars:412
forks:41
updated:13 de marzo de 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*