This skill should be used when users need to convert PDFs (especially with tables or figures), mentions 'convert', 'PDF', 'document processing', has complex academic papers to import, or asks about document conversion options.
Converts complex PDFs with tables and figures into editable text using optimal extraction methods.
npx claudepluginhub linxule/interpretive-orchestrationThis skill inherits all available tools. When active, it can use any tool Claude has access to.
Robust PDF and document conversion with intelligent tool selection. Chooses the best available conversion method based on document complexity and MCP availability.
Use this skill when:
| Feature | MinerU (Optional) | Manual Conversion |
|---|---|---|
| API Key Required | Yes (MINERU_API_KEY) | No |
| PDF Accuracy | 90%+ (VLM mode) | Varies |
| Table Extraction | Excellent | Manual cleanup |
| Figure Handling | Extracts + describes | Manual description |
| Formula Recognition | Yes | Limited |
| Multi-column | Excellent | Manual formatting |
| Cost | Pay per page | Free |
Is the document a PDF with tables/figures?
├── Yes, complex tables
│ └── MinerU available?
│ ├── Yes → Use MinerU (vlm mode)
│ └── No → Manual conversion + review
├── Yes, simple formatting
│ └── Manual conversion or external tool
└── No, other format
└── Is it audio?
├── Yes → External transcription service
└── No → Manual conversion
Use mineru_parse to convert this academic paper:
- URL: https://example.com/paper.pdf
- Model: vlm (for 90% accuracy)
- Enable: formula, table recognition
For simple PDFs without MinerU:
1. Use Adobe Acrobat to export to Word/text
2. Or open in Google Docs for auto-OCR
3. Review and clean up formatting
For multiple PDFs:
1. Check which have complex tables (use MinerU if available)
2. Process simple ones with manual conversion
3. Queue complex ones for MinerU batch if API key available
Parse only specific pages:
mineru_parse({
url: "https://...",
pages: "1-10,15,20-25"
})
Process multiple documents:
mineru_batch({
urls: ["url1", "url2", "url3"],
model: "vlm"
})
After conversion, verify:
If MinerU unavailable:
For audio files, use external services:
Expert guidance for Next.js Cache Components and Partial Prerendering (PPR). **PROACTIVE ACTIVATION**: Use this skill automatically when working in Next.js projects that have `cacheComponents: true` in their next.config.ts/next.config.js. When this config is detected, proactively apply Cache Components patterns and best practices to all React Server Component implementations. **DETECTION**: At the start of a session in a Next.js project, check for `cacheComponents: true` in next.config. If enabled, this skill's patterns should guide all component authoring, data fetching, and caching decisions. **USE CASES**: Implementing 'use cache' directive, configuring cache lifetimes with cacheLife(), tagging cached data with cacheTag(), invalidating caches with updateTag()/revalidateTag(), optimizing static vs dynamic content boundaries, debugging cache issues, and reviewing Cache Component implementations.
Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.