Skill: Research
When to Use
- User shares research findings, an article summary, or key learnings
- User says "save this research", "add to research", "log this finding", "research note"
- After a deep-research session, when findings should be persisted
- User discovers something relevant to their business, industry, or goals
Prerequisites
Writes to a Notion database. The user must have configured in personal/notion-databases.md:
research_database_id: <user's Notion database ID>
research_data_source: collection://<data source id>
research_parent_page: <parent page id>
If not present, ask the user to set it up or suggest running the onboard skill.
Expected Notion Schema
| Property |
Type |
Options |
| Topic |
title |
Clear research topic |
| Category |
select |
Business, AI, Marketing, Finance, Industry (user can customize) |
| Source URL |
url |
Optional — where the info came from |
| Key Takeaways |
text |
The essential findings, 2–5 bullet points |
| Date |
date |
Auto-set to today |
| Status |
select |
Unread, Read, Applied |
Adapt to user's actual property names if they differ.
Steps
- Identify the research topic from the user's message or session context.
- Determine the best Category fit.
- Write concise Key Takeaways (2–5 bullet points, plain language, actionable where possible).
- Capture Source URL if provided.
- Set Date to today. Set Status to "Read" if the user has already reviewed the content, "Unread" if saving for later.
- Create the entry via
mcp__notion__notion-create-pages.
- If the research has detailed findings beyond the takeaways, add them as page body content.
- Confirm back with topic and category.
Rules
- Key Takeaways should be specific and actionable, not generic summaries.
- After a deep-research session, proactively suggest saving the findings here.
- If the research connects to a current goal or project (from
personal/goals.md), mention that connection.
- Yellow tier when proactively suggesting. Green tier when user explicitly asks.
- One entry per distinct research topic. Don't combine unrelated findings.
Output Format
Saved to Research:
- [Topic] ([Category]) — [X] takeaways captured
One line per entry.
1---2name: research3description: Save research findings, articles, and learnings to the user's Notion Research database with key takeaways. Use when the user says "save this research", "add to research", "log this finding", "research note", or after a deep-research session when findings should be persisted.4---56# Skill: Research78## When to Use910- User shares research findings, an article summary, or key learnings11- User says "save this research", "add to research", "log this finding", "research note"12- After a deep-research session, when findings should be persisted13- User discovers something relevant to their business, industry, or goals1415## Prerequisites1617Writes to a Notion database. The user must have configured in `personal/notion-databases.md`:1819```20research_database_id: <user's Notion database ID>21research_data_source: collection://<data source id>22research_parent_page: <parent page id>23```2425If not present, ask the user to set it up or suggest running the onboard skill.2627## Expected Notion Schema2829| Property | Type | Options |30|----------|------|---------|31| Topic | title | Clear research topic |32| Category | select | Business, AI, Marketing, Finance, Industry (user can customize) |33| Source URL | url | Optional — where the info came from |34| Key Takeaways | text | The essential findings, 2–5 bullet points |35| Date | date | Auto-set to today |36| Status | select | Unread, Read, Applied |3738Adapt to user's actual property names if they differ.3940## Steps41421. Identify the research topic from the user's message or session context.432. Determine the best Category fit.443. Write concise Key Takeaways (2–5 bullet points, plain language, actionable where possible).454. Capture Source URL if provided.465. Set Date to today. Set Status to "Read" if the user has already reviewed the content, "Unread" if saving for later.476. Create the entry via `mcp__notion__notion-create-pages`.487. If the research has detailed findings beyond the takeaways, add them as page body content.498. Confirm back with topic and category.5051## Rules5253- Key Takeaways should be specific and actionable, not generic summaries.54- After a deep-research session, proactively suggest saving the findings here.55- If the research connects to a current goal or project (from `personal/goals.md`), mention that connection.56- Yellow tier when proactively suggesting. Green tier when user explicitly asks.57- One entry per distinct research topic. Don't combine unrelated findings.5859## Output Format6061```62Saved to Research:63- [Topic] ([Category]) — [X] takeaways captured64```6566One line per entry.