feat(agent): logical delete + template detail modal#230
Open
ethink2026 wants to merge 3 commits into
Open
Conversation
added 3 commits
July 20, 2026 18:42
…t dialog - agents.py: add AGENT_STATUS_DELETED, update_agent allows deleted, list_agents excludes deleted by default - models.py: WorkspaceUpdate status literal adds 'deleted' - agent_templates.py: template seed/upgrade improvements - auth.py, mcp_registry, claude_agent_runs: minor fixes and improvements - mcp_loader, mcp_bridge, mcp_services: MCP handler enhancements - skill_market, claude_code_runner: skill binding improvements - test_console_auth: test updates
- CodingAgentPage: add 'deleted' status filter, delete button with confirm, template detail modal, restored agent hides archive btn - CodingAgentChatPage: workspace and chat improvements - McpPanel: MCP management enhancements - LandingPage, PublicSiteHeader, SkillsManagementPage: UI refinements - useAdminToken, staffRoutes: auth and routing updates
- 新增「企业技能」菜单(能力中心 > 企业技能) - 从生产环境复制完整技能管理页面(下发/取消下发/审核/详情) - 下发弹窗支持刷新部署状态、关闭清空选中 - 「技能」重命名为「技能市场」,调换与企业技能的菜单顺序 - MCP 页面表格增加横向滚动条 (overflow-x-auto) - 账号模块创建员工抽屉隐藏备注字段
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.
Changes
24 files, +1062/-331
feat(agent): logical delete
agents.py: newAGENT_STATUS_DELETEDstate,list_agentsexcludes deleted by defaultmodels.py:WorkspaceUpdate.statusacceptsdeletedPATCH /agents/{id}setsstatus=deleted;status_filter=deletedretrieves themfeat(ui): delete button + template modal
Other