Feat/report generation skills 51#64
Merged
arjun-zosma merged 16 commits intozosmaai:mainfrom Apr 3, 2026
Merged
Conversation
…port schema, registry
- createReportListTemplatesTool: lists registered templates as JSON - createReportGenerateTool: validates data against TypeBox schema, enforces 20-chart limit, renders via template.render(), writes to /workspace/output/ - createReportExecuteCodeTool: installs deps, runs Python/JS code in sandbox, collects output files from /workspace/output/ - src/index.ts: re-exports tools and types - templates/types.ts, templates/registry.ts: stubs for renderers task (task 1)
… to canonical shape
… exceljs for agent code reports
…t/report-generation-skills-51
Trex-Hub
previously approved these changes
Apr 2, 2026
Comment on lines
67
to
+101
| RUN apt-get update && apt-get install -y --no-install-recommends \ | ||
| build-essential \ | ||
| curl \ | ||
| g++ \ | ||
| git \ | ||
| iproute2 \ | ||
| jq \ | ||
| less \ | ||
| libcairo2-dev \ | ||
| libgif-dev \ | ||
| libjpeg-dev \ | ||
| libpango1.0-dev \ | ||
| librsvg2-dev \ | ||
| make \ | ||
| pkg-config \ | ||
| python3 \ | ||
| python3-pip \ | ||
| python3-venv \ | ||
| tini \ | ||
| curl \ | ||
| iproute2 \ | ||
| tree \ | ||
| jq \ | ||
| wget \ | ||
| less \ | ||
| unzip \ | ||
| wget \ | ||
| zip \ | ||
| make \ | ||
| g++ \ | ||
| && rm -rf /var/lib/apt/lists/* | ||
|
|
||
| # Install Python reporting libraries | ||
| RUN pip3 install --break-system-packages \ | ||
| matplotlib \ | ||
| numpy \ | ||
| openpyxl \ | ||
| pandas \ | ||
| python-pptx \ | ||
| reportlab \ | ||
| seaborn | ||
|
|
Contributor
There was a problem hiding this comment.
this makes the docker image heavy?
We might be losing benefits we get from using
FROM node:22-slim
Would it help to move to another image?
Contributor
Author
There was a problem hiding this comment.
Will review and do the change if needed
Contributor
Author
There was a problem hiding this comment.
@Trex-Hub changes made, please review once if legit
Trex-Hub
approved these changes
Apr 3, 2026
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.
Summary
Implemented the report generation skill at packages/skills/reports/ (currently an empty placeholder: export {}). This skill enables agents to produce formatted deliverables -- PDF reports, PPTX presentations, charts, and data exports
Related issue
Closes #53
Checklist
pnpm run checkpassespnpm run lintpasses