render-export-template

render-export-template is a skill for Claude Code from rossumai/claude-marketplace. It costs 195 tokens per session (3,137 once invoked), scanned A, original, MIT.

A workflow for editing and previewing Rossum export templates. Rossum is a document-automation service, and these Jinja2 templates turn processed documents into files such as CSV, XML, EDI, or JSON for another system.

In plain words
What is it for?
Use it to extract, render, debug, revise, and publish Rossum Custom Format Templating export templates.
Why use it?
The templates are stored inside hook settings as escaped text, making them difficult to read and easy to break. Rendering the real template against a real document shows the exact output before it is saved back.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: mentions CLAUDE.md.

Part of the rossum-sa plugin — 33 skills, 4 hooks shipped together

Good fit Use it to extract, render, debug, revise, and publish Rossum Custom Format Templating export templates.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/rossumai/claude-marketplace/render-export-template
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add rossumai/claude-marketplace --skill render-export-template
Clone the repo
git clone --depth 1 https://github.com/rossumai/claude-marketplace

Made for: Claude Code.

Or install rossum-sa, the plugin that ships this one along with the rest of its 33 skills, 4 hooks.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for render-export-template

README.md
[![agentmods](https://agentmods.dev/badge/skills/rossumai/claude-marketplace/render-export-template/github.svg)](https://agentmods.dev/skills/rossumai/claude-marketplace/render-export-template)
Your own site
<a href="https://agentmods.dev/skills/rossumai/claude-marketplace/render-export-template"><img src="https://agentmods.dev/badge/skills/rossumai/claude-marketplace/render-export-template/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for render-export-template

Your own site · 80×15
<a href="https://agentmods.dev/skills/rossumai/claude-marketplace/render-export-template"><img src="https://agentmods.dev/badge/skills/rossumai/claude-marketplace/render-export-template.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 195 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,137 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00195 $0.03137
Opus 5 $0.00097 $0.01569
Sonnet 5 $0.00039 $0.00627
Haiku 4.5 $0.00019 $0.00314

Measured 10d ago against content hash 7c808831486f, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

render-export-template scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

The scan reads SKILL.md. This mod also ships 2 executable files (scripts/render_export_template.py, tests/test_render_export_template.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/rossum-sa/skills/render-export-template/SKILL.md · 170 lines

How it starts

The opening of the file, as written. The whole thing — 170 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Render & Iterate on a Custom Format Templating Export Template

You are a Rossum.ai Solution Architect working on an export template — the Jinja2 template that the legacy Custom Format Templating export step renders into the file a downstream system ingests (flat file, CSV, XML, EDI, custom JSON). The whole reason this is hard by hand: the template lives as escaped lines inside a hook's settings, and the only way to know what it actually emits is to render it against a real annotation. Rendering JSON-via-Jinja is unforgiving — one misplaced comma from a loop.last guard, one wrong | tojson escape, and the export is invalid. So the core of this skill is a faithful render loop: pull the template into a local file, render it against a real document with the real Jinja2 engine, eyeball the exact output, edit, repeat — then push the finished template back into the hook.

Hook / annotation / context: $ARGUMENTS

When to use this skill

Pick this up automatically when any of the following holds:

  • The user wants to edit, preview, test, debug, or build an export template, or asks "what does my export file look like", "why is the export malformed", "change the export format / mapping".
  • The request mentions export_configs, file_content_template, file_content_template_multiline, export_reference_key, or "Custom Format Templating".
  • The user says "render the export template for hook X", "test this template against annotation Y", "pull the export template into a file", or any equivalent.

Disambiguation — read this before starting. Rossum has two unrelated "export" mechanisms:

  • Custom Format Templating (this skill): a Jinja2 template renders the annotation to a file. The template sits in settings.export_configs[].file_content_template_multiline.
  • Request Processor (NOT this skill): a multi-stage JSON pipeline that calls external APIs — no Jinja2 templates. If the hook's settings have stages/requests/call_api, this is the wrong skill → use export-pipeline-reference.

Read the full file on GitHub · 170 lines

Files

What ships with it

4 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 170 lines · 195 tokens per session scan A 7c808831486f

Subscribe to this mod's changes

render-export-template is a skill published in the GitHub repository rossumai/claude-marketplace (5 stars, last pushed yesterday), licensed MIT. It adds 195 tokens to every session and 3,137 once invoked, about $0.0010 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

feature-flag-policy

Cargo feature flags for crates/xberg — ORT-incompatible targets (WASM, Android x8664 emulator), type-only and tract inference companion features, WASM/Android-safe variants, PDF backend, mutually-exclusive ORT variants, platform-conditional deps, aggregate feature sets, and build profiles. Load when adding, wiring, or…

xberg-io/xberg · 98 tokens

ocr-pipeline-and-quality

Change or evaluate Xberg OCR backends, preprocessing, caching, page acceptance, geometry, hOCR structure, table reconstruction, or cross-backend quality. Load for OCR behavior and A/B quality work, not ordinary PDF text extraction.

xberg-io/xberg · 53 tokens

pdf-backends

Change or diagnose Xberg PDF extraction, native/Pdfium backend selection, PDF rendering sessions, encrypted documents, OCR fallback, or backend-specific capability gaps. Load for PDF engine work, not generic image OCR.

xberg-io/xberg · 46 tokens

add-sharepoint

Adds SharePoint Online connector to a Power Apps code app. Use when reading lists, managing documents, or integrating with SharePoint sites. Can also create new SharePoint lists.

microsoft/power-platform-skills · 39 tokens

using-the-mcp-server

Use when converting HTML to Markdown or extracting metadata and tables through the html-to-markdown MCP server's tools, rather than shelling out to the CLI. Covers the tool surface, the auto-installing launcher, and when MCP beats the CLI or SDK.

xberg-io/html-to-markdown · 57 tokens

nw-diagram

Generates C4 architecture diagrams (context, container, component) in Mermaid or PlantUML. Use when creating or updating architecture visualizations.

nWave-ai/nWave · 33 tokens