For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Get Started
  • Overview
    • Welcome
    • How It Works
  • Getting Started
    • Installation
    • Configuration
  • Usage
    • CLI Reference
    • Summary Styles
    • Batch Processing
    • Config Management
    • Retry Behavior
    • Errors and Troubleshooting
  • Features
    • Visual Mode
    • Transcription
    • Webapp
    • Caching
  • Integrations
    • Share a Summary
    • Cobalt
    • Proxy
    • Agent Skill
Get Started
On this page
  • What It Does
  • File Locations (Relative to Project Root)
  • Key Rules for Agents
Integrations

Agent Skill

Was this page helpful?
Edit this page
Previous
Built with

The repo includes a built-in agent skill at .agent/skills/summarize/SKILL.md for AI agent integration.

What It Does

Allows an AI agent to invoke the summarizer CLI as a tool. The agent can:

  • Summarize videos from URLs
  • Extract specific styles (wisdom, fact-check, tutorial)
  • Chain multiple styles for comprehensive analysis
  • Read the generated summary and present it to the user

File Locations (Relative to Project Root)

FileLocation
Config./summarizer.yaml
API keys./.env
Prompt templates./summarizer/prompts.json
Output summaries./summaries/<filename>.md

Key Rules for Agents

  • Never fetch or scrape URLs directly — Pass the URL to the CLI and let it handle downloading, transcription, and summarization internally.
  • Always read the output file from summaries/ rather than expecting stdout.
  • Use --no-config only when every parameter is passed explicitly.
  • Do not use --no-save on Windows — Unicode output crashes stdout.