swarm repositories / source
aboutsummaryrefslogtreecommitdiff
path: root/assemble-pro-review-package/scripts
diff options
context:
space:
mode:
authormain <main@swarm.moe>2026-05-23 19:48:26 -0400
committermain <main@swarm.moe>2026-05-23 19:48:26 -0400
commitaf557958deb3e70b16d3a306fa8cb82629a0fc09 (patch)
tree5e0c55a4db3bdc9e773b2762c9e78253136abb45 /assemble-pro-review-package/scripts
parent15ff7061b08aaa946525964f3c559df4da19824f (diff)
downloadskills-af557958deb3e70b16d3a306fa8cb82629a0fc09.zip
Raise pro review package token ceiling
Diffstat (limited to 'assemble-pro-review-package/scripts')
-rwxr-xr-xassemble-pro-review-package/scripts/inline_section.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/assemble-pro-review-package/scripts/inline_section.py b/assemble-pro-review-package/scripts/inline_section.py
index 3356646..2f1a59c 100755
--- a/assemble-pro-review-package/scripts/inline_section.py
+++ b/assemble-pro-review-package/scripts/inline_section.py
@@ -52,7 +52,7 @@ LANGUAGE_BY_SUFFIX = {
".yml": "yaml",
}
-HARD_MAX_TOKENS = 75_000
+HARD_MAX_TOKENS = 200_000
GLOBAL_APPEND_LOCK = Path(tempfile.gettempdir()) / "assemble-pro-review-package-inline-section.lock"
@@ -60,7 +60,7 @@ def parse_args() -> argparse.Namespace:
parser = argparse.ArgumentParser(
description=(
"Append a labeled markdown section containing a file or excerpt to a "
- "target document, while enforcing the skill's fixed 75k-token hard budget."
+ "target document, while enforcing the skill's fixed 200k-token hard budget."
)
)
parser.add_argument("source", type=Path, help="Source file to inline.")