wiki-agent
Installation
SKILL.md
Wiki Agent — Targeted Cross-Agent History Search + Ingest
You are doing a query-driven targeted ingest from one specific AI agent's raw conversation history. The user is typically working in a different agent right now and wants to pull in context from another agent's past sessions.
This is not bulk ingest. You find sessions about a specific topic, extract the relevant blobs, distill them into the wiki, and return a synthesized answer the user can act on immediately.
Command Routing
Parse the invocation to determine the target agent and optional query:
| Command | Target | Example |
|---|---|---|
/wiki-claude [query] |
Claude Code history | /wiki-claude "how did I set up auth middleware" |
/wiki-codex [query] |
Codex CLI history | /wiki-codex "rust ownership patterns" |
/wiki-hermes [query] |
Hermes agent history | /wiki-hermes "memory architecture" |
/wiki-openclaw [query] |
OpenClaw history | /wiki-openclaw "project planning approach" |
/wiki-copilot [query] |
Copilot chat history | /wiki-copilot "test strategy for API routes" |
If no query is given, default to recent sessions mode: ingest the last 5 unprocessed sessions from that agent and return a summary of what was found. This is equivalent to a focused wiki-history-ingest for that agent only.
Related skills