Skip to content

Commit dad1863

Browse files
that-github-userunknownclaude
authored
Switch default scoring from weighted to copeland (#110)
Data-driven decision based on scoring evaluation (docs/scoring-evaluation.md): - Copeland and Borda agree 86% (independent validation from social choice theory) - Weighted disagrees with both ~40% (arbitrary point weights distort) - Copeland is scale-independent and Condorcet-consistent Closes #109 Co-authored-by: unknown <that-github-user@github.com> Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 185bde1 commit dad1863

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/cli.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ program
4343
"Convergence clustering similarity threshold (0.0-1.0)",
4444
String(cfg.threshold),
4545
)
46-
.option("--scoring <method>", "Scoring method: weighted (default) or copeland", "weighted")
46+
.option("--scoring <method>", "Scoring method: copeland (default) or weighted", "copeland")
4747
.option("--verbose", "Show detailed output from each agent")
4848
.action(async (promptArg: string | undefined, opts) => {
4949
const prompt = resolvePrompt(promptArg, opts.file);

0 commit comments

Comments
 (0)