Fix REPL file detection for pandas export methods#1
Merged
Conversation
Added missing file-writing keywords to the REPL mode file detection list. Previously, files created with pandas to_excel() and other export methods were not captured because the keyword list only included: open(), savefig, to_csv, write(), .save(). Added: to_excel, to_json, to_parquet, to_html, to_xml, to_feather, to_pickle, dump() (for json.dump, pickle.dump, yaml.dump). This fix ensures generated files are properly detected and returned in the API response when using REPL mode (Python only).
djuillard
pushed a commit
that referenced
this pull request
Apr 17, 2026
Visual analysis of all 50 layouts led to selection of 12 essential ones: 1. Title (cover with logo + waves) 2. Title + text (cover with right blue panel) 3. Agenda (orange diamonds + 6 agenda lines) 4. Content #1 (blue triangle deco — the most versatile) ⭐ 5. Content + Image (left text + right image) 6. 2 Content (two columns) 7. 3 Content (three columns) 8. Content Blue bg (dark blue + orange triangle — impact slide) 9. Section dark blue (solid navy separator) 10. Section orange (vivid orange with chevrons) 11. Quote (amber/yellow with quotation marks) 12. End Thank you (white + orange chevrons) Each layout now has: - Visual description (decorations, colors, positioning) - Exact placeholder IDs with types - Recommended usage - Dimensions in inches Added layout composition rule for standard decks: cover → agenda → section/content alternation → closing Agent instructions: 11.6 KB → 14.2 KB Generated with [Claude Code](https://claude.ai/code) via [Happy](https://happy.engineering) Co-Authored-By: Claude <noreply@anthropic.com> Co-Authored-By: Happy <yesreply@happy.engineering>
djuillard
pushed a commit
that referenced
this pull request
Apr 21, 2026
Bumps [dorny/paths-filter](https://github.com/dorny/paths-filter) from 2 to 3. - [Release notes](https://github.com/dorny/paths-filter/releases) - [Changelog](https://github.com/dorny/paths-filter/blob/master/CHANGELOG.md) - [Commits](dorny/paths-filter@v2...v3) --- updated-dependencies: - dependency-name: dorny/paths-filter dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
djuillard
pushed a commit
that referenced
this pull request
Apr 21, 2026
Fix REPL file detection for pandas export methods
djuillard
pushed a commit
that referenced
this pull request
Apr 21, 2026
Visual analysis of all 50 layouts led to selection of 12 essential ones: 1. Title (cover with logo + waves) 2. Title + text (cover with right blue panel) 3. Agenda (orange diamonds + 6 agenda lines) 4. Content #1 (blue triangle deco — the most versatile) ⭐ 5. Content + Image (left text + right image) 6. 2 Content (two columns) 7. 3 Content (three columns) 8. Content Blue bg (dark blue + orange triangle — impact slide) 9. Section dark blue (solid navy separator) 10. Section orange (vivid orange with chevrons) 11. Quote (amber/yellow with quotation marks) 12. End Thank you (white + orange chevrons) Each layout now has: - Visual description (decorations, colors, positioning) - Exact placeholder IDs with types - Recommended usage - Dimensions in inches Added layout composition rule for standard decks: cover → agenda → section/content alternation → closing Agent instructions: 11.6 KB → 14.2 KB Generated with [Claude Code](https://claude.ai/code) via [Happy](https://happy.engineering) Co-Authored-By: Claude <noreply@anthropic.com> Co-Authored-By: Happy <yesreply@happy.engineering>
djuillard
pushed a commit
that referenced
this pull request
Apr 22, 2026
Visual analysis of all 50 layouts led to selection of 12 essential ones: 1. Title (cover with logo + waves) 2. Title + text (cover with right blue panel) 3. Agenda (orange diamonds + 6 agenda lines) 4. Content #1 (blue triangle deco — the most versatile) ⭐ 5. Content + Image (left text + right image) 6. 2 Content (two columns) 7. 3 Content (three columns) 8. Content Blue bg (dark blue + orange triangle — impact slide) 9. Section dark blue (solid navy separator) 10. Section orange (vivid orange with chevrons) 11. Quote (amber/yellow with quotation marks) 12. End Thank you (white + orange chevrons) Each layout now has: - Visual description (decorations, colors, positioning) - Exact placeholder IDs with types - Recommended usage - Dimensions in inches Added layout composition rule for standard decks: cover → agenda → section/content alternation → closing Agent instructions: 11.6 KB → 14.2 KB Generated with [Claude Code](https://claude.ai/code) via [Happy](https://happy.engineering) Co-Authored-By: Claude <noreply@anthropic.com> Co-Authored-By: Happy <yesreply@happy.engineering>
7 tasks
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.
Added missing file-writing keywords to the REPL mode file detection list.
Previously, files created with pandas to_excel() and other export methods
were not captured because the keyword list only included: open(), savefig,
to_csv, write(), .save().
Added: to_excel, to_json, to_parquet, to_html, to_xml, to_feather,
to_pickle, dump() (for json.dump, pickle.dump, yaml.dump).
This fix ensures generated files are properly detected and returned
in the API response when using REPL mode (Python only).