jpskill.com
🛠️ 開発・MCP コミュニティ

wiki-history-ingest

Unified wiki-history-ingest entrypoint for conversation/session sources. Use this when the user says "/wiki-history-ingest claude", "/wiki-history-ingest copilot", "/wiki-history-ingest codex", or asks to ingest agent history without naming the underlying skill. This router dispatches to the specialized history skill.

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

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

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

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

💾 手動でダウンロードしたい(コマンドが難しい人向け)
  1. 1. 下の青いボタンを押して wiki-history-ingest.zip をダウンロード
  2. 2. ZIPファイルをダブルクリックで解凍 → wiki-history-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
同梱ファイル
1

📖 Skill本文(日本語訳)

※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。

統合履歴取り込みルーター

これは履歴ソース専用の薄いルーターです。ドキュメント用の wiki-ingest を置き換えるものではありません。

サブコマンド

ユーザーが /wiki-history-ingest <target> (または同等のテキストコマンド) を呼び出した場合、直接ディスパッチします。

サブコマンド ルーティング先
claude claude-history-ingest
copilot copilot-history-ingest
codex codex-history-ingest
hermes hermes-history-ingest
openclaw openclaw-history-ingest
auto 以下のルールを使用してコンテキストから推論

ルーティングルール

  1. ユーザーが明示的に claudecopilotcodexhermes、または openclaw と言った場合、直接ルーティングします。
  2. ユーザーがパス/ソースを提供した場合:
    • ~/.claude または Claude のメモリ/セッション JSONL アーティファクト -> claude-history-ingest
    • ~/.copilotsession-store.db、VS Code copilot-chat トランスクリプト -> copilot-history-ingest
    • ~/.codex またはロールアウト/セッションインデックスアーティファクト -> codex-history-ingest
    • ~/.hermes または Hermes のメモリ/セッションアーティファクト -> hermes-history-ingest
    • ~/.openclaw または OpenClaw の MEMORY.md/セッション JSONL アーティファクト -> openclaw-history-ingest
  3. 曖昧な場合は、短い確認を1つ尋ねます。
    • claudecopilotcodexhermesopenclaw のどの履歴を取り込みますか?」

実行契約

  • ルーティング後、宛先スキルのワークフローを正確に実行します。
  • このファイル内で宛先ロジックを重複させないでください。
  • マニフェスト/インデックス/ログの更新セマンティクスは宛先スキルに任せてください。

UX 規約

  • ドキュメント/コンテンツソースには wiki-ingest を使用します。
  • エージェント履歴ソースには wiki-history-ingest を使用します。

例:

  • /wiki-history-ingest claude
  • /wiki-history-ingest copilot
  • /wiki-history-ingest codex
  • /wiki-history-ingest hermes
  • /wiki-history-ingest openclaw
  • $wiki-history-ingest claude ( $skill 呼び出しを使用するエージェント)
  • $wiki-history-ingest copilot
📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開

Unified History Ingest Router

This is a thin router for history sources only. It does not replace wiki-ingest for documents.

Subcommands

If the user invokes /wiki-history-ingest <target> (or equivalent text command), dispatch directly:

Subcommand Route To
claude claude-history-ingest
copilot copilot-history-ingest
codex codex-history-ingest
hermes hermes-history-ingest
openclaw openclaw-history-ingest
auto infer from context using rules below

Routing Rules

  1. If the user explicitly says claude, copilot, codex, hermes, or openclaw, route directly.
  2. If the user provides a path/source:
    • ~/.claude or Claude memory/session JSONL artifacts -> claude-history-ingest
    • ~/.copilot, session-store.db, VS Code copilot-chat transcripts -> copilot-history-ingest
    • ~/.codex or rollout/session index artifacts -> codex-history-ingest
    • ~/.hermes or Hermes memories/session artifacts -> hermes-history-ingest
    • ~/.openclaw or OpenClaw MEMORY.md/session JSONL artifacts -> openclaw-history-ingest
  3. If ambiguous, ask one short clarification:
    • "Should I ingest claude, copilot, codex, hermes, or openclaw history?"

Execution Contract

  • After routing, execute the destination skill's workflow exactly.
  • Do not duplicate destination logic in this file.
  • Leave manifest/index/log update semantics to the destination skill.

UX Convention

  • Use wiki-ingest for documents/content sources
  • Use wiki-history-ingest for agent history sources

Examples:

  • /wiki-history-ingest claude
  • /wiki-history-ingest copilot
  • /wiki-history-ingest codex
  • /wiki-history-ingest hermes
  • /wiki-history-ingest openclaw
  • $wiki-history-ingest claude (agents that use $skill invocation)
  • $wiki-history-ingest copilot