PDF Report

Convert HTML and structured data into downloadable PDF files.

Updated Aug 23, 2026
One-click install
npx skills add https://github.com/maximoseo/space-agent --skill pdf-report-maximoseo
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: PDF Report
Source: https://github.com/maximoseo/space-agent/tree/main/app/L0/_all/mod/_core/skillset/ext/skills/pdf-report
Command: npx skills add https://github.com/maximoseo/space-agent --skill pdf-report-maximoseo

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Convert browser-rendered content into reliable, printable PDFs directly in the web runtime, eliminating manual export steps and external tooling.

Core Features & Use Cases

  • Render HTML/CSS as a PDF in-browser using a canvas-based workflow, including theming and sectioned reports.
  • Generate PDFs from structured data with designed layouts (title, sections, metrics, cards) and provide quick download.
  • Use-case: Export a project report or dashboard snapshot to share offline.

Quick Start

Provide an HTML snippet or a structured report object and call the downloadPdfFromHtml or downloadPdfFromReport to start the download.

Frequently Asked Questions about PDF Report

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I convert HTML to a downloadable PDF directly in the browser?▼

You can generate a PDF download directly in the browser by passing your HTML snippet to a canvas-based rendering workflow, which chunks the content into paginated sections and triggers a file download.

Can I generate a PDF report from structured data with sectioned layouts?▼

Yes, you can generate a PDF report from structured data by passing a report object to a helper function, which applies designed layouts including titles, sections, metrics, and cards before downloading.

Does in-browser PDF generation preserve CSS theming and dynamic content?▼

In-browser PDF generation preserves CSS theming and dynamic content by rendering the HTML onto a canvas first, ensuring that the visual styling and dynamic data are maintained in the final printable document.

What is the best way to export a dashboard snapshot to a printable PDF offline?▼

The best way to export a dashboard snapshot to a printable PDF is using an in-browser canvas workflow that captures rendered content and provides helper functions to export bytes or trigger a file download locally.

Do I need external libraries or dependencies to create PDFs from web pages?▼

You do not need external libraries or dependencies to create PDFs from web pages, as the conversion process operates entirely within the web runtime using canvas rendering and chunking helper functions.