Skip to content

AppCore 服务

8. deepagent-app-core 服务门面

deepagent-app-core 是 UI 与内核之间的稳定边界。前端和 Tauri 不应直接操作内核 crate 的内部类型,而应经由 DTO 和服务方法。

服务文件职责
AppServiceservice.rs会话列表、详情、conversation 重建、fork、rewind、transcript 导出、diff
ChatServicechat_service.rs组装 Agent run:模型、工具、MCP、知识、技能、项目根、审批、成本、验证
SettingsServicesettings.rsAPI Key 校验、OS keychain、模型发现、thinking depth、审批策略、沙箱、权限、hooks、web search
SkillsServiceskills_service.rs技能加载、列出、安装、卸载、激活、AI 安全审查
McpServicemcp_service.rsMCP server 配置持久化、启停、连接 enabled server、注册远程工具
KnowledgeServiceknowledge_service.rs知识库加载、搜索、保存、删除、被动注入、自动捕获、草稿
CostServicecost_service.rstoken 成本记录、预算配置、预算检查、汇总
ProjectServiceproject_service.rs多项目注册、active project、置顶、重命名、移除
WorkspaceServiceworkspace_service.rs当前工作区信息
ProjectMapServiceproject_map_service.rs读取/生成 .understand-anything/knowledge-graph.json,搜索/邻居/影响分析
GitServicegit_service.rsGit status、branch、changes、diff、log、stage、unstage、commit、worktree
ArchiveServicearchive_service.rs会话归档、项目归档、恢复、删除
SessionStateServicesession_state_service.rs会话置顶等轻量状态
TerminalServiceterminal_service.rs在 active project 中执行非危险命令
FilePreviewServicefile_preview_service.rs文件元数据、文本提取、data URL、PDF 渲染
RecordingServicerecording_service.rs音频输入设备、录制生命周期
RuntimeServiceruntime_service.rs管理外部/内置运行时资源的下载、安装、取消、卸载
SpeechServicespeech_service.rs语音转写、会议纪要
OfficeServiceoffice_service.rsOffice 文档读取、Markdown -> docx、会议纪要导出
Doctordoctor.rs环境诊断
ApprovalBridgeapproval_bridge.rsUI 审批队列、策略门、channel gate
VerificationDispatcherverification_dispatcher.rs按文件类型分发验证器
VerificationDecoratorverification_decorator.rs工具结果验证装饰
Reminder 系列plan_mode_reminder.rs, skill_catalog_reminder.rs, todo_snapshot_reminder.rs, system_reminder.rs在运行中给模型追加系统提醒

DeepSeek 原生 Agent Runtime Operating System