@@ -12,6 +12,7 @@ import (
1212 "github.com/docker/cagent/pkg/session"
1313 "github.com/docker/cagent/pkg/sessiontitle"
1414 "github.com/docker/cagent/pkg/tools"
15+ "github.com/docker/cagent/pkg/tools/builtin"
1516 mcptools "github.com/docker/cagent/pkg/tools/mcp"
1617)
1718
@@ -28,10 +29,10 @@ func (m *mockRuntime) CurrentAgentName() string { return "test" }
2829func (m * mockRuntime ) CurrentAgentInfo (context.Context ) runtime.CurrentAgentInfo {
2930 return runtime.CurrentAgentInfo {Name : "test" }
3031}
31- func (m * mockRuntime ) SetCurrentAgent (string ) error { return nil }
32- func (m * mockRuntime ) CurrentAgentTools (context.Context ) ([]tools.Tool , error ) { return nil , nil }
33- func (m * mockRuntime ) EmitStartupInfo (context.Context , chan runtime.Event ) {}
34- func (m * mockRuntime ) ResetStartupInfo () {}
32+ func (m * mockRuntime ) SetCurrentAgent (string ) error { return nil }
33+ func (m * mockRuntime ) CurrentAgentTools (context.Context ) ([]tools.Tool , error ) { return nil , nil }
34+ func (m * mockRuntime ) EmitStartupInfo (context.Context , * session. Session , chan runtime.Event ) {}
35+ func (m * mockRuntime ) ResetStartupInfo () {}
3536func (m * mockRuntime ) Run (context.Context , * session.Session ) ([]session.Message , error ) {
3637 return nil , nil
3738}
@@ -42,7 +43,7 @@ func (m *mockRuntime) ResumeElicitation(context.Context, tools.ElicitationAction
4243func (m * mockRuntime ) SessionStore () session.Store { return nil }
4344func (m * mockRuntime ) Summarize (context.Context , * session.Session , string , chan runtime.Event ) {}
4445func (m * mockRuntime ) PermissionsInfo () * runtime.PermissionsInfo { return nil }
45- func (m * mockRuntime ) CurrentAgentSkillsEnabled () bool { return false }
46+ func (m * mockRuntime ) CurrentAgentSkillsToolset () * builtin. SkillsToolset { return nil }
4647func (m * mockRuntime ) CurrentMCPPrompts (context.Context ) map [string ]mcptools.PromptInfo {
4748 return nil
4849}
0 commit comments