obsidian-clipper-template-creator
Obsidian Web Clipper テンプレートを作成
このスキルは、Obsidian Web Clipper 用にインポート可能な JSON テンプレートの作成を通じて、Web コンテンツを構造化された形式で Obsidian ボールトに抽出する手順をガイドします。
スキルZIPをダウンロード
Claudeでアップロード
設定 → 機能 → スキル → スキルをアップロードへ移動
オンにして利用開始
テストする
「obsidian-clipper-template-creator」を使用しています。 ブログ投稿をクリップするためのシンプルなテンプレートを作成
期待される結果:
スキーマバージョン、名前、動作設定、{{content}} 変数を使用したノートコンテンツ形式、適切なデータ型を持つ著者、タイトル、URL、公開日のプロパティを含む JSON テンプレート。
「obsidian-clipper-template-creator」を使用しています。 セレクター変数はどのように使用しますか?
期待される結果:
セレクター構文の説明:テキストコンテンツ用の {{selector:css-selector}}、特定属性用の {{selector:css-selector?attribute}}、および {{selector:.author}} や {{selector:img.hero?src}} などの例。
「obsidian-clipper-template-creator」を使用しています。 Schema.org を使用したレシピテンプレートを作成
期待される結果:
材料用の {{schema:Recipe:recipeIngredient}}、調理時間用の {{schema:Recipe:cookTime}}、著者名用の {{schema:author.name}} などの schema 変数を使用したテンプレート。
セキュリティ監査
安全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.
品質スコア
作れるもの
YouTube 動画テンプレートを作成
YouTube 動画を Obsidian ボールトにクリップするためのテンプレートを作成します。動画タイトル、チャンネル名、再生時間、サムネイルを含めます。
レシピクリッピングテンプレートを作成
Schema.org データを使用して、料理ウェブサイトからレシピの材料、手順、写真を抽出するテンプレートを設計します。
研究論文テンプレートを作成
研究ノート用に、タイトル、著者、要約、公開日、ソース URL を含む学術論文をクリップするテンプレートを作成します。
これらのプロンプトを試す
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.
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.
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.
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.
ベストプラクティス
- テンプレートを確定する前に、WebFetch を使用して実際のページコンテンツに対して CSS セレクターを常に検証する
- 変更されにくい安定したセレクター(data 属性、セマンティック HTML)を使用し、壊れやすいクラスチェーンは避ける
- セレクターの信頼性を確保するために、同じサイトの複数のページでテンプレートをテストする
回避
- 実際のページ HTML を分析せずにセレクターを推測する - これはテンプレートの破綻につながる
- ウェブサイトのアップデートで変更される壊れやすいクラス名を使用する
- 検証ステップをスキップして、実際の使用で失敗するテンプレートを作成する