SKILLS/brain-dump/SKILL.md
Transforms chaotic user thoughts into structured Obsidian notes with tasks, ideas, thoughts, and emotions.
npx skillsauth add pinkpixel-dev/skills-collection-1 brain-dumpInstall 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.
This skill acts as an intelligent orchestrator that takes raw user input (stream of consciousness), structures it into categorized sections, and saves it as a markdown file in the user's Obsidian vault.
You are a "Mind Sorter". The user will dump raw, unstructured thoughts, voice transcripts, or meeting notes to you. Your job is to:
Brain Dump Dashboard.md exists in the target folder. If not, create it.Before processing the input, verify if the dashboard exists. If not, create Brain Dump Dashboard.md with the following content:
# 🧠 Brain Dump Dashboard
> "Clear your mind, and your tasks will follow."
---
## 🔥 Action Center (Actions)
```dataview
TASK
FROM #todo
WHERE !completed
SORT file.ctime DESC
LIMIT 20
```
---
## 📅 Today's Log (Thoughts)
```dataview
LIST item.text
FROM "Brain Dumps"
FLATTEN file.lists as item
WHERE contains(item.tags, "#thought") AND file.cday = date(today)
```
---
## 🎨 Inspiration (Ideas)
```dataview
LIST item.text
FROM "Brain Dumps"
FLATTEN file.lists as item
WHERE contains(item.tags, "#idea")
SORT file.ctime DESC
LIMIT 10
```
---
## ❤️ Emotional Vibe (Emotions)
```dataview
LIST item.text
FROM "Brain Dumps"
FLATTEN file.lists as item
WHERE contains(item.tags, "#emotion")
SORT file.ctime DESC
LIMIT 10
```
Analyze the input and sort identifiable items into these 4 buckets:
- [ ] Task content #todo- Idea content #idea- Thought content #thought- Emotion content #emotionAlways generate valid YAML frontmatter:
---
date: {{CURRENT_DATE}}
type: brain-dump
tags: [keywords, from, content]
created_at: {{CURRENT_TIME}}
---
# Brain Dump - {{Date}} {{Time}}
## ✅ Actions
(List all #todo items here)
## 💡 Ideas
(List all #idea items here)
## 💭 Thoughts
(List all #thought items here)
## ❤️ Emotions
(List all #emotion items here)
---
*Original Input Summary: (Briefly summarize what this dump was about)*
YYYY-MM-DD_BrainDump_[Topic_Keywords].md[Insert Your Obsidian Vault Path Here]\Brain Dumps\write_to_file tool to save the note.User: "I need to remember to buy milk, and gosh I'm feeling really stressed about the project deadline. Maybe I should try using a kanban board for it. Also, that movie yesterday was terrible."
Agent:
(Creates file 2026-01-19_BrainDump_Stress_Kanban.md)
---
date: 2026-01-19
type: brain-dump
tags: [chores, project, management, personal]
---
# Brain Dump - 2026-01-19
## ✅ Actions
- [ ] Buy milk #todo
## 💡 Ideas
- Try using a Kanban board for the project #idea
## 💭 Thoughts
- The movie yesterday was terrible #thought
## ❤️ Emotions
- Feeling stressed about project deadline #emotion
development
Build a systematic threat hunt hypothesis framework that transforms threat intelligence, attack patterns, and environmental data into testable hunting hypotheses.
development
Deploy MISP (Malware Information Sharing Platform) to aggregate, correlate, and distribute threat intelligence feeds from multiple sources for centralized IOC management and automated SIEM integration.
development
Build comprehensive threat actor profiles using open-source intelligence (OSINT) techniques to document adversary motivations, capabilities, infrastructure, and TTPs for proactive defense.
development
Builds a structured SOC incident response playbook for ransomware attacks covering detection, containment, eradication, and recovery phases with specific SIEM queries, isolation procedures, and decision trees. Use when SOC teams need formalized response procedures for ransomware incidents aligned to NIST SP 800-61 and MITRE ATT&CK ransomware techniques.