diff options
| author | Claudomator Agent <agent@claudomator> | 2026-07-08 09:11:14 +0000 |
|---|---|---|
| committer | Claudomator Agent <agent@claudomator> | 2026-07-08 09:11:14 +0000 |
| commit | 09066e1e4e928487bea0658492fd8573607c77c3 (patch) | |
| tree | 76f3456fbf4eb3c71d90598297919dad97d43ddb /internal/executor/agentmcp_test.go | |
| parent | 2d311c129b6233ae7279587a82c95ffec3d6eeb5 (diff) | |
feat(agentchannel,executor): add ReportVerdict for structured approve/reject signals
Diffstat (limited to 'internal/executor/agentmcp_test.go')
| -rw-r--r-- | internal/executor/agentmcp_test.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/internal/executor/agentmcp_test.go b/internal/executor/agentmcp_test.go index 18299e8..c45964d 100644 --- a/internal/executor/agentmcp_test.go +++ b/internal/executor/agentmcp_test.go @@ -48,6 +48,9 @@ func (c *recordingChannel) ProposeRoleConfig(_ context.Context, cfg role.RoleCon c.proposedRoleConfigs = append(c.proposedRoleConfigs, cfg) return c.roleConfigVersion, nil } +func (c *recordingChannel) ReportVerdict(_ context.Context, approved bool, reasoning string) error { + return nil +} func resultText(t *testing.T, res *mcp.CallToolResult) string { t.Helper() |
