Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
💡 Verification agent
🧩 Analysis chain
Confirm enforcement path; schema alone won’t constrain other names.
As added, this is metadata that validators will accept, but it won’t automatically enforce name lengths elsewhere in the schema (JSON Schema can’t dynamically reference this value for other fields without extensions). Please verify that the CLI/runtime reads this property and applies the limit where intended (e.g., for inputs/outputs/spec keys).
[offer_assistance]
Run this script to locate usages and tests:
If there’s no consumer yet, I can help add a small validator hook and tests—want me to draft that?
🏁 Script executed:
Length of output: 1236
Implement enforcement for
name_length_limitThe
name_length_limitsetting is declared inftf_cli/schema.pybut there’s no runtime logic or tests consuming it. To ensure name-length constraints actually take effect, you should:ftf_cli/validate.py) that readsschema["name_length_limit"]and enforces it on all relevant names (inputs, outputs, spec keys).tests/test_schema_validators.py) to verify names below, at, and above the limit are accepted or rejected as expected.Let me know if you’d like me to draft the validator hook and accompanying tests.