تشغيل أي مهارة في Manus
بنقرة واحدة
بنقرة واحدة
تشغيل أي مهارة في Manus بنقرة واحدة
ابدأ الآن$pwd:
$ git log --oneline --stat
stars:٤١٢
forks:٤١
updated:١٣ مارس ٢٠٢٦ في ١١:٥٤
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*