diff options
| author | main <main@swarm.moe> | 2026-05-23 19:48:26 -0400 |
|---|---|---|
| committer | main <main@swarm.moe> | 2026-05-23 19:48:26 -0400 |
| commit | af557958deb3e70b16d3a306fa8cb82629a0fc09 (patch) | |
| tree | 5e0c55a4db3bdc9e773b2762c9e78253136abb45 | |
| parent | 15ff7061b08aaa946525964f3c559df4da19824f (diff) | |
| download | skills-af557958deb3e70b16d3a306fa8cb82629a0fc09.zip | |
Raise pro review package token ceiling
| -rw-r--r-- | assemble-pro-review-package/SKILL.md | 2 | ||||
| -rwxr-xr-x | assemble-pro-review-package/scripts/inline_section.py | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/assemble-pro-review-package/SKILL.md b/assemble-pro-review-package/SKILL.md index d73ffbb..ebe3aeb 100644 --- a/assemble-pro-review-package/SKILL.md +++ b/assemble-pro-review-package/SKILL.md @@ -19,7 +19,7 @@ artifacts, or companion files. If a textual artifact cannot be inlined under the cut it. Use `scripts/inline_section.py` to append labeled sections into the document and enforce -the skill's fixed hard ceiling of 75k tokens, counted with `o200k_base`. It is not an +the skill's fixed hard ceiling of 200k tokens, counted with `o200k_base`. It is not an objective to reduce the token count, and there is no harm in going all the way up to the limit if the material being included is genuinely relevant and the problem is complex. Spend the ceiling on material that sharpens the review question. Cut material whose 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.") |