From report-analyst
Render a markdown report-analyst output to a styled PDF via Typst (preferred) or pandoc (fallback). Use when the user wants the analysis bundle as a shareable document rather than raw markdown.
npx claudepluginhub danielrosehill/claude-code-plugins --plugin report-analystThis skill uses the workspace's default tool permissions.
A previous skill (typically `comprehensive-analysis`, but any of the analysis/extraction outputs) has produced a markdown file and the user wants a PDF or styled deliverable.
Guides Next.js Cache Components and Partial Prerendering (PPR): 'use cache' directives, cacheLife(), cacheTag(), revalidateTag() for caching, invalidation, static/dynamic optimization. Auto-activates on cacheComponents: true.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Share bugs, ideas, or general feedback.
A previous skill (typically comprehensive-analysis, but any of the analysis/extraction outputs) has produced a markdown file and the user wants a PDF or styled deliverable.
*-analysis.md in the working directory.pandoc <input>.md -o <input>.typ, then typst compile <input>.typ <output>.pdf.pandoc <input>.md -o <output>.pdf --pdf-engine=xelatex (or wkhtmltopdf). Use when Typst isn't available.Source: <input-md>
Renderer: <typst | pandoc-xelatex | pandoc-wkhtmltopdf>
Output: <output-pdf>
If the renderer fails (missing dependencies), report the missing tool clearly and suggest the install command for the user's distro. Don't silently fall back to a renderer the user didn't approve.