Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add instructions/pipecat-ai/pipecat/agents-mdgit clone --depth 1 https://github.com/pipecat-ai/pipecatWhat 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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.04168 | $0.04168 |
| Opus 5 | $0.02084 | $0.02084 |
| Sonnet 5 | $0.00834 | $0.00834 |
| Haiku 4.5 | $0.00417 | $0.00417 |
Grade A, and why
pipecat AGENTS.md 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 2d 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.
How it starts
The opening of the file, as written. The whole thing — 224 lines — stays where its author put it; the contents beside it link to each section on GitHub.
AGENTS.md
This file provides guidance to AI coding agents when working with code in this repository.
Project Overview
Pipecat is an open-source Python framework for building real-time voice and multimodal conversational AI agents. It orchestrates audio/video, AI services, transports, and conversation pipelines using a frame-based architecture.
Common Commands
# Setup development environment
uv sync --group dev --all-extras --no-extra gstreamer --no-extra local
# Install pre-commit hooks
uv run pre-commit install
# Run all tests
uv run pytest
# Run a single test file
uv run pytest tests/test_name.py
# Run a specific test
uv run pytest tests/test_name.py::test_function_name
# Preview changelog
uv run towncrier build --draft --version Unreleased
# Run a behavioral eval scenario against a running bot (bot started with `-t eval`)
pipecat eval run scenarios/<name>.yaml --bot-url ws://localhost:7860
# Run the full release-eval suite (spawns bots from a manifest, runs scenarios in parallel)
pipecat eval suite scripts/release-evals/manifest.yaml -p <bot-pattern> -s <scenario>
# Lint and format check
uv run ruff check
uv run ruff format --check
# Update dependencies (after editing pyproject.toml)
uv lock && uv sync
Architecture
Frame-Based Pipeline Processing
All data flows as Frame objects through a pipeline of FrameProcessors:
[Processor1] → [Processor2] → ... → [ProcessorN]
Key components:
-
Frames (
src/pipecat/frames/frames.py): Data units (audio, text, video) and control signals. Flow DOWNSTREAM (input→output) or UPSTREAM (acknowledgments/errors). -
FrameProcessor (
src/pipecat/processors/frame_processor.py): Base processing unit. Each processor receives frames, processes them, and pushes results downstream. -
Pipeline (
src/pipecat/pipeline/pipeline.py): Chains processors together. -
ParallelPipeline (
src/pipecat/pipeline/parallel_pipeline.py): Runs multiple pipelines in parallel.
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.
- 2d ago First seen · 224 lines · 4,168 tokens per session scan A 8b5c76640102
pipecat AGENTS.md is an instructions file published in the GitHub repository pipecat-ai/pipecat (15,103 stars, last pushed today), licensed BSD-2-Clause. It adds 4,168 tokens to every session, about $0.0208 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-08-30.
Other instructions, from other repositories
moq CLAUDE.md
Claude Code instructions for moq-dev/moq, covering claude.md, project overview, common development commands, code quality and testing and architecture.
next-sanity AGENTS.md
Instructions for sanity-io/next-sanity, covering agent notes, next-sanity/live export conditions, runtime nuance, ai literacy framework (ailf) and cursor cloud specific instructions.
relay AGENTS.md
Instructions for AgentWorkforce/relay, covering git workflow rules, never push directly to main, correct workflow, ... do work .. and stop here - let user merge.
moss AGENTS.md
Instructions for usemoss/moss, covering agents.md, what this repo is, repository layout, integrations & cookbooks and framework cookbooks (examples/cookbook/).
mastra AGENTS.md
AGENTS.md instructions for mastra-ai/mastra: Unless asked, don't inspect reference or modify examples. Use the most-specific AGENTS.md; for package work, read packages/ /AGENTS.md first.
liveblocks AGENTS.md
AGENTS.md instructions for liveblocks/liveblocks, covering project structure, bash commands, code style, dependencies and code quality.