summaryrefslogtreecommitdiff
path: root/internal/api/agentmcp_endpoint_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/api/agentmcp_endpoint_test.go')
-rw-r--r--internal/api/agentmcp_endpoint_test.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/internal/api/agentmcp_endpoint_test.go b/internal/api/agentmcp_endpoint_test.go
index 7ea71aa..0f1d846 100644
--- a/internal/api/agentmcp_endpoint_test.go
+++ b/internal/api/agentmcp_endpoint_test.go
@@ -11,6 +11,7 @@ import (
"github.com/modelcontextprotocol/go-sdk/mcp"
"github.com/thepeterstone/claudomator/internal/executor"
+ "github.com/thepeterstone/claudomator/internal/role"
"github.com/thepeterstone/claudomator/internal/storage"
)
@@ -30,6 +31,9 @@ func (f *fakeAgentChannel) RecordProgress(_ context.Context, m string) error {
func (f *fakeAgentChannel) ProposeEpic(context.Context, executor.EpicProposal) (string, error) {
return "epic-1", nil
}
+func (f *fakeAgentChannel) ProposeRoleConfig(context.Context, role.RoleConfig) (int, error) {
+ return 1, nil
+}
type tokenRT struct {
token string