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 hermes", or asks to ingest agent history without naming the underlying skill. This router dispatches to the specialized history skill.From its SKILL.md
npx -y skills add chobizzy/llm-wiki --skill wiki-history-ingestAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
1.9 KB, 388 tokens by cl100k_base, as published. Nobody here has run it
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 |
hermes | hermes-history-ingest |
auto | infer from context using rules below |
Routing Rules
- If the user explicitly says
claudeorhermes, route directly. - If the user provides a path/source:
~/.claudeor Claude memory/session JSONL artifacts ->claude-history-ingest~/.hermes,HERMES_HOME, or Hermes memories/session artifacts ->hermes-history-ingest
- If ambiguous, ask one short clarification:
- "Should I ingest
claudeorhermeshistory?"
- "Should I ingest
- If the user names an agent with no matching skill installed (e.g.
copilot,codex,openclaw,pi), say the corresponding history-ingest skill is not installed and fall back towiki-ingeston the raw export files instead.
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-ingestfor documents/content sources - Use
wiki-history-ingestfor agent history sources
Examples:
/wiki-history-ingest claude/wiki-history-ingest hermes$wiki-history-ingest claude(agents that use$skillinvocation)
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.