Open
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
背景
Proma 支持多工作区,用户通常会按项目或场景拆分工作区使用 Agent。
在实际使用中,不同工作区可能会复用一部分 Skill。此前如果用户想把某个工作区里的 Skill 复用到另一个工作区,只能手动去工作区目录复制,或者要求agent重新创建/安装。
考虑提供一个显式的入口,让用户可以把其他工作区里已有的 Skill 导入到当前工作区,同时继续保持工作区之间的独立性。
本次改动
核心能力
skills/和skills-inactive/导入交互优化
设计约定
涉及文件
packages/shared/src/types/agent.tsapps/electron/src/main/lib/agent-workspace-manager.tsapps/electron/src/main/ipc.tsapps/electron/src/preload/index.tsapps/electron/src/renderer/components/settings/AgentSettings.tsx验证
apps/electron: tsc --noEmit✅packages/shared: tsc --noEmit✅