From instaparser
Extract text content from a PDF using the Instaparser PDF API. Use when the user wants to parse or extract text from a PDF URL or file.
How this skill is triggered — by the user, by Claude, or both
Slash command
/instaparser:pdfThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Extract text content from a PDF document using the Instaparser PDF API.
Extract text content from a PDF document using the Instaparser PDF API.
For a PDF URL, use the GET method:
curl -s -G "https://www.instaparser.com/api/1/pdf" \
-H "Authorization: Bearer ${user_config.INSTAPARSER_API_KEY}" \
--data-urlencode "url=<URL>"
For a local file, use the POST method with multipart form-data:
curl -s -X POST "https://www.instaparser.com/api/1/pdf" \
-H "Authorization: Bearer ${user_config.INSTAPARSER_API_KEY}" \
-F "file=@/path/to/file.pdf"
Before uploading a local file, verify it exists. Only include the output parameter if the user explicitly requests a format. Valid values are text, html, or markdown.
The PDF API uses 5 credits per page.
npx claudepluginhub instapaper/instaparser-claude-plugin --plugin instaparserCreates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.