typst

typst is a skill for Claude Code, Codex from lucifer1004/claude-skill-typst. It costs 71 tokens per session (1,783 once invoked), scanned A, original, MIT.

A guide for creating and compiling Typst documents. Typst is a markup-based document system that turns plain-text source files into PDFs, images, or HTML.

In plain words
What is it for?
Use it when editing `.typ` files, building document templates or packages, or converting Markdown or LaTeX content to Typst.
Why use it?
It provides commands and checks for producing documents and reviewing both their content and visual layout. This helps find missing text, spacing problems, and alignment issues.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it when editing .typ files, building document templates or packages, or converting Markdown or LaTeX content to Typst.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/lucifer1004/claude-skill-typst/typst
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 lucifer1004/claude-skill-typst --skill typst
Clone the repo
git clone --depth 1 https://github.com/lucifer1004/claude-skill-typst

Made for: Claude Code, Codex.

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 typst

README.md
[![agentmods](https://agentmods.dev/badge/skills/lucifer1004/claude-skill-typst/typst/github.svg)](https://agentmods.dev/skills/lucifer1004/claude-skill-typst/typst)
Your own site
<a href="https://agentmods.dev/skills/lucifer1004/claude-skill-typst/typst"><img src="https://agentmods.dev/badge/skills/lucifer1004/claude-skill-typst/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 typst

Your own site · 80×15
<a href="https://agentmods.dev/skills/lucifer1004/claude-skill-typst/typst"><img src="https://agentmods.dev/badge/skills/lucifer1004/claude-skill-typst/typst.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 71 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,783 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
  • Socket pass 18 May 2026
  • Snyk pass 18 May 2026
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 2 findings, up to high

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 →

  • high System Prompt Leakage · line 96
    Skill contains instructions that could directly expose system prompts, internal rules, or hidden instructions to users or external parties.
    Fix: Remove any instructions that reveal, print, or output system prompts or internal rules. System instructions should never be exposed to end users.
  • high System Prompt Leakage · line 96
    Skill contains instructions that could directly expose system prompts, internal rules, or hidden instructions to users or external parties.
    Fix: Remove any instructions that reveal, print, or output system prompts or internal rules. System instructions should never be exposed to end users.
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.00071 $0.01783
Opus 5 $0.00036 $0.00892
Sonnet 5 $0.00014 $0.00357
Haiku 4.5 $0.00007 $0.00178

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

Security

Grade A, and why

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 4d ago.

The scan reads SKILL.md. This mod also ships 4 executable files (scripts/perf-timings.py, scripts/search-api.py, scripts/search-packages.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.

skills/typst/SKILL.md · 137 lines

How it starts

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

Typst

This skill targets Typst 0.15+. For Typst 0.14.2, use the typst-0.14.2 repository tag for the previous skill snapshot.

Compilation

typst compile document.typ              # compile once → PDF
typst compile document.typ output.pdf   # explicit output path
typst compile document.typ -f png       # export as PNG image
typst compile src/main.typ --root .     # set project root for /path imports
typst watch document.typ                # recompile on change
typst eval --in document.typ 'query(heading).len()'  # Typst 0.15+ introspection

For command options beyond this quick reference, see cli.md.

Agent verification — choose by what you need to check (see debug.md for details):

Method Command Best for
HTML export typst compile doc.typ /dev/stdout -f html --features html 2>/dev/null Text content, structure, headings, tables
PNG export typst compile doc.typ page-{p}.png -f png Visual layout, alignment, spacing, fonts
pdftotext typst compile doc.typ && pdftotext doc.pdf - Fallback for page-specific content

Minimal Document

#set page(paper: "a4", margin: 2cm)
#set text(size: 11pt)

= Title

Content goes here.

Writing Documents

Starting a new document? Copy the closest recipe from Examples below — it's faster than starting blank and each row names the docs to read next.

When you need to... Read
Learn syntax, imports, functions, control flow basics.md
Learn data types, operators, string/array methods types.md
Style pages, headings, figures, layout styling.md
Tables, grids, cell spans, borders, data tables tables.md
Academic papers, bibliography, theorems, equations academic.md
Convert from Markdown or LaTeX conversion.md
Upgrade older Typst code, 0.15 breaking changes migration.md
Use Typst CLI commands and build options cli.md
Extract data from documents, multi-pass builds query.md

Read the full file on GitHub · 137 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. 4d ago Changed · -1 lines ef9491aa8707
  2. 9d ago First seen · 138 lines · 71 tokens per session scan A 831467fd8f8f

Subscribe to this mod's changes

typst is a skill published in the GitHub repository lucifer1004/claude-skill-typst (123 stars, last pushed yesterday), licensed MIT. It adds 71 tokens to every session and 1,783 once invoked, about $0.0004 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-30.

Related

Other skills, from other repositories