-
Notifications
You must be signed in to change notification settings - Fork 3.3k
feat(tools): add generate_presentation tool (native rust engine, ppt-rs) (#2778) #3016
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
graycyrus
merged 30 commits into
tinyhumansai:main
from
oxoxDev:feat/2778-presentation-tool
Jun 2, 2026
Merged
Changes from all commits
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
2d58123
feat(artifacts): add create/finalize/fail helpers + error field (#2778)
oxoxDev 82e8fa9
feat(runtime_python): add run + venv helpers for Python-backed tools …
oxoxDev 026fe48
feat(tools): add generate_presentation tool backed by python-pptx (#2…
oxoxDev 63310f5
test(presentation): end-to-end integration + CI python-pptx provision…
oxoxDev aa1469c
feat(agent/orchestrator): add generate_presentation to named tool lis…
oxoxDev 471d181
fix(presentation): validate theme length with MAX_TEXT_CHARS cap (#2778)
oxoxDev 2f51f8c
fix(presentation): redact title from logs + fail artifact on setup er…
oxoxDev bec8888
fix(presentation): harden temp script write against symlink/clobber (…
oxoxDev 4511a74
fix(presentation): enforce absolute --output path at runtime (#2778)
oxoxDev d81b59f
fix(runtime_python): bound stdin write+shutdown by the deadline (#2778)
oxoxDev 17c57b6
fix(runtime_python): redact requirements + bound venv creation (#2778)
oxoxDev 69c5e5a
test(presentation): pin preflight to one resolved python binary (#2778)
oxoxDev f577c9c
test(playwright): force-remove lingering joyride portal in dismiss he…
oxoxDev f03565e
fix(runtime_python): drain stdout/stderr concurrently with stdin writ…
oxoxDev 4a3c1ae
test(playwright): install MutationObserver to scrub re-mounted joyrid…
oxoxDev c5866e4
fix(runtime_python): reject pre-release Python versions in selector (…
oxoxDev 687940f
chore(fmt): apply pre-push auto-fixes (#2778)
oxoxDev e0e2a2e
refactor(presentation): swap python-pptx subprocess for native rust e…
oxoxDev b1eae8d
fix(presentation): flip artifact to Failed on finalize error; engine …
oxoxDev c835d14
fix(presentation): thread real deadline into join-cancel timeout (#2778)
oxoxDev 88875e2
fix(presentation/engine): map cancelled JoinError to GenerationFailed…
oxoxDev c9d6c55
Merge remote-tracking branch 'upstream/main' into feat/2778-presentat…
oxoxDev 9c5a217
chore(#2778): scrub stale python-pptx references after engine swap
oxoxDev 2ce9acb
Merge remote-tracking branch 'upstream/main' into feat/2778-presentat…
oxoxDev 10f1a19
Merge remote-tracking branch 'upstream/main' into pr/3016
senamakel 067bb1b
fix(tools/ops): use root_config.workspace_dir for PresentationTool
oxoxDev 45ba517
Merge remote-tracking branch 'upstream/main' into feat/2778-presentat…
oxoxDev ed698e6
fix(presentation): redact path PII in write-error log + reject whites…
oxoxDev f64a439
docs(runtime_python): clarify why module ships unused post-engine-swa…
oxoxDev a0459fb
chore(presentation): purge python-pptx scaffolding now that engine is…
oxoxDev File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ppt-rslinkspulldown-cmark+syntectunconditionally (for its markdown/code-highlight paths, which this tool never exercises), so we pay ~10-15MB of binary bloat for code we don't call. The PR body already notes this. Could be worth filing the upstream issue to gateclap/pulldown-cmark/syntectbehind a non-default feature, and tracking it so we can shrink the binary later. Not blocking — just flagging so it doesn't get lost.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not blocking, confirmed. Tracking the upstream
ppt-rsfeature-gating ask as a follow-up — the unusedclap/pulldown-cmark/syntectpaths cost ~10-15MB and a default-features-off + opt-in markdown/highlight features would let us shrink the binary later. Will open an issue against theppt-rsrepo before this PR lands and link the tracking URL here.