wiki-history-ingest

仓库创建 2026年4月6日最近提交 23 天前SkillHot 收录 20 天前
▸ 精选理由

简化多模型会话归档入口,便于统一管理历史。

▸ 风险提示

会将敏感对话写入知识库,需注意隐私与合规

这个 Skill 做什么

统一路由器,将不同来源的会话历史导入 Wiki。

把来自不同聊天/会话来源的历史统一路由到 wiki 的入口,像你发 /wiki-history-ingest claude/copilot/codex 时会把请求派给对应的历史导入器。适合想把 agent 会话记录集中入库但不想指定底层 skill 的场景。注意它只做 history 的路由,不负责一般文档的 ingest 流程。

▸ 展开 SKILL.md 英文原文

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.

数据与抓取会话导入历史记录路由器通用
2.7k
Stars
274
Forks
35
仓库内 Skill
+0
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/Ar9av/obsidian-wiki/main/.skills/wiki-history-ingest/SKILL.md
或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/Ar9av/obsidian-wiki/main/.skills/wiki-history-ingest/SKILL.md"
SKILL.MD 节选查看完整文件 ↗
# 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

1. If the user explicitly says `claude`, `copilot`, `codex`, `hermes`, `openclaw`, or `pi`, route directly.
2. I
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有