mcpbeat

Wiki History Ingest

ar9av/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", "/wiki-history-ingest pi", or asks to ingest agent history without naming the underlying skill. This router dispatches to the specialized history skill.

611 tokens
context cost
the whole folder, loaded on every use
1
files
instructions only
0
copies elsewhere
how many repositories repackaged it
3103
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/Ar9av/obsidian-wiki --skill wiki-history-ingest

The instruction itself

5 sections, as written by the author

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 |

| pi | pi-history-ingest |

| auto | infer from context using rules below |

Routing Rules

  • If the user explicitly says claude, copilot, codex, hermes, openclaw, or pi, route directly.
  • 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
  • ~/.pi/agent/sessions or Pi session JSONL artifacts -> pi-history-ingest
  • If ambiguous, ask one short clarification:
  • "Should I ingest claude, copilot, codex, hermes, openclaw, or pi 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 pi
  • $wiki-history-ingest claude (agents that use $skill invocation)
  • $wiki-history-ingest copilot

How to use it

Copy the folder

Take ar9av/wiki-history-ingest from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.