Summarize
Curated, sanitized export of 21 agent-skill packages for Claude Code and Codex, gated by an automated publication audit (no secrets, no local paths).
npx -y skills add mj-deving/pai-skills --skill SummarizeAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Universal content extraction, summarization, web scraping, and transcription via summarize CLI (v0.11.1). USE WHEN summarize URL, extract transcript, YouTube transcript, summarize video, summarize article, batch summarize, extract slides, transcribe audio, summarize webpage, scrape website, extract markdown, web extraction, content extraction, scrape URL, podcast transcript, audio to text, video slides, OCR slides, extract content from URL.
SKILL.md
2.5 KB, 522 tokens by cl100k_base, as published. Nobody here has run it
Customization
Before executing, check for user customizations at:
${PAI_USER_DIR}/SKILLCUSTOMIZATIONS/Summarize/
If this directory exists, load and apply any PREFERENCES.md, configurations, or resources found there. These override default behavior.
Summarize — Universal Content Extraction & Summarization
Five capabilities in one CLI tool: Summarize, Scrape, Transcribe, Extract Slides, Batch Process.
Workflow Routing
| Request Pattern | Route To |
|---|---|
| Summarize URL/video/article, key takeaways from URL | Workflows/SummarizeContent.md |
| Extract transcript, YouTube transcript, transcribe audio/video | Workflows/ExtractTranscript.md |
| Scrape URL, extract webpage, get markdown from site | Workflows/ScrapeWebpage.md |
| Summarize multiple URLs, batch process | Workflows/BatchProcess.md |
| Extract slides, slides from video, OCR slides | Workflows/SlideExtract.md |
Quick Decision Tree
User wants...
├── Summary of content → SummarizeContent
├── Raw text/transcript → ExtractTranscript
├── Webpage as Markdown → ScrapeWebpage
├── Multiple URLs processed → BatchProcess
└── Visual slides from video → SlideExtract
Environment Setup
Source API keys before any summarize call:
[ -f ${AGENT_HOME}/.env ] && export $(grep -v '^#' ${AGENT_HOME}/.env | xargs)
export YT_DLP_PATH=$(which yt-dlp 2>/dev/null || echo ${HOME}/.local/bin/yt-dlp)
Integration with ExtractWisdom
Summarize extracts and compresses. ExtractWisdom analyzes in depth.
Pipeline: summarize --extract → raw text → ExtractWisdom → structured insights.
Scraping Tier Model
Tier 0: WebFetch (built-in, fastest, limited to static HTML)
Tier 1: Summarize --extract --format md (Readability + optional Firecrawl)
Tier 2: Scraping-Skill Bright Data Proxy (anti-bot bypass)
Tier 3: Scraping-Skill Playwright (full browser rendering)
Tier 4: Scraping-Skill Apify Actors (social media platforms)
Use Summarize for Tier 1 before escalating to heavier tools.