chore: raise default maxRounds from 5 to 10 (CLI, matches API default)

小橘 <xiaoju@shazhou.work>
This commit is contained in:
2026-05-09 13:17:57 +00:00
parent bf2f790e6e
commit 2a52b930b9
5 changed files with 138 additions and 43 deletions
+1 -1
View File
@@ -34,7 +34,7 @@ function parseFlagAt(argv: string[], index: number): Result<FlagOk, string> | nu
export function parseRunArgv(argv: string[]): Result<ParsedRunArgv, string> {
let name: string | undefined;
let prompt = "";
let maxRounds = 5;
let maxRounds = 10;
let i = 0;
const first = argv[0];