From 257498d93837bd406a22dbfe237373feef9048da Mon Sep 17 00:00:00 2001 From: "openclaw-docs-sync[bot]" Date: Wed, 8 Apr 2026 14:54:37 +0000 Subject: [PATCH] chore(sync): mirror docs from openclaw/openclaw@7f19676439a8dabc42ae8e50eb26136eec7c01de --- .openclaw-sync/source.json | 4 ++-- docs/concepts/qa-e2e-automation.md | 17 +++++++++++++++++ 2 files changed, 19 insertions(+), 2 deletions(-) diff --git a/.openclaw-sync/source.json b/.openclaw-sync/source.json index c6f51d450..2da6c3bcd 100644 --- a/.openclaw-sync/source.json +++ b/.openclaw-sync/source.json @@ -1,5 +1,5 @@ { "repository": "openclaw/openclaw", - "sha": "0de5db877203c6dc978271263fa7e97791884f48", - "syncedAt": "2026-04-08T14:15:48.385Z" + "sha": "7f19676439a8dabc42ae8e50eb26136eec7c01de", + "syncedAt": "2026-04-08T14:54:36.562Z" } diff --git a/docs/concepts/qa-e2e-automation.md b/docs/concepts/qa-e2e-automation.md index d6ea14749..9cc32899d 100644 --- a/docs/concepts/qa-e2e-automation.md +++ b/docs/concepts/qa-e2e-automation.md @@ -82,6 +82,23 @@ The report should answer: - What stayed blocked - What follow-up scenarios are worth adding +For character and style checks, run the same scenario across multiple live model +refs and write a judged Markdown report: + +```bash +pnpm openclaw qa character-eval \ + --model openai/gpt-5.4 \ + --model anthropic/claude-opus-4-6 \ + --model minimax/MiniMax-M2.7 \ + --judge-model openai/gpt-5.4 +``` + +The command runs local QA gateway child processes, not Docker. It preserves each +full transcript, records basic run stats, then asks the judge model in fast mode +with `xhigh` reasoning to rank the runs by naturalness, vibe, and humor. +When no candidate `--model` is passed, the character eval defaults to +`openai/gpt-5.4` and `anthropic/claude-opus-4-6`. + ## Related docs - [Testing](/help/testing)