From 906de0954d8a1a1e5d00f5e12b4fe2ca35a9ea27 Mon Sep 17 00:00:00 2001 From: Paul O'Reilly Date: Tue, 28 Apr 2026 17:12:06 +1200 Subject: [PATCH] Add minimax model registry entry; rename tdd-impl workflow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - minimax.yaml: scores copied from Opus (placeholder until real benchmark), cost 0.0/0.0 (subscription), provider=minimax. Now auto-selectable by min_scores routing (smart-agent at complexity≥9 will reach it). - tdd-impl → write-code-following-tdd (name field updated) Co-Authored-By: Claude Sonnet 4.6 --- model-registry/minimax.yaml | 15 +++++++++++++++ ...dd-impl.yaml => write-code-following-tdd.yaml} | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) create mode 100644 model-registry/minimax.yaml rename workflows/{tdd-impl.yaml => write-code-following-tdd.yaml} (99%) diff --git a/model-registry/minimax.yaml b/model-registry/minimax.yaml new file mode 100644 index 0000000..60e943b --- /dev/null +++ b/model-registry/minimax.yaml @@ -0,0 +1,15 @@ +name: minimax +endpoint: minimax +provider: minimax +scores: + complexity: 10 + test_pass_rate: 9 + creativity: 10 + spec_adherence: 9 + cost_efficiency: 3 + context_utilisation: 10 +cost_per_1k_tokens: + input: 0.0 + output: 0.0 +source: benchmark +harness_version: null diff --git a/workflows/tdd-impl.yaml b/workflows/write-code-following-tdd.yaml similarity index 99% rename from workflows/tdd-impl.yaml rename to workflows/write-code-following-tdd.yaml index 6b5a177..8650ca0 100644 --- a/workflows/tdd-impl.yaml +++ b/workflows/write-code-following-tdd.yaml @@ -1,4 +1,4 @@ -name: tdd-impl +name: write-code-following-tdd version: 1 description: > Parallel TDD implementation: two agents implement against a pre-written test suite,