export-timeline-pdf

export-timeline-pdf is a skill for Claude Code, Codex from rcarmo/piclaw-addons. It costs 25 tokens per session (639 once invoked), scanned A, original, MIT.

A command that exports selected chat messages to a PDF file using a local web export service and wkhtmltopdf, a tool that converts web pages to PDFs.

In plain words
What is it for?
Use it to export recent messages, a time period, or specific message rows, with optional light or dark formatting.
Why use it?
It provides a printable or shareable copy of a chat timeline for a chosen message range or date range.

Skill for Claude CodeCodex

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

Needs its repository: it reads a path above its own folder, which exists only inside the repository. The line is bun ../../scripts/export-timeline-pdf.ts --chat web:default --last 50.

Good fit Use it to export recent messages, a time period, or specific message rows, with optional light or dark formatting.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/rcarmo/piclaw-addons
agentmods
npx agentmods add skills/rcarmo/piclaw-addons/export-timeline-pdf

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 export-timeline-pdf

README.md
[![agentmods](https://agentmods.dev/badge/skills/rcarmo/piclaw-addons/export-timeline-pdf/github.svg)](https://agentmods.dev/skills/rcarmo/piclaw-addons/export-timeline-pdf)
Your own site
<a href="https://agentmods.dev/skills/rcarmo/piclaw-addons/export-timeline-pdf"><img src="https://agentmods.dev/badge/skills/rcarmo/piclaw-addons/export-timeline-pdf/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 export-timeline-pdf

Your own site · 80×15
<a href="https://agentmods.dev/skills/rcarmo/piclaw-addons/export-timeline-pdf"><img src="https://agentmods.dev/badge/skills/rcarmo/piclaw-addons/export-timeline-pdf.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 25 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 639 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 pass 7 Sept 2026
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.00025 $0.00639
Opus 5 $0.00013 $0.00319
Sonnet 5 $0.00005 $0.00128
Haiku 4.5 $0.00003 $0.00064

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

Security

Grade A, and why

export-timeline-pdf 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 9d 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.

addons/export-timeline-pdf/skills/export-timeline-pdf/SKILL.md · 72 lines

How it starts

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

Export timeline PDF

Export chat history through piclaw's internal localhost HTML export endpoint and render it with wkhtmltopdf.

Steps

  1. Export the last 50 messages:

    bun ../../scripts/export-timeline-pdf.ts --chat web:default --last 50
    
  2. Export a date range:

    bun ../../scripts/export-timeline-pdf.ts --chat web:default \
      --from "2026-03-01T00:00:00Z" --to "2026-03-05T23:59:59Z"
    
  3. Export a specific message range by row ID:

    bun ../../scripts/export-timeline-pdf.ts --chat web:default \
      --from-row 1234 --to-row 1300
    
  4. Dark theme:

    bun ../../scripts/export-timeline-pdf.ts --chat web:default --last 20 --theme dark
    

Options

Flag Description Default
--chat Chat JID to export web:default
--from Start timestamp (ISO 8601) (all)
--to End timestamp (ISO 8601) (all)
--from-row Start message row ID (all)
--to-row End message row ID (all)
--last Export only the last N messages (all)
--theme light or dark light
--out Output PDF path /workspace/exports/timeline-<chat>.pdf
--port Piclaw web port auto-detect / 8080
--auth-key Internal export auth key env/config lookup
--html-only Save HTML sidecar without rendering PDF off

Auth

The internal endpoint is only available on localhost and requires an internal auth key. The script resolves it in this order:

  1. --auth-key
  2. PICLAW_EXPORT_AUTH_KEY
  3. PICLAW_INTERNAL_SECRET
  4. PICLAW_WEB_INTERNAL_SECRET
  5. web.internalSecret from /workspace/.piclaw/config.json

Prerequisites

  • wkhtmltopdf must be installed and available on PATH
  • piclaw web server must be running locally

Notes

  • The script is read-only: it never opens SQLite and never writes auth/session state.
  • The HTML export endpoint is GET /internal/export/timeline.
  • The script writes an HTML sidecar next to the PDF for inspection, then renders that local file so bearer tokens are not passed to wkhtmltopdf.

Read the full file on GitHub · 72 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. 9d ago First seen · 72 lines · 25 tokens per session scan A 8844b77898a1

Subscribe to this mod's changes

export-timeline-pdf is a skill published in the GitHub repository rcarmo/piclaw-addons (23 stars, last pushed today), licensed MIT. It adds 25 tokens to every session and 639 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-08-30.

Related

Other skills, from other repositories

pdf

Process PDF files - extract text, create PDFs, merge documents. Use when user asks to read PDF, create PDF, or work with PDF files.

shareAI-lab/learn-claude-code · 32 tokens

pdf

A set of instructions for working with PDF files, which are documents designed to preserve their layout across devices.

agentscope-ai/QwenPaw · 95 tokens

nano-pdf

Edits PDF files using natural-language instructions via the nano-pdf CLI. Supports modifying text, changing titles, fixing typos, and updating content on specific pages. Use when the user wants to edit a PDF, modify PDF content, update PDF text, fix a typo in a PDF, change a PDF title, or rewrite part of a PDF page.

elizaOS/eliza · 75 tokens

hive.pdf

Read, write, merge, split, rotate, watermark, encrypt, and OCR PDF files using Python (pypdf, pdfplumber, reportlab, pypdfium2) and command-line tools (poppler-utils, qpdf). Use when the user asks to extract text/tables/images from a PDF, create or modify a PDF, combine or split PDFs, OCR a scanned PDF…

aden-hive/hive · 98 tokens

pdf-toolkit

Structured .pdf operations: extract text/tables, merge pages from multiple PDFs, split a PDF by page ranges, fill PDF form fields, and generate fresh PDFs from JSON. Trigger when the user wants programmatic PDF work without natural-language rewriting — examples: pull tables from a report, combine three PDFs, extract…

opensquilla/opensquilla · 127 tokens

pdf-analysis

A PDF analysis method for reading both normal PDFs with selectable text and scanned PDFs made from page images.

OpenSenseNova/SenseNova-Skills · 48 tokens