Pulled ALL skills from 15 source repositories: - anthropics/skills: 16 (docs, design, MCP, testing) - obra/superpowers: 14 (TDD, debugging, agents, planning) - coreyhaines31/marketingskills: 25 (marketing, CRO, SEO, growth) - better-auth/skills: 5 (auth patterns) - vercel-labs/agent-skills: 5 (React, design, Vercel) - antfu/skills: 16 (Vue, Vite, Vitest, pnpm, Turborepo) - Plus 13 individual skills from various repos Mosaic Stack is not limited to coding — the Orchestrator and subagents serve coding, business, design, marketing, writing, logistics, analysis, and more. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
34 lines
1008 B
Python
34 lines
1008 B
Python
import os
|
|
import sys
|
|
|
|
from pdf2image import convert_from_path
|
|
|
|
|
|
|
|
|
|
def convert(pdf_path, output_dir, max_dim=1000):
|
|
images = convert_from_path(pdf_path, dpi=200)
|
|
|
|
for i, image in enumerate(images):
|
|
width, height = image.size
|
|
if width > max_dim or height > max_dim:
|
|
scale_factor = min(max_dim / width, max_dim / height)
|
|
new_width = int(width * scale_factor)
|
|
new_height = int(height * scale_factor)
|
|
image = image.resize((new_width, new_height))
|
|
|
|
image_path = os.path.join(output_dir, f"page_{i+1}.png")
|
|
image.save(image_path)
|
|
print(f"Saved page {i+1} as {image_path} (size: {image.size})")
|
|
|
|
print(f"Converted {len(images)} pages to PNG images")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
if len(sys.argv) != 3:
|
|
print("Usage: convert_pdf_to_images.py [input pdf] [output directory]")
|
|
sys.exit(1)
|
|
pdf_path = sys.argv[1]
|
|
output_directory = sys.argv[2]
|
|
convert(pdf_path, output_directory)
|