helpers: Skill for Claude Code

.claude/skills/slides.convert_to_typst/SKILL.md

slides.convert_to_typst is a skill for Claude Code from causify-ai/helpers. It costs 11 tokens per session (682 once invoked), scanned A, original, Apache-2.0.

A conversion skill that prepares Markdown presentation files for conversion to Typst, a markup language used to create formatted documents and slides.

In plain words
What is it for?
Use it to convert Markdown slides into Typst-compatible content while preserving their structure, formatting, and meaning.
Why use it?
It removes incompatibilities in math, symbols, variables, and presentation-specific commands before conversion.

Skill for Claude Code

Written for Claude Code: installed under .claude/. Also seen: model in frontmatter.

This is causify-ai/helpers's own configuration. It tells Claude Code how to work on helpers itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything helpers configures →

Reuse

Borrowing it

Nothing to install: this file belongs to causify-ai/helpers. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/causify-ai/helpers/master/.claude/skills/slides.convert_to_typst/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/causify-ai/helpers

Made for: Claude Code.

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 slides.convert_to_typst

README.md
[![agentmods](https://agentmods.dev/badge/skills/causify-ai/helpers/slides.convert_to_typst/github.svg)](https://agentmods.dev/skills/causify-ai/helpers/slides.convert_to_typst)
Your own site
<a href="https://agentmods.dev/skills/causify-ai/helpers/slides.convert_to_typst"><img src="https://agentmods.dev/badge/skills/causify-ai/helpers/slides.convert_to_typst/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 slides.convert_to_typst

Your own site · 80×15
<a href="https://agentmods.dev/skills/causify-ai/helpers/slides.convert_to_typst"><img src="https://agentmods.dev/badge/skills/causify-ai/helpers/slides.convert_to_typst.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 11 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 682 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. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Excessive Agency · line 3
    Skill selects an external model or provider that may use a different account or billing plan than the operator expects. Undisclosed model switches can cause unexpected cost or quota consumption.
    Fix: Remove the model/provider override or disclose it prominently and require explicit operator approval before invoking an external coding CLI or billed model.
How audits are shown
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.00011 $0.00682
Opus 5 $0.00005 $0.00341
Sonnet 5 $0.00002 $0.00136
Haiku 4.5 $0.00001 $0.00068

Measured 5d ago against content hash 57e0a590f9c3, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

slides.convert_to_typst 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 5d ago.

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.

.claude/skills/slides.convert_to_typst/SKILL.md · 75 lines

How it starts

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

Goal

  • Convert a markdown slides file to Typst presentation format
  • Preserve structure, content, and formatting
  • Output clean, well-formatted markdown code suitable for conversion to Typst

Workflow

  1. Read input file: markdown slides file (e.g., lectures.md)
  2. Apply conversion rules: systematically fix math, unicode, and formatting
  3. Validate output: verify no content loss, structure preserved
  4. Output file: write converted markdown with same base name

Conversion Rules

LaTeX Custom Commands

  • Replace presentation-specific commands with Typst equivalents:
    • $\EE$$bb(E)$ (blackboard E)
    • $\VV$$bb(V)$ (blackboard V)
    • $\Pr$$Pr$ (remove backslash)

Variables & Math Expressions

  • Wrap all variables, parameters, and math expressions in $...$:
    • Bad: Randomly permute the values of x_j across all samples
    • Good: Randomly permute the values of $x_j$ across all samples
    • Bad: Compute f(x) and g(x)
    • Good: Compute $f(x)$ and $g(x)$

Unicode → LaTeX

  • Replace unicode math characters with LaTeX:
    • Ω → $\Omega$
    • → → $\to$
    • ≤ → $\leq$
    • × → $\times$

Subscripts & Superscripts

  • Use math mode for all subscripts/superscripts:
    • Bad: P₀ or P^n
    • Good: $P_0$ or $P^n$

Math Operators

  • Use op() for named operators in Typst:
    • Bad: $g^* = arg min_(g in G)$
    • Good: $g^* = op("arg min")_(g in G)$
    • Also: $max_i x_i$$op("max")_i x_i$

Plain Numbers & Currency

  • Do NOT wrap pure numbers in math mode:
    • Bad:
      The house costs $50k because it has 4 bedrooms ($+\$30$k)
      
    • Good:
      The house costs \$50k because it has 4 bedrooms (+\$30k)
      

Block Formulas

  • Use Typst code blocks for complex multi-line formulas:
    $ Pr(X_1 , ... , X_n) = product_(i = 1)^n Pr(X_i | "Parents"(X_i)) $
    

Quality Checks

  • All slide headers & hierarchy preserved
  • No content deleted or truncated
  • All math expressions wrapped ($...$)
  • No unicode math characters remain
  • Operators properly formatted with op()
  • Code blocks and lists intact
  • File is valid markdown

Read the full file on GitHub · 75 lines

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. 5d ago First seen · 75 lines · 11 tokens per session scan A 57e0a590f9c3

Subscribe to this mod's changes

slides.convert_to_typst is a skill published in the GitHub repository causify-ai/helpers (145 stars, last pushed today), licensed Apache-2.0. It adds 11 tokens to every session and 682 once invoked, about $0.0001 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-09-03.

Related

Other skills, from other repositories

stage-dsl

The map for reading and editing an OpenMAIC stage document with readstage, patchstage, and grepstage. Load it before patching a structure you have not patched before, when patchstage rejects an operation, or whenever the path from a stage, outline, scene, content object, or action to the field you need is uncertain.…

THU-MAIC/OpenMAIC · 104 tokens

pptx-import

A method for adding an uploaded PowerPoint presentation to an existing classroom as extra pages while keeping the slides' original layout. PowerPoint is Microsoft's presentation file format.

THU-MAIC/OpenMAIC · 125 tokens

dev-camp-deck

Creates a professional PowerPoint presentation about a Copilot Dev Camp lab or topic. Researches Microsoft Learn documentation, organizes content into a slide structure, and generates a polished deck with speaker notes. Use when user asks to "create a presentation on", "make a deck about", "build a slideshow for"…

microsoft/copilot-camp · 91 tokens

read-book

When you want to read and extract structured notes from a book — PDF, EPUB, MOBI, markdown, .txt, pasted text, or URL to a public-domain work. Reads in chunks (by chapter when a TOC exists, by 50-page blocks otherwise), extracts per-chapter TL;DR + key concepts + quotes + action items + frameworks, and offers to…

coreyhaines31/makerskills · 192 tokens

exam-study-guide

A study-guide builder for a completed exam chapter that has not yet passed its required checks. It creates a structured teaching checklist and, in full mode, a self-contained HTML and printable PDF guide with readable formulas, visible images, explanations, examples, and answers.

ZeKaiNie/universal-examprep-skill · 113 tokens

training-report

Produce a professional training/workshop report as a .docx file. Use this skill whenever the user mentions "training report", "workshop report", "compte rendu", "compte rendu de formation", "formation report", "debriefing a workshop", "write up a training session", "résumé de formation", or any request to document a…

samber/cc-skills · 179 tokens