deepchat-data-import
仓库创建 2025年2月14日最近提交 4 小时前SkillHot 收录 20 天前
▸ 精选理由
处理本地会话与加密数据库的迁移与分析,适合迁移/备份场景。
▸ 风险提示
可能访问本地敏感数据或密钥,需妥善处理凭证与隐私。
这个 Skill 做什么
设计或实现导入、检查和迁移 DeepChat 本地数据(含 SQLite/SQLCipher)。
帮你把 DeepChat 本地数据(如 agent.db、chat.db、会话消息、SQLite/SQLCipher、Electron safeStorage 包裹的密码等)导入、检查或迁移到别的工具或格式。适合做迁移、备份恢复、解析旧会话或实现第三方导入器时用,通常先做只读快照并查看 schema,避免直接写入活跃配置。特别之处在于要兼容加密的 SQLite、平台原生存储和各种导出格式的细节。
▸ 展开 SKILL.md 英文原文
Help developers build third-party tools that import, inspect, migrate, or analyze DeepChat data. Use when Codex needs to work with DeepChat provider configuration, model configuration, MCP/app settings, sessions, messages, legacy chat data, `agent.db`, `chat.db`, SQLCipher encrypted SQLite, Electron safeStorage wrapped passwords, Tauri importers, or native macOS/Windows/Linux data access.
6.2k
Stars
707
Forks
23
仓库内 Skill
+70
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/ThinkInAIXYZ/deepchat/dev/.agents/skills/deepchat-data-import/SKILL.md或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/ThinkInAIXYZ/deepchat/dev/.agents/skills/deepchat-data-import/SKILL.md"SKILL.MD 节选查看完整文件 ↗
# DeepChat Data Import ## Overview Use this skill to design or implement importers for DeepChat local data. Treat DeepChat's SQLite schema as an internal but documentable contract: inspect the current schema when precision matters, prefer read-only snapshots, and avoid writing to a live profile. ## Workflow 1. Identify the source: live DeepChat profile, copied profile, sync backup, exported `agent.db`, or legacy `chat.db`. 2. Read [references/data-locations.md](references/data-locations.md) to locate `agent.db`, sidecar files, encryption metadata, and backup paths. 3. Read [references/sqlite-access.md](references/sqlite-access.md) before opening SQLite. Decide whether the databa
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有