fix: add # INPUT section to 93 patterns that were missing it#2125
Open
OdinKral wants to merge 1 commit into
Open
fix: add # INPUT section to 93 patterns that were missing it#2125OdinKral wants to merge 1 commit into
OdinKral wants to merge 1 commit into
Conversation
93 patterns had no standardized # INPUT section, making the input boundary ambiguous. Three variants existed: - 7 patterns used ## INPUT (wrong heading level) → upgraded to # INPUT - 8 patterns had bare "INPUT:" text with no heading → added # INPUT header - 78 patterns had no input section at all → appended # INPUT + INPUT: All changes are structural only — no content was altered. The # INPUT section is the standard marker used by Fabric's CLI and pattern tooling to delimit where user input is injected. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
93 patterns were missing a
# INPUTsection — the standard marker Fabric uses to delimit where user input is injected into a pattern.Three variants were found and fixed:
## INPUT(wrong heading level)# INPUTINPUT:text with no heading# INPUTheader before it# INPUT\n\nINPUT:All changes are structural only — no pattern content, instructions, or output format was altered. This is a pure normalization of the input boundary marker.
Why it matters
# INPUTheading is what--readpatternand pattern tooling use to display where user content goesscripts/audit-patterns.shuses this as a health check)Test plan
fabric -p analyze_bill "..."still works (pattern that had no INPUT section)fabric -p translate "..."still works (pattern that had## INPUT)fabric -p coding_master "..."still works (pattern that had bareINPUT:)grep -rL "^# INPUT" data/patterns/*/system.mdreturns empty (all patterns now have the section)🤖 Generated with Claude Code