Get chunking strategy for reading a large file in manageable pieces
/plugin marketplace add ojallington/large-file-handler/plugin install ojallington-large-file-handler@ojallington/large-file-handler# Large File Chunking Strategy Generate a strategy for reading a large file in context-friendly chunks. ## Analysis 1. **Get file info**: 2. **Calculate optimal chunks**: - Target: 500-1000 lines per chunk (fits comfortably in context) - Overlap: 10 lines between chunks for continuity - Total chunks: ceil(total_lines / chunk_size) 3. **Generate reading strategy** based on focus: ## Focus Strategies ### Default (no focus specified) Provide systematic chunking from start to end: ### focus=start Read beginning of file: ### focus=end Read end of file: ### focus=middle ...