PdfKmp CLAUDE.md

PdfKmp CLAUDE.md is an instructions file for coding agents from ConaMobileDev/PdfKmp. It costs 3,568 tokens per session, scanned A, original, Apache-2.0.

Project instructions for PdfKmp, a Kotlin Multiplatform library that creates PDF files for Android, iOS, and desktop computers. They describe its shared layout system, platform-specific rendering, project structure, and build commands.

In plain words
What is it for?
Use them when building, testing, or changing PdfKmp itself, including its PDF layout, rendering backends, and platform-specific builds.
Why use it?
They give coding agents the technical context needed to work safely across several operating systems without confusing library usage instructions with project-development instructions.

Instructions file

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.

agentmods
npx agentmods add instructions/conamobiledev/pdfkmp/claude-md
Clone the repo
git clone --depth 1 https://github.com/ConaMobileDev/PdfKmp

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 PdfKmp CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/conamobiledev/pdfkmp/claude-md.svg)](https://agentmods.dev/instructions/conamobiledev/pdfkmp/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/conamobiledev/pdfkmp/claude-md"><img src="https://agentmods.dev/badge/instructions/conamobiledev/pdfkmp/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 3,568 This file is loaded in full into every session.
When invoked 3,568 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
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 $0.03568 $0.03568
Opus 5 $0.01784 $0.01784
Sonnet 5 $0.00714 $0.00714
Haiku 4.5 $0.00357 $0.00357

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

Security

Grade A, and why

PdfKmp CLAUDE.md 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.

CLAUDE.md · 134 lines

How it starts

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

CLAUDE.md

Repository conventions and build commands for AI agents (Claude Code, etc.) working on the PdfKmp codebase itself.

Reading PdfKmp to use it as a library? Check AGENTS.md (universal AI guide) or .claude/skills/pdfkmp/SKILL.md (Claude Code slash command) instead.

Looking for the human-facing tour? See README.md.


Project

PdfKmp is an open-source Kotlin Multiplatform PDF generator targeting Android, iOS, and Desktop (JVM — macOS, Windows, Linux). Published to Maven Central as io.github.conamobiledev:pdfkmp.

The library is built around a single closed sealed PdfNode tree authored via a Compose-style DSL. Layout is performed in commonMain (MeasuredNode), and rendering is dispatched to platform-specific PdfCanvas implementations:

  • Android backendandroid.graphics.pdf.PdfDocument + Canvas (AndroidPdfCanvas).
  • iOS backendUIGraphicsBeginPDFContextToData + Core Graphics (IosPdfCanvas).
  • JVM / Desktop backend — Apache PdfBox (JvmPdfCanvas / JvmPdfDriver). Pure-Java, no native libraries; embeds subset TrueType fonts for vector text, builds axial/radial PDF shadings for gradients, and writes real link annotations + a populated info dictionary. The PdfBox dependency lives only in the jvmMain source set.
  • Common test backendFakePdfDriver / FakePdfCanvas in commonTest records every draw call as a sealed DrawCall so the entire pipeline can be exercised end-to-end without native APIs.

Every text glyph and shape is emitted as a vector path — no rasterisation. Output stays sharp at any zoom level.

Build commands

# Canonical test surface — exercises common + the iOS platform layer
./gradlew :pdfkmp:iosSimulatorArm64Test

# JVM / Desktop test surface — exercises common + the PdfBox backend
# end-to-end (SamplesSmokeTest re-renders every sample; JvmBackendTest
# re-parses + rasterises the output). Fast; no simulator needed.
./gradlew :pdfkmp:jvmTest

# Library — all platform artefacts (Android aar + iOS frameworks + JVM jar)
./gradlew :pdfkmp:assemble

# Library — single-platform builds
./gradlew :pdfkmp:linkDebugFrameworkIosArm64
./gradlew :pdfkmp:linkDebugFrameworkIosSimulatorArm64
./gradlew :pdfkmp:jvmJar

# Sample apps
./gradlew :sample:installDebug                     # Android, on connected device
# iOS sample: open iosApp/iosApp.xcodeproj in Xcode and Run

# Publishing — all four publishable modules ship together; release them in lock-step.
# Maven Central releases normally go through GitHub: publishing a Release triggers the
# publish.yml workflow, which runs the command below for you on a macOS runner. Run it by
# hand ONLY as a local/fallback path, and NEVER for a version you also publish a GitHub
# Release for — both call publishAndReleaseToMavenCentral, so the second fails on a
# duplicate version. See the Publishing checklist below.
./gradlew :pdfkmp:publishToMavenLocal :pdfkmp-compose-resources:publishToMavenLocal :pdfkmp-viewer:publishToMavenLocal :pdfkmp-markdown:publishToMavenLocal              # local install
./gradlew :pdfkmp:publishAndReleaseToMavenCentral :pdfkmp-compose-resources:publishAndReleaseToMavenCentral :pdfkmp-viewer:publishAndReleaseToMavenCentral :pdfkmp-markdown:publishAndReleaseToMavenCentral  # Maven Central (fallback; CI does this on Release)

Read the full file on GitHub · 134 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 First seen · 134 lines · 3,568 tokens per session scan A 2f6877b75895

Subscribe to this mod's changes

PdfKmp CLAUDE.md is an instructions file published in the GitHub repository ConaMobileDev/PdfKmp (52 stars, last pushed 18d ago), licensed Apache-2.0. It adds 3,568 tokens to every session, about $0.0178 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.