Fähigkeiten obsidian-clipper-template-creator
📋

obsidian-clipper-template-creator

Sicher

Create Obsidian Web Clipper Templates

This skill guides users through creating importable JSON templates for the Obsidian Web Clipper, enabling structured extraction of web content into your Obsidian vault.

Unterstützt: Claude Codex Code(CC)
🥈 80 Silber
1

Die Skill-ZIP herunterladen

2

In Claude hochladen

Gehe zu Einstellungen → Fähigkeiten → Skills → Skill hochladen

3

Einschalten und loslegen

Teste es

Verwendung von "obsidian-clipper-template-creator". Create a simple template for clipping blog posts

Erwartetes Ergebnis:

A JSON template with schema version, name, behavior settings, note content format using {{content}} variable, and properties for author, title, url, and published date with appropriate data types.

Verwendung von "obsidian-clipper-template-creator". How do I use selector variables?

Erwartetes Ergebnis:

Explanation of selector syntax: {{selector:css-selector}} for text content, {{selector:css-selector?attribute}} for specific attributes, and examples like {{selector:.author}} or {{selector:img.hero?src}}.

Verwendung von "obsidian-clipper-template-creator". Create a recipe template using Schema.org

Erwartetes Ergebnis:

A template using schema variables like {{schema:Recipe:recipeIngredient}} for ingredients, {{schema:Recipe:cookTime}} for cooking time, and {{schema:author.name}} for the author name.

Sicherheitsaudit

Sicher
v1 • 2/24/2026

This is a documentation and guidance skill for creating Obsidian Web Clipper templates. All static scanner findings are false positives: backtick patterns in markdown are template variables, 'weak crypto' detections are double-brace template syntax, and hardcoded URLs are documentation links. No executable code, no network requests initiated by the skill, no file modifications.

8
Gescannte Dateien
480
Analysierte Zeilen
0
befunde
1
Gesamtzahl Audits
Keine Sicherheitsprobleme gefunden
Auditiert von: claude

Qualitätsbewertung

59
Architektur
100
Wartbarkeit
87
Inhalt
50
Community
100
Sicherheit
100
Spezifikationskonformität

Was du bauen kannst

Create a YouTube Video Template

Build a template to clip YouTube videos with video title, channel name, duration, and thumbnail into your Obsidian vault.

Create a Recipe Clipping Template

Design a template to extract recipe ingredients, instructions, and photos from cooking websites using Schema.org data.

Build a Research Article Template

Create a template to clip academic articles with title, authors, abstract, publication date, and source URL for research notes.

Probiere diese Prompts

Simple Template Request
Create an Obsidian Web Clipper template for clipping [TYPE OF CONTENT] from websites. I want to extract [WHAT DATA FIELDS]. Show me the JSON format.
Template with CSS Selectors
I want to clip articles from [WEBSITE URL]. Analyze the page and create a template using CSS selectors to extract [SPECIFIC ELEMENTS]. Use WebFetch to analyze the page first.
Schema.org Template
Create a template that extracts structured data from [WEBSITE] using Schema.org JSON-LD. Focus on extracting [RECIPE/ARTICLE/PRODUCT] data fields. Verify the selectors work.
Complex Multi-Section Template
Build a comprehensive template for clipping [BLOG/WEBSITE] that extracts: 1) Main content with markdown formatting, 2) Author and date metadata, 3) Featured image, 4) Tags from meta tags. Include proper frontmatter and folder structure.

Bewährte Verfahren

  • Always verify CSS selectors against actual page content using WebFetch before finalizing templates
  • Use stable selectors that are unlikely to change (data attributes, semantic HTML) rather than fragile class chains
  • Test templates with multiple pages from the same site to ensure selector reliability

Vermeiden

  • Guessing selectors without analyzing actual page HTML - this leads to broken templates
  • Using brittle class names that change with website updates
  • Skipping the verification step and creating templates that fail on actual use

Häufig gestellte Fragen

What is the Obsidian Web Clipper?
The Obsidian Web Clipper is a browser extension that lets you save web content directly into your Obsidian vault with customizable templates.
Do I need programming knowledge to use this skill?
No. This skill provides guidance on creating templates. You just need to understand basic JSON structure and follow the workflow steps.
Can this skill create templates for any website?
Yes, but the quality depends on the website structure. Some sites use Schema.org data making extraction easier, while others require custom CSS selectors.
How do I import the created templates?
Copy the JSON output from this skill, then in Obsidian Web Clipper settings, choose 'Import template' and paste the JSON.
What are preset variables?
Preset variables are automatically extracted data like {{title}}, {{url}}, {{content}}, {{author}}, and {{date}} that work on most web pages without configuration.
How do I handle websites that block scraping?
This skill cannot bypass website restrictions. Some sites may block the Web Clipper or require authentication. You may need to use browser bookmarks or manual copying for those cases.