chore: update project files

This commit is contained in:
lpf
2026-04-03 18:35:04 +08:00
parent 428d944e52
commit ce2263ac8c
54 changed files with 1025 additions and 4613 deletions

View File

@@ -371,19 +371,6 @@ func (al *AgentLoop) buildSubagentRunInput(run *tools.SubagentRun) string {
return taskText
}
func nodeAgentTaskResult(payload map[string]interface{}) string {
if len(payload) == 0 {
return ""
}
if result := tools.MapStringArg(payload, "result"); result != "" {
return result
}
if content := tools.MapStringArg(payload, "content"); content != "" {
return content
}
return ""
}
func (al *AgentLoop) readSubagentPromptFile(relPath string) string {
if al == nil {
return ""