adobe-core-workflow-b

Featured

Execute Adobe PDF Services workflow: create PDFs from HTML/DOCX, extract text/tables, document generation from templates, and PDF-to-Markdown conversion. Use when building document automation, extracting content from PDFs, or generating dynamic reports. Trigger with phrases like "adobe pdf", "pdf services", "extract pdf", "create pdf", "document generation", "pdf to markdown".

AI & Automation 2,359 stars 334 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Adobe Core Workflow B — PDF Services ## Overview Document automation using Adobe PDF Services API: create PDFs from HTML/DOCX, extract structured text and tables with Sensei AI, generate documents from Word templates with JSON data, and convert PDFs to LLM-friendly Markdown. ## Prerequisites - Completed `adobe-install-auth` with PDF Services credentials - `npm install @adobe/pdfservices-node-sdk` (v4.x+) - 500 free document transactions/month on the free tier ## Instructions ### Step 1: Create PDF from HTML ```typescript // src/workflows/pdf-create.ts import { ServicePrincipalCredentials, PDFServices, MimeType, CreatePDFJob, CreatePDFResult, } from '@adobe/pdfservices-node-sdk'; import * as fs from 'fs'; const credentials = new ServicePrincipalCredentials({ clientId: process.env.ADOBE_CLIENT_ID!, clientSecret: process.env.ADOBE_CLIENT_SECRET!, }); const pdfServices = new PDFServices({ credentials }); export async function htmlToPdf(htmlPath: string, outputPath: string): Promise<void> { const inputStream = fs.createReadStream(htmlPath); const inputAsset = await pdfServices.upload({ readStream: inputStream, mimeType: MimeType.HTML, }); const job = new CreatePDFJob({ inputAsset }); const pollingURL = await pdfServices.submit({ job }); const result = await pdfServices.getJobResult({ pollingURL, resultType: CreatePDFResult, }); const resultAsset = result.result!.asset; const streamAsset = await pdfServices.getContent({ a...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
8 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category