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.
npx skills add lucifer1004/claude-skill-typst --skill typstgit clone --depth 1 https://github.com/lucifer1004/claude-skill-typstWrote 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.
[](https://agentmods.dev/skills/lucifer1004/claude-skill-typst/typst)<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.
<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>- Socket pass
- Snyk pass
- NVIDIA SkillSpector warn
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.
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.
| Model | Per session | Once 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 |
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.
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.
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 |
What ships with it
43 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.
- academic.md 7.9 KB
- advanced.md 8.2 KB
- agents/typst-package-qa.md 2.6 KB
- agents/typst-verify.md 4.1 KB
- basics.md 4.6 KB
- cli.md 3.7 KB
- conversion.md 9.5 KB
- data/api-0.15.0-bm25.json 528 KB
- data/api-0.15.0.json 1346 KB
- data/api-0.15.1-bm25.json 528 KB
- data/api-0.15.1.json 1346 KB
- data/api-bm25.json 528 KB
- data/api-main-bm25.json 689 KB
- data/api-main.json 2052 KB
- data/api.json 1346 KB
- data/packages-bm25.json 343 KB
- data/packages.json 540 KB
- debug.md 12 KB
- examples/academic-paper.typ 3.7 KB
- examples/basic-document.typ 2.5 KB
- examples/package-example/lib.typ 792 B
- examples/package-example/README.md 1.9 KB
- examples/package-example/src/boxes.typ 1.4 KB
- examples/package-example/src/formatting.typ 1015 B
- examples/package-example/typst.toml 381 B
- examples/perf-test.typ 769 B
- examples/query-export.typ 1.9 KB
- examples/styled-document.typ 2.5 KB
- examples/tables-showcase.typ 2.6 KB
- examples/template-report.typ 6.0 KB
- LICENSE 1.0 KB
- migration.md 4.5 KB
- package.md 6.0 KB
- perf.md 2.9 KB
- query.md 7.1 KB
- scripts/perf-timings.py 10 KB runs code
- scripts/search-api.py 8.5 KB runs code
- scripts/search-packages.py 12 KB runs code
- scripts/validate-examples.py 7.7 KB runs code
- styling.md 5.2 KB
- tables.md 5.6 KB
- template.md 3.7 KB
- types.md 5.7 KB
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.
- 4d ago Changed · -1 lines ef9491aa8707
- 9d ago First seen · 138 lines · 71 tokens per session scan A 831467fd8f8f
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.
Other skills, from other repositories
pydicom
Use pydicom to read, inspect, write, transform, and safely preflight local DICOM datasets and pixel data. Applies to DICOM metadata, transfer syntaxes, compression plugins, frames, private elements, JSON, and bounded de-identification review.
foundry-hosted-agent-validation
Step-by-step process for validating a Python Foundry hosted agent sample (under python/samples/04-hosting/foundry-hosted-agents/) end to end — running it locally (native runtime and azd ai agent run) and after deploying it to an Azure AI Foundry project with azd. Use this when asked to validate a hosted agent sample.
skill-doc-delivery
Convert markdown to DOCX, PPTX, XLSX, PDF office documents — use when you need exportable deliverables.
pdf-extract-create-workflow
Complete PDF lifecycle: download, extract, and generate structured documents with reportlab.
document-direct-python
Use direct Python execution for reliable document creation including spreadsheets, PDFs, and structured reports.
parse-document
Convert a PDF, scan, image of a page, or office file to clean markdown through the connected Superlinked MCP edge, so the source document is not read into model context directly. Use when the user asks to read, parse, OCR, extract from, summarize, or answer questions about a document.