savenotion/SKILL.md
--- description: Save conversation or content to Notion database allowed-tools: Bash(*), Write, Read argument-hint: [title] [content] --- # Save to Notion Save content to your Notion database with full Markdown formatting support. ## Instructions 1. Parse arguments: - First argument: title (required, default to date+topic if empty) - Remaining: content (optional, or summarize conversation) 2. If no content provided, summarize the key points from current conversation 3. **For long con
npx skillsauth add atxinsky/skills savenotionInstall 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 to your Notion database with full Markdown formatting support.
Parse arguments:
If no content provided, summarize the key points from current conversation
For long content (recommended): Write to temp file first, then upload
# Step 1: Write content to temp file using Write tool
# File path: /Users/tretra/temp_notion_content.md
# Step 2: Upload
python3 "/Users/tretra/.claude/commands/notion-save-skill/scripts/save_to_notion.py" --title "TITLE" --file "/Users/tretra/temp_notion_content.md" --api-key "YOUR_NOTION_API_TOKEN"
For short content: Use inline (but avoid $ signs in bash)
python3 "/Users/tretra/.claude/commands/notion-save-skill/scripts/save_to_notion.py" --title "TITLE" --content "SHORT_CONTENT" --api-key "YOUR_NOTION_API_TOKEN"
Report success/failure to user with the Notion page URL
development
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