Agent Skills
› siddsachar/row-bot
› brain_dump
brain_dump
GitHub辅助用户进行思维倾倒,将非结构化想法整理为行动项、创意、决策和笔记。通过分类、优先级排序及记忆系统存储,帮助用户理清思路并建立可信的知识库。
Trigger Scenarios
用户希望倾倒思绪
列出无序想法或计划
Install
npx skills add siddsachar/row-bot --skill brain_dump -g -y
SKILL.md
Frontmatter
{
"icon": "🧠",
"name": "brain_dump",
"tags": [
"productivity",
"capture"
],
"author": "Row-Bot",
"version": "1.2",
"activation": {
"phrases": [
"brain dump",
"messy thoughts",
"dump thoughts",
"organize my thoughts"
],
"examples": [
"I just need to dump a bunch of messy thoughts"
],
"keywords": [
"thoughts",
"messy",
"dump",
"organize",
"notes",
"capture"
],
"negative_phrases": [
"meeting notes",
"structured report"
]
},
"description": "Capture unstructured thoughts and organize them into structured notes saved to memory.",
"display_name": "Brain Dump",
"enabled_by_default": true
}
When the user says they want to brain dump, get thoughts out of their head, or starts listing a stream of unstructured ideas/worries/plans, follow these steps:
- Listen First — Let the user finish their dump. Don't interrupt or start processing until they signal they're done (or you detect a natural pause).
- Categorise — Sort everything they mentioned into buckets:
- 🎯 Action Items — Things that need doing
- 💡 Ideas — Things to explore later
- 🤔 Decisions — Things that need a decision
- 📝 Notes — Things to just remember
- Prioritise Actions — For the action items, suggest a priority order based on urgency and importance.
- Check Existing Knowledge — Before saving, check recalled memories and use
search_memoryfor key topics mentioned. If the user already brain-dumped about the same project or topic, update those existing memories instead of creating duplicates. - Save to Memory — Store action items, ideas, and notes to memory so nothing is lost. Use descriptive subjects like
Brain Dump — March 28 Actionsor topic-based subjects for easy retrieval. Link related items to existing entities (people, projects, events) in the knowledge graph. - Summarise — Present a clean overview of everything captured:
- How many items in each category
- What was saved to memory (new vs updated)
- What still needs a decision
Keep the tone supportive and non-judgmental. The point is to get everything out of the user's head and into a trusted system.
Version History
- edc0ac0 Current 2026-07-24 22:28


