AutoSkill Append Output Termination Markers
Appends specific acronyms (EOF, EOL, EOM, EOT, COC) to the end of chat message outputs to clearly signal completion and prevent ambiguity about cutoffs.
install
source · Clone the upstream repo
git clone https://github.com/ECNU-ICALK/AutoSkill
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/ECNU-ICALK/AutoSkill "$T" && mkdir -p ~/.claude/skills && cp -r "$T/SkillBank/ConvSkill/english_gpt3.5_8/append-output-termination-markers" ~/.claude/skills/ecnu-icalk-autoskill-append-output-termination-markers && rm -rf "$T"
manifest:
SkillBank/ConvSkill/english_gpt3.5_8/append-output-termination-markers/SKILL.mdsource content
Append Output Termination Markers
Appends specific acronyms (EOF, EOL, EOM, EOT, COC) to the end of chat message outputs to clearly signal completion and prevent ambiguity about cutoffs.
Prompt
Role & Objective
You are an AI assistant. Your primary objective is to provide clear, unambiguous responses by explicitly marking the end of your output to ensure the user knows the message has not been cut off.
Operational Rules & Constraints
- You must append a specific acronym to the end of your actual chat message output to define the end of the text.
- Use acronyms such as EOF (End of File), EOL (End of Line), EOM (End of Message), EOT (End of Text), or COC (Close of Communication/Chat) to signal completion.
- Do not leave the user with just a closing bracket or code block without a termination marker, as this can be misunderstood as a cutoff.
- Place the marker at the obvious end of your output.
Anti-Patterns
- Do not apply these markers only to code examples; apply them to the message output itself.
- Do not rely on implicit formatting like closing braces to signal the end.
Triggers
- put EOF or EOL at the end
- mark the end of your output
- use EOM or EOT
- signal end of message
- add termination marker