@hunyed15/codecgc 0.2.11 → 0.2.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -477,7 +477,7 @@ async def codecgc_build(
477
477
  step_number: Annotated[int | None, "Optional explicit step number."] = None,
478
478
  checklist_file: Annotated[str, "Optional checklist file path."] = "",
479
479
  audit_root: Annotated[str, "Optional audit root path."] = "",
480
- timeout_seconds: Annotated[int, "Execution timeout in seconds."] = 120,
480
+ timeout_seconds: Annotated[int, "Execution timeout in seconds."] = 600,
481
481
  session_id: Annotated[str, "Optional reusable executor session id."] = "",
482
482
  dry_run: Annotated[bool, "Avoid real executor dispatch."] = False,
483
483
  return_all_messages: Annotated[bool, "Return executor event logs when available."] = False,
@@ -508,7 +508,7 @@ async def codecgc_fix(
508
508
  step_number: Annotated[int | None, "Optional explicit step number."] = None,
509
509
  checklist_file: Annotated[str, "Optional checklist file path."] = "",
510
510
  audit_root: Annotated[str, "Optional audit root path."] = "",
511
- timeout_seconds: Annotated[int, "Execution timeout in seconds."] = 120,
511
+ timeout_seconds: Annotated[int, "Execution timeout in seconds."] = 600,
512
512
  session_id: Annotated[str, "Optional reusable executor session id."] = "",
513
513
  dry_run: Annotated[bool, "Avoid real executor dispatch."] = False,
514
514
  return_all_messages: Annotated[bool, "Return executor event logs when available."] = False,
@@ -543,7 +543,7 @@ async def codecgc_test(
543
543
  step_number: Annotated[int | None, "Optional explicit step number."] = None,
544
544
  checklist_file: Annotated[str, "Optional checklist file path."] = "",
545
545
  audit_root: Annotated[str, "Optional audit root path."] = "",
546
- timeout_seconds: Annotated[int, "Execution timeout in seconds."] = 120,
546
+ timeout_seconds: Annotated[int, "Execution timeout in seconds."] = 600,
547
547
  session_id: Annotated[str, "Optional reusable executor session id."] = "",
548
548
  dry_run: Annotated[bool, "Avoid real executor dispatch."] = False,
549
549
  return_all_messages: Annotated[bool, "Return executor event logs when available."] = False,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hunyed15/codecgc",
3
- "version": "0.2.11",
3
+ "version": "0.2.13",
4
4
  "description": "Claude-hosted multi-model workflow product shell for CodeCGC.",
5
5
  "license": "MIT",
6
6
  "type": "commonjs",
@@ -87,8 +87,8 @@ def build_parser() -> argparse.ArgumentParser:
87
87
  parser.add_argument(
88
88
  "--timeout-seconds",
89
89
  type=int,
90
- default=120,
91
- help="Execution timeout in seconds.",
90
+ default=600,
91
+ help="Execution timeout in seconds (default: 600s = 10min).",
92
92
  )
93
93
  parser.add_argument(
94
94
  "--dry-run",
@@ -67,8 +67,8 @@ def build_parser() -> argparse.ArgumentParser:
67
67
  parser.add_argument(
68
68
  "--timeout-seconds",
69
69
  type=int,
70
- default=120,
71
- help="MCP call timeout in seconds.",
70
+ default=600,
71
+ help="MCP call timeout in seconds (default: 600s = 10min).",
72
72
  )
73
73
  parser.add_argument(
74
74
  "--dry-run",