vault/Operations/Claude/skills/operations/inbox-file/SKILL.md
Process items in the Inbox folder - preview, suggest destinations, and file with minimal frontmatter
npx skillsauth add eddowding/cortex inbox-fileInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Process items dropped in the Inbox folder, suggesting destinations and filing with user's approval.
Interactively process each item in Inbox/, showing content previews, suggesting destinations, and moving files with minimal frontmatter added.
ls -la {VAULT_PATH}/Inbox/ | grep -v README.md | grep -v ".DS_Store"
If empty, report "Inbox empty - nothing to file" and exit.
Show preview:
Suggest destination based on hints:
| Hint/Pattern | Suggested Destination |
|--------------|----------------------|
| #project or project name | Projects/{name}/ |
| #meeting | Projects/{project}/meetings/ or Clients/{client}/meetings/ |
| #idea | Personal/Ideas/ |
| #client or client name | Clients/{name}/ |
| #reference or #clip | Knowledge/Clippings/ |
| #journal | Journal/ |
| PDF financial doc | Personal/Finances/ |
| No clear hint | Ask user |
Use AskUserQuestion:
If approved:
mv "{VAULT_PATH}/Inbox/{filename}" "{VAULT_PATH}/{destination}/"
If file is .md, optionally add minimal frontmatter:
---
type: note
date: YYYY-MM-DD
source: inbox
---
After processing all items:
| Type | Path |
|------|------|
| Project work | Projects/{project-name}/ |
| Client work | Clients/{client-name}/ |
| Ideas | Personal/Ideas/ |
| Financial docs | Personal/Finances/ |
| Reference material | Knowledge/Clippings/ |
| Daily reflection | Journal/ |
| Meeting notes | {project-or-client}/meetings/ |
| Family matters | Personal/Family/ |
If destination folder doesn't exist, ask user:
tools
Dispatch to the right problem-solving technique based on how you're stuck.
testing
Interactive brainstorming and advisory mode that helps think through questions, critique approaches, propose alternatives, and reach optimal decisions.
tools
Find one insight that eliminates multiple components - 'if this is true, we don't need X, Y, or Z'
testing
Test at extremes (1000x bigger/smaller) to expose fundamental truths hidden at normal scales.