jpskill.com
📦 その他 コミュニティ

obsidian-wiki-ingest

Automates ingestion of documents into the Obsidian wiki (obsidian-wiki) using the wiki-ingest pipeline. Handles deduplication via manifest, frontmatter, and cross-links; triggers on user request within the obsidian-wiki project context.

⚡ おすすめ: コマンド1行でインストール(60秒)

下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。

🍎 Mac / 🐧 Linux
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o obsidian-wiki-ingest.zip https://jpskill.com/download/22833.zip && unzip -o obsidian-wiki-ingest.zip && rm obsidian-wiki-ingest.zip
🪟 Windows (PowerShell)
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/22833.zip -OutFile "$d\obsidian-wiki-ingest.zip"; Expand-Archive "$d\obsidian-wiki-ingest.zip" -DestinationPath $d -Force; ri "$d\obsidian-wiki-ingest.zip"

完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。

💾 手動でダウンロードしたい(コマンドが難しい人向け)
  1. 1. 下の青いボタンを押して obsidian-wiki-ingest.zip をダウンロード
  2. 2. ZIPファイルをダブルクリックで解凍 → obsidian-wiki-ingest フォルダができる
  3. 3. そのフォルダを C:\Users\あなたの名前\.claude\skills\(Win)または ~/.claude/skills/(Mac)へ移動
  4. 4. Claude Code を再起動

⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。

🎯 このSkillでできること

下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。

📦 インストール方法 (3ステップ)

  1. 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
  2. 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
  3. 3. 展開してできたフォルダを、ホームフォルダの .claude/skills/ に置く
    • · macOS / Linux: ~/.claude/skills/
    • · Windows: %USERPROFILE%\.claude\skills\

Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。

詳しい使い方ガイドを見る →
最終更新
2026-05-18
取得日時
2026-05-18
同梱ファイル
2
📖 Claude が読む原文 SKILL.md(中身を展開)

この本文は AI(Claude)が読むための原文(英語または中国語)です。日本語訳は順次追加中。

Obsidian Wiki Ingest — Automation Skill

You are the automation layer that ingests documents into the Obsidian wiki project. This skill orchestrates the ingestion workflow, ensuring deduplication, proper frontmatter, and cross-linking with existing pages.

Trigger

  • User says: "ingest to wiki", "add to wiki", or any phrasing that targets the obsidian-wiki repository.
  • Context: active in the /home/ubuntu/projects/obsidian-wiki workspace.

Responsibilities

  • Validate target vault path from the environment and manifest state.
  • Decide between Append, Full, or Raw ingest modes based on user input or changes in the source.
  • Invoke the wiki-ingest workflow to process new/modified sources.
  • Update manifest and log files with ingest metadata.
  • Create or update project overview pages and cross-links as needed.

Inputs

  • Source documents (Markdown, PDFs, text, images) from OBSIDIAN_SOURCES_DIR or _raw/
  • Vault path from OBSIDIAN_VAULT_PATH
  • Optional: ingest mode (append|full|raw)

Outputs

  • Updated wiki pages with distilled knowledge
  • Updated .manifest.json and log entries
  • Optional: new/updated project overview pages

Probing and Safety

  • Do not ingest secrets or sensitive data.
  • Respect existing page structure and avoid duplicating content.
  • Mark inferred/ambiguous knowledge with provenance notes.

Example Workflow (high level)

  1. Determine ingest mode and target paths
  2. Run wiki-ingest with the chosen mode
  3. Update manifest/log and refresh wiki index
  4. Return a brief summary of changes

Next Steps

  • If you approve, I’ll create a small wrapper script (scripts/ingest-wiki.sh) that kicks off the ingest for the current project and updates the manifest. Then wire a simple command alias to trigger this skill from the CLI.

同梱ファイル

※ ZIPに含まれるファイル一覧。`SKILL.md` 本体に加え、参考資料・サンプル・スクリプトが入っている場合があります。