Delete internal/multiagent directory

This commit is contained in:
公明
2026-07-11 10:45:21 +08:00
committed by GitHub
parent 612015b6d7
commit bec296ae3f
84 changed files with 0 additions and 11487 deletions
@@ -1,17 +0,0 @@
package multiagent
import (
"strings"
"testing"
)
func TestInjectShellToolGuidance(t *testing.T) {
got := injectShellToolGuidance("base", []string{"nmap"})
if got != "base" {
t.Fatalf("expected unchanged, got %q", got)
}
got = injectShellToolGuidance("base", []string{"exec", "nmap"})
if !strings.Contains(got, "exec/execute") || !strings.Contains(got, "base") {
t.Fatalf("expected shell guidance appended, got %q", got)
}
}