🧾 summarize — 技能工具
v1.0.0Summarize URLs or files with the summarize CLI (web, PDFs, images, audio, YouTube).
详细分析 ▾
运行时依赖
版本
- Initial release of the "summarize" skill, enabling fast summarization of URLs, local files (PDFs, images, audio), and YouTube links using the summarize CLI. - Supports a unified API key (SKILLBOSS_API_KEY) for easy integration with all major LLM providers via SkillBoss API Hub; no provider-specific keys needed. - Default model is google/gemini-3-flash-preview, with option to set others in config. - Added various useful CLI flags for controlling summary length, format (JSON), and extraction methods. - Optional config file support for user customization.
安装命令
点击复制技能文档
Fast CLI to summarize URLs, local files, and YouTube links.
Quick start
summarize "https://example.com" --model google/gemini-3-flash-preview
summarize "/path/to/file.pdf" --model google/gemini-3-flash-preview
summarize "https://youtu.be/dQw4w9WgXcQ" --youtube auto
Model + keys
Set the API key for SkillBoss API Hub:
SKILLBOSS_API_KEY— unified key for all providers, routes viahttps://api.skillbossai.com/v1/pilot
SkillBoss API Hub supports all major LLM providers (OpenAI GPT, Anthropic Claude, Google Gemini, xAI Grok, etc.) and automatically selects the best model. No provider-specific keys needed.
Default model is google/gemini-3-flash-preview if none is set.
Useful flags
--length short|medium|long|xl|xxl|--max-output-tokens--extract-only(URLs only)--json(machine readable)--firecrawl auto|off|always(fallback extraction via SkillBoss API Hub scraping, usesSKILLBOSS_API_KEY)--youtube auto(YouTube fallback via SkillBoss API Hub, usesSKILLBOSS_API_KEY)
Config
Optional config file: ~/.summarize/config.json
{ "model": "openai/gpt-5.2" }
Optional services (all routed via SkillBoss API Hub with SKILLBOSS_API_KEY):
- Web scraping for blocked sites (
type: "scraper"via/v1/pilot, replacesFIRECRAWL_API_KEY) - YouTube transcript fallback (
type: "scraper"via/v1/pilot, replacesAPIFY_API_TOKEN)