What problem does it solve? LLMs often truncate long outputs, insert placeholder comments like "// rest of code", or skip deliverables when generating multi-file or multi-part responses. This Skill overrides that default truncation behavior so every requested artifact is delivered in full. ## Core Features & Use Cases - Placeholder Ban: Hard-fails on patterns like "// ...", "// TODO", "for brevity", and skeleton-only outputs, forcing complete implementations. - Scope Locking & Cross-Check: Counts expected deliverables before generating, then verifies the count before responding so nothing is silently dropped. - Clean Continuation Protocol: When output hits token limits, it pauses at a clean boundary with a resumable marker and continues exactly where it stopped on "continue". - Use Case: Ask for five complete React components for a dashboard. Instead of receiving three files plus "repeat the pattern for the rest", you get all five fully implemented files, or a clean pause-and-resume split if the output exceeds one response. ## Quick Start Ask the agent to generate the complete implementation of all requested files with no placeholders, abbreviations, or omitted sections.