一键导入
safari-archiver
Archive the current Safari page or PDF to Obsidian as clean markdown with images, frontmatter, and domain-based folder structure
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Archive the current Safari page or PDF to Obsidian as clean markdown with images, frontmatter, and domain-based folder structure
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Use when the user asks to "browse a website", "go to a URL", "fill out a form", "take a screenshot", "click on something", "extract data from a page", "automate a browser task", "control the desktop", "use the computer", or any task involving web pages or desktop applications.
Use when the user wants to make a phone call, leave a voicemail, call a business, reach someone by phone, or navigate a phone menu. Triggered by "/call" followed by a phone number and purpose.
Start or continue a progressive learning session. Use when the user says "learn", "let's learn", "continue learning", "let's continue", "pick up where we left off", "teach me", "next lesson", or wants to resume their learning curriculum. Requires a phase map to exist in docs/phases/.
Design progressive learning curricula and generate project phase maps. Use when the user says "learn-design", "design curriculum", "plan learning path", "set up next project", "what should I learn next", or wants to start learning a new technical area. Also triggers between projects to generate the next project's phase map calibrated to the learner's profile.
This skill converts any content source into podcast episodes. Triggers: sending a URL, PDF, YouTube link, book, or file with intent to listen; phrases like 'podcast this', 'make this a podcast', 'listen to this', 'generate a podcast'; sending content with instructions like 'split by chapters', 'make a series'. Handles single articles, multi-chapter books, YouTube playlists, and any document format.
This skill should be used when the user asks to "read a paper", "understand a paper", "analyze a research paper", "prepare for paper discussion", "work through a paper", "do a literature review", or provides PDF paths to research papers. Guides deep paper understanding using Keshav's three-pass method with AI as a patient professor. Supports multiple papers for literature review.
| name | safari-archiver |
| description | Archive the current Safari page or PDF to Obsidian as clean markdown with images, frontmatter, and domain-based folder structure |
Archives web pages and PDFs from Safari into an Obsidian vault as clean Markdown files. Two variants are provided: a Python-backed AppleScript (full-featured) and a pure JavaScript AppleScript (no Python dependency, but no PDF support).
Use this skill when the user wants to save the current Safari page to Obsidian, export a web page as markdown, or archive a PDF from Safari.
The core extraction engine. Called by the AppleScript wrappers.
python3 ${CLAUDE_PLUGIN_ROOT}/scripts/safari-markdown-exporter.py <input_file> <url> [title] [--pdf]
How it works:
![[folder/image.jpg]]). Handles both trafilatura-found images and raw HTML-extracted figures/standalone images.Output structure:
Obsidian Vault/Saved Pages/
<domain>/
001 - 2026-01-15 - Article Title.md # Markdown with frontmatter
001 - 2026-01-15 - Article Title/ # Asset folder
image1.jpg
image2.png
YAML frontmatter includes: title, url, domain, date_saved, and optionally source_pdf.
Triggered via keyboard shortcut (Automator Quick Action). Workflow:
--pdf flagNOTE: The .scpt file contains hardcoded paths that must be updated for your environment:
pythonScript property -- path to safari-markdown-exporter.pypythonPath property -- path to Python 3.11+ interpreterA self-contained version that embeds an HTML-to-Markdown converter in JavaScript. No Python dependency, but does not support PDF archival. Handles image downloading via curl and Obsidian wiki-link rewriting natively in AppleScript.
A simpler utility that exports the current Safari page as PDF using Safari's "Export as PDF" menu, auto-increments a counter for sequential filenames, scrolls to the bottom of the page, and navigates to the next page. Useful for batch-exporting multi-page courseware.
pythonScript and pythonPath properties in the .scpt files to match your local paths.scpt file