What problem does it solve? LLMs often truncate long outputs, insert placeholder comments like "// rest of code", or skip deliverables when generating large files or multi-part responses. This Skill overrides that default behavior so every requested deliverable is produced in full. ## Core Features & Use Cases - Placeholder Ban: Hard-fails on patterns like // ..., // TODO, "for brevity", and "the rest follows the same pattern" in both code and prose. - Scope Locking: Counts the distinct deliverables in a request up front and cross-checks the output against that count before responding. - Token-Limit Handling: When output approaches the token limit, it pauses at a clean breakpoint with a resumable marker instead of compressing or skipping content. - Use Case: Ask for a full 5-component React dashboard; instead of receiving one complete component and four stubs, you receive all five fully implemented, or a clean pause marker with exact resume instructions. ## Quick Start Apply the full-output-enforcement skill and generate the complete implementation of all requested files with no placeholders or omissions.