From 23ad5c02474d3967cbfc6dec742c90289909bc4d Mon Sep 17 00:00:00 2001 From: claude Date: Thu, 6 Aug 2026 11:47:27 +0400 Subject: [PATCH 1/2] gofmt ecosystem_acts.go, so make test reaches the tests (V-623) The struct field alignment drifted when the confirm's action id landed, and fmt-check is the first gate in make test. Every branch cut since inherited a red suite for a reason no branch owned. Co-Authored-By: Claude Opus 5 --- cmd/mavend/ecosystem_acts.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cmd/mavend/ecosystem_acts.go b/cmd/mavend/ecosystem_acts.go index ea6ab07..fdf0210 100644 --- a/cmd/mavend/ecosystem_acts.go +++ b/cmd/mavend/ecosystem_acts.go @@ -139,9 +139,9 @@ func (h *reactiveHandler) handlePraxisAct(ctx context.Context, dec router.Decisi // praxisItemAction is the shared shape of the item-lifecycle capabilities: take // an item id from the value slot, call one Praxis endpoint, trace the result. type praxisItemAction struct { - verbs []string - ask string // reply when no item id was given - op string // trace + log name of the operation + verbs []string + ask string // reply when no item id was given + op string // trace + log name of the operation // failure is the first half of the reply when the Praxis call errors: which // operation did not happen. ecosystemGap supplies the second half, which // names Praxis and splits a refused token from an outage — those two used to -- 2.52.0 From 4f6dec0cf2e133a2204408f4dd20383a5b139cab Mon Sep 17 00:00:00 2001 From: claude Date: Thu, 6 Aug 2026 11:47:54 +0400 Subject: [PATCH 2/2] gofmt mcp_test.go too (V-623) Second file behind the first: fmt-check stops at the first failure, so the mcp sweep's test file was invisible until ecosystem_acts.go was clean. Co-Authored-By: Claude Opus 5 --- internal/mcp/mcp_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/mcp/mcp_test.go b/internal/mcp/mcp_test.go index a1f2fbc..5ddc8f6 100644 --- a/internal/mcp/mcp_test.go +++ b/internal/mcp/mcp_test.go @@ -662,7 +662,7 @@ func (t *emptyFrameTransport) Call(ctx context.Context, req *rpcRequest) (*rpcRe } func (t *emptyFrameTransport) Notify(context.Context, string, any) error { return nil } -func (t *emptyFrameTransport) Close() error { return nil } +func (t *emptyFrameTransport) Close() error { return nil } func TestResultlessResponseIsNotSuccess(t *testing.T) { c := newClient("empty", &emptyFrameTransport{}) -- 2.52.0