Openpaw c-research
Summarize web URLs, PDFs, YouTube videos, and podcasts using the `summarize` CLI. Instantly extract key points from any content type without manual reading. Useful for research, link digests, and media review.
install
source · Clone the upstream repo
git clone https://github.com/daxaur/openpaw
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/daxaur/openpaw "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/c-research" ~/.claude/skills/daxaur-openpaw-c-research && rm -rf "$T"
manifest:
skills/c-research/SKILL.mdsource content
What This Skill Does
Uses the
summarize CLI to extract key information from URLs, PDFs, YouTube videos, and podcast feeds. Returns a concise summary of the content.
CLI Tool: summarize
summarizeCommon Commands
# Summarize a web URL summarize https://example.com/article # Summarize a PDF (local file or URL) summarize /path/to/document.pdf summarize https://example.com/report.pdf # Summarize a YouTube video summarize https://www.youtube.com/watch?v=VIDEO_ID # Summarize a podcast episode summarize https://podcast-feed-url.com/episode.mp3 # Request a specific output format summarize --format bullets https://example.com/article summarize --format paragraph https://example.com/article
Usage Guidelines
- Always pass the full URL or absolute file path.
- For YouTube, use the full
URL — short links may not resolve.watch?v= - If the user asks to "look up", "read", or "check" a link, default to summarizing it.
- Present the summary in a clean, readable format — use bullet points for articles, prose for videos/podcasts.
Notes
- Requires an active internet connection for remote content.
- Very large PDFs may take longer to process.
- If
is not installed, check the project docs for the install method.summarize