新增: 工具工作流补全(diff_files工具 + 技能清单注入 + 工作流进度共享 + human端到端测试 + 知识库MCP工具)

This commit is contained in:
lxy
2026-08-08 21:24:53 +08:00
parent 6ba6daf188
commit 9eb2995a74
14 changed files with 807 additions and 93 deletions
@@ -65,6 +65,8 @@
<script setup lang="ts">
import { ref, computed, nextTick } from 'vue'
import type { NodeStatus } from '@/api/types'
export type { NodeStatus }
interface DagNode {
id: string
@@ -76,7 +78,6 @@ interface EdgeDef {
target: string
condition?: string | null
}
export type NodeStatus = 'pending' | 'running' | 'completed' | 'failed' | 'skipped'
const props = withDefaults(defineProps<{
dagJson: string