在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用$pwd:
$ git log --oneline --stat
stars:412
forks:41
updated:2026年3月13日 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*