notion-save-skill/SKILL.md
Save notes, ideas, and content directly to Notion database. Use when Claude needs to persist conversation insights, trading notes, research findings, or any content to Notion for later reference. Triggers on phrases like "save to notion", "记录到notion", "add to my notes database".
npx skillsauth add atxinsky/skills notion-saveInstall 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.
Save content directly to your Notion database via the official Notion API with full Markdown support.
# Write content to temp file first, then upload
python scripts/save_to_notion.py --title "Research Report" --file report.md --api-key "YOUR_KEY"
python scripts/save_to_notion.py --title "Quick Note" --content "# Title\n- Item 1\n- Item 2" --api-key "YOUR_KEY"
python scripts/save_to_notion.py --list --api-key "YOUR_KEY"
| Element | Syntax | Notion Block Type |
|---------|--------|-------------------|
| Heading 1 | # Title | heading_1 |
| Heading 2 | ## Title | heading_2 |
| Heading 3 | ### Title | heading_3 |
| Bullet list | - item | bulleted_list_item |
| Numbered list | 1. item | numbered_list_item |
| Code block | ```lang | code |
| Table | \| col \| col \| | table |
| Quote | > text | quote |
| Divider | --- | divider |
| Bold | **text** | annotation |
| Italic | *text* | annotation |
| Code | `text` | annotation |
| Link | [text](url) | link |
When saving long research reports or conversation content:
--file parameterExample:
# In Claude's workflow:
# 1. Write content to temp file
with open('temp_report.md', 'w', encoding='utf-8') as f:
f.write(markdown_content)
# 2. Call save script
python scripts/save_to_notion.py --title "Report Title" --file temp_report.md --api-key "KEY"
2decc7dd-3404-8002-a7e7-d64733a75885--api-key or NOTION_API_KEY env vardevelopment
Use this skill any time a spreadsheet file is the primary input or output. This means any task where the user wants to: open, read, edit, or fix an existing .xlsx, .xlsm, .csv, or .tsv file (e.g., adding columns, computing formulas, formatting, charting, cleaning messy data); create a new spreadsheet from scratch or from other data sources; or convert between tabular file formats. Trigger especially when the user references a spreadsheet file by name or path — even casually (like "the xlsx in my downloads") — and wants something done to it or produced from it. Also trigger for cleaning or restructuring messy tabular data files (malformed rows, misplaced headers, junk data) into proper spreadsheets. The deliverable must be a spreadsheet file. Do NOT trigger when the primary deliverable is a Word document, HTML report, standalone Python script, database pipeline, or Google Sheets API integration, even if tabular data is involved.
testing
Use when creating new skills, editing existing skills, or verifying skills work before deployment
development
Use when you have a spec or requirements for a multi-step task, before touching code
documentation
Create detailed implementation plan with bite-sized tasks