CtrlK
BlogDocsLog inGet started
Tessl Logo

libtransform

libtransform - Resource transformation utilities. pdfToHtml converts PDF documents to HTML using LLM vision capabilities, splitting pages to images and processing with multimodal models. Use for document conversion, PDF processing, and knowledge extraction from documents.

Install with Tessl CLI

npx tessl i github:copilot-ld/copilot-ld --skill libtransform
What are skills?

76

Does it follow best practices?

Validation for skill structure

SKILL.md
Review
Evals

libtransform Skill

When to Use

  • Converting PDF documents to HTML
  • Extracting content from scanned documents
  • Processing documents with LLM vision models
  • Building document transformation pipelines

Key Concepts

pdfToHtml: Splits PDF into page images, sends to vision-capable LLM, and assembles HTML output with semantic structure.

Usage Patterns

Pattern 1: Convert PDF to HTML

import { pdfToHtml } from "@copilot-ld/libtransform";

const pdfBuffer = await fs.readFile("document.pdf");
const html = await pdfToHtml(pdfBuffer, {
  model: "gpt-4-vision-preview",
  maxPages: 50,
});

Integration

Used by libingest pipeline for document processing. Requires LLM with vision capabilities.

Repository
copilot-ld/copilot-ld
Last updated
Created

Is this your skill?

If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.