一键导入
clear-caches
Clear extension caches, analysis data, and drafts from the database. Use when testing sender lookups, analysis, or draft generation from a clean state.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Clear extension caches, analysis data, and drafts from the database. Use when testing sender lookups, analysis, or draft generation from a clean state.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Test the Electron app interactively using Chrome DevTools Protocol. Use when the user asks to test, verify, or interact with the running app via browser automation.
Pre-commit code review for production-critical issues. Use when reviewing staged changes, before committing, or when asked to review code for bugs and consistency issues.
Capture screenshots of the AOS Mail Electron app workflows using Playwright in demo mode. Use when the user asks for screenshots, workflow documentation, or visual captures of the app.
| name | clear-caches |
| description | Clear extension caches, analysis data, and drafts from the database. Use when testing sender lookups, analysis, or draft generation from a clean state. |
| disable-model-invocation | true |
Clears all extension caches, analysis data, and draft data from the database. Use this when testing sender lookups, analysis, or draft generation from a clean state.
| Table | Description |
|---|---|
extension_enrichments | Cached enrichment results (sender profiles in sidebar) |
extension_storage | Extension key-value storage (includes profile:* web search cache) |
sender_profiles | Legacy sender profile cache |
analyses | Email analysis results (needs_reply, priority) |
drafts | Generated draft replies |
sqlite3 ~/Library/Application\ Support/AOS\ Mail/data/aos-mail.db "
DELETE FROM extension_enrichments;
DELETE FROM extension_storage;
DELETE FROM sender_profiles;
DELETE FROM analyses;
DELETE FROM drafts;
SELECT 'Cleared:',
(SELECT COUNT(*) FROM extension_enrichments) as enrichments,
(SELECT COUNT(*) FROM extension_storage) as storage,
(SELECT COUNT(*) FROM sender_profiles) as profiles,
(SELECT COUNT(*) FROM analyses) as analyses,
(SELECT COUNT(*) FROM drafts) as drafts;
"
[Prefetch], [Ext:web-search], [Ext:calendar] activityTo clear only specific caches:
# Clear only sender profile data (keeps analyses and drafts)
sqlite3 ~/Library/Application\ Support/AOS\ Mail/data/aos-mail.db "
DELETE FROM extension_enrichments;
DELETE FROM extension_storage WHERE key LIKE 'profile:%';
DELETE FROM sender_profiles;
"
# Clear only analyses (will re-analyze all emails)
sqlite3 ~/Library/Application\ Support/AOS\ Mail/data/aos-mail.db "DELETE FROM analyses;"
# Clear only drafts
sqlite3 ~/Library/Application\ Support/AOS\ Mail/data/aos-mail.db "DELETE FROM drafts;"