pipecat: Skill for Claude Code

.claude/skills/provider-research-digest/SKILL.md

provider-research-digest is a skill for Claude Code from pipecat-ai/pipecat. It costs 42 tokens per session (776 once invoked), scanned A, original, BSD-2-Clause.

A skill that builds a dated digest from provider-research reports already stored on disk. The digest combines those reports with short highlight points.

In plain words
What is it for?
Use it after provider research to create or refresh the day's overview of findings.
Why use it?
It turns many separate service reports into one current summary without publishing anything externally.

Skill for Claude Code

Written for Claude Code: disable-model-invocation in frontmatter.

This is pipecat-ai/pipecat's own configuration. It tells Claude Code how to work on pipecat itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything pipecat configures →

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is uv run python scripts/provider-watch/digest.py --reports _reports --date <RUN_DATE> --out <scratch>/digest-draft.md.

Part of the pipecat-dev plugin — 11 skills shipped together

About the project

Pipecat is an open-source Python framework for building real-time conversational agents that work with voice, video, images, and other media. It is for creating voice assistants, companions, business agents, and multi-agent systems from modular conversation pipelines.

pipecat-ai/pipecat · 15,323 stars · on GitHub · pipecat.ai

Reuse

Borrowing it

Nothing to install: this file belongs to pipecat-ai/pipecat. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/pipecat-ai/pipecat/main/.claude/skills/provider-research-digest/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/pipecat-ai/pipecat

Made for: Claude Code.

Or install pipecat-dev, the plugin that ships this one along with the rest of its 11 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for provider-research-digest

README.md
[![agentmods](https://agentmods.dev/badge/skills/pipecat-ai/pipecat/provider-research-digest/github.svg)](https://agentmods.dev/skills/pipecat-ai/pipecat/provider-research-digest)
Your own site
<a href="https://agentmods.dev/skills/pipecat-ai/pipecat/provider-research-digest"><img src="https://agentmods.dev/badge/skills/pipecat-ai/pipecat/provider-research-digest/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for provider-research-digest

Your own site · 80×15
<a href="https://agentmods.dev/skills/pipecat-ai/pipecat/provider-research-digest"><img src="https://agentmods.dev/badge/skills/pipecat-ai/pipecat/provider-research-digest.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 42 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 776 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00042 $0.00776
Opus 5 $0.00021 $0.00388
Sonnet 5 $0.00008 $0.00155
Haiku 4.5 $0.00004 $0.00078

Measured 7d ago against content hash 9c9aa1d15772, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

provider-research-digest scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 7d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/skills/provider-research-digest/SKILL.md · 49 lines

How it starts

The opening of the file, as written. The whole thing — 49 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Render digests/<date>.md in the reports checkout from every report carrying the date, topped with highlight bullets you author. The digest is a function of the reports on disk, not of any one research run — re-running this skill after further same-date research replaces the digest with a fresh view of the whole date. Everything stays local — this skill publishes nothing; pushing the digest and opening the digest issue are scripts/provider-watch/publish.py --finalize's job, run afterwards by whoever invoked this.

Arguments

/provider-research-digest [--date YYYY-MM-DD]
  • --date YYYY-MM-DD — the date to digest. Defaults to today.

Instructions

Step 1: Sync the reports checkout

Record RUN_DATE as --date if given, else today's date (YYYY-MM-DD), and pick a scratch directory outside the repo (your session scratchpad if you have one, else mktemp -d -t provider-research-digest). The reports checkout is always ./_reports in this repo (gitignored). If it is missing, gh repo clone pipecat-ai/provider-watch-reports _reports; if it exists and has a remote, git -C _reports pull --ff-only — the digest must see every report published for the date, not a stale checkout. Stop with a clear error if no _reports/reports/*/*/<RUN_DATE>.md exists.

Step 2: Render a draft

uv run python scripts/provider-watch/digest.py --reports _reports --date <RUN_DATE> --out <scratch>/digest-draft.md

Read the draft: it aggregates every unit's summary, PRs, changes to consider and errors for the date.

Step 3: Author the highlights

Write up to 5 highlight bullets to <scratch>/highlights.md from the draft: what a maintainer should look at first — services broken out of the box, PRs and branches worth reviewing first, long-open gaps that finally moved, providers that errored. Judge from the whole date, not from whichever units were researched most recently, and skip bullets when nothing stands out. Match the draft's conventions (unit ids and code in backticks, report paths where a pointer helps).

Read the full file on GitHub · 49 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 7d ago First seen · 49 lines · 42 tokens per session scan A 9c9aa1d15772

Subscribe to this mod's changes

provider-research-digest is a skill published in the GitHub repository pipecat-ai/pipecat (15,323 stars, last pushed yesterday), licensed BSD-2-Clause. It adds 42 tokens to every session and 776 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-02.

Related

Other skills, from other repositories

amazon-alexa

Integracao completa com Amazon Alexa para criar skills de voz inteligentes, transformar Alexa em assistente com Claude como cerebro (projeto Auri) e integrar com AWS ecosystem (Lambda, DynamoDB, Polly, Transcribe, Lex, Smart Home).

sickn33/agentic-awesome-skills · 53 tokens

playwright-cli

Automates browser interactions for web testing, form filling, screenshots, and data extraction. Use when the user needs to navigate websites, interact with web pages, fill forms, take screenshots, test web applications, or extract information from web pages.

VoltAgent/voltagent · 52 tokens

Workspace Data Analyst

Analyze CSV files in the workspace and summarize insights.

VoltAgent/voltagent · 14 tokens

writing-agent-relay-workflows

Use when building multi-agent workflows with @relayflows/core. Covers conversation vs pipeline coordination, WorkflowBuilder/DAG steps, agents, {{steps.X.output}} chaining, repairable verification gates, evidence-based completion, mandatory Claude-then-Codex fresh-eyes review/fix loops with test hardening, channels…

AgentWorkforce/relay · 92 tokens

choosing-swarm-patterns

Use when coordinating multiple AI agents with Agent Relay's workflow engine and need to pick the right orchestration pattern - covers the 10 core patterns (fan-out, pipeline, hub-spoke, consensus, mesh, handoff, cascade, dag, debate, hierarchical) plus 14 specialized ones, with decision framework and accurate…

AgentWorkforce/relay · 76 tokens

using-agent-relay

Use when you are a registered relay agent (a spawned worker, or a lead that called registeragent) coordinating with peers in real time over current Agent Relay MCP tools - messaging, channels, threads, reactions, search, inbox, actions, and worker spawn/release. For role selection and orchestrator startup…

AgentWorkforce/relay · 85 tokens