一键导入
inbox-watcher
Check for unprocessed files and suggest appropriate skills to handle them
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Check for unprocessed files and suggest appropriate skills to handle them
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | inbox-watcher |
| context | fork |
| description | Check for unprocessed files and suggest appropriate skills to handle them |
| model | haiku |
Monitor for unprocessed files in the vault and suggest the appropriate skill to handle each.
/inbox-watcher # Check and classify all unprocessed files
/inbox-watcher --process # Check and auto-process with suggested skills
npm run inbox:check 2>/dev/null
If no inbox script output, fall back to scanning common drop locations:
# Check for files that may need processing
ls -t voicenotes/*.md 2>/dev/null | head -10
ls -t Attachments/*.pdf Attachments/*.pptx 2>/dev/null | head -10
Find markdown files that lack a type field in frontmatter (potential unprocessed content):
node .claude/scripts/graph-query.js --where="type=" --json 2>/dev/null
If graph-query.js does not support querying for empty/null type, use a Grep fallback:
# Find notes without a type field in frontmatter
find . -name "*.md" -not -path "./.claude/*" -not -path "./.obsidian/*" -not -path "./node_modules/*" -not -path "./Templates/*" -not -path "./Archive/*" | while read f; do
if \! head -20 "$f" | grep -q "^type:"; then echo "$f"; fi
done
For each unprocessed file, suggest the appropriate skill:
| File Pattern | Suggested Skill | Rationale |
|---|---|---|
voicenotes/*.md | /meeting or /daily | Voice transcriptions → meeting notes or daily entries |
Attachments/*.pdf | /pdf-to-page | PDFs → structured page notes |
Attachments/*.pptx | /pptx-to-page | PowerPoints → page notes with slide images |
*.csv in root | /csv-to-page or /csv-to-sql | Data files → markdown tables or SQLite |
Untyped .md at root | /incubator or manual triage | Loose notes need classification |
Email - *.md without type | /email | Email drafts needing frontmatter |
## Inbox Report — YYYY-MM-DD
### Unprocessed Files (N found)
| # | File | Type | Suggested Action |
|---|------|------|-----------------|
| 1 | voicenotes/2026-02-13... | Voice note | `/meeting` — transcribe to meeting note |
| 2 | Attachments/report.pdf | PDF | `/pdf-to-page` — extract to page |
### Quick Actions
- Process all: `/inbox-watcher --process`
- Process one: Run the suggested skill command
If --process flag is set, run npm run inbox:process and then invoke the suggested skill for each file sequentially, confirming with the user before each.
--process is explicitly requestedArchive/, Templates/, and .claude/Generate C4 architecture diagrams from system notes
Create and edit Obsidian Canvas files for architecture visualization
Visualize system dependencies and relationships
Analyse architecture diagrams and flowcharts
Generate architecture diagrams using Python diagrams library
Batch populate summary fields using content analysis