Token导航 LogoToken导航TokenDH.com
开发需要联网github未标认证来源可访问许可证需确认审计通过

pipecatpipecat 命令行

Agent Skill

pipecat 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

220

周安装

9

GitHub Stars

14

下载量

71
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:pipecat(pipecat 命令行)
来源仓库:https://github.com/itechmeat/llm-code
仓库路径:skills/pipecat
安装命令:
npx skills add https://github.com/itechmeat/llm-code --skill pipecat
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/itechmeat/llm-code --skill pipecat

简介

用于处理 GitHub 仓库、Issue 和 Pull Request。

  • 适合围绕代码变更和协作事项进行整理。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。
  • 可结合来源仓库和原始 README 继续核验用法。
  • 安装前建议确认是否会触发联网或文件读写。
  • pipecat 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Pipecat

Pipecat is an open-source Python framework for building real-time voice and multimodal bots. It composes streaming speech/LLM/TTS services into a low-latency pipeline, connected via transports (WebRTC/WebSocket) and client SDKs using the RTVI message standard.

Links

Quick navigation

  • Installation (packages/extras/CLI): references/installation.md
  • Migration to 1.0: references/migration-1-0.md
  • Concepts & architecture: references/core-concepts.md
  • Session initialization (runner/bot/client): references/session-initialization.md
  • Pipeline & frames: references/pipeline-and-frames.md
  • Transports: references/transports.md
  • Speech input & turn detection: references/speech-input-and-turn-detection.md
  • Client SDKs + RTVI messaging: references/client-sdks-rtvi.md
  • CLI (init/tail/cloud): references/cli.md
  • Function calling (server): references/function-calling.md
  • Context management: references/context-management.md
  • LLM inference: references/llm-inference.md
  • Text to speech (TTS): references/text-to-speech.md
  • Deployment (pattern/platforms): references/deployment.md
  • Server APIs (supported services): references/server-services.md
  • Server Utilities (runner): references/server-runner.md
  • Server APIs (pipeline/task/params): references/server-pipeline-apis.md
  • Pipecat Cloud ops: references/pipecat-cloud.md
  • Troubleshooting: references/troubleshooting.md

Mental model (cheat sheet)

  • Pipeline: ordered processors that consume/emit frames.
  • Frames: the streaming units (audio/text/video/context/events) flowing through the pipeline.
  • Transport: connectivity + media IO + session state (WebRTC/WebSocket/provider realtime).
  • Runner: HTTP service that starts sessions and spawns a bot process with transport credentials.
  • Client SDK: starts the bot, connects transport, sends messages/requests, receives events.

Recipes

1) Keep secrets server-side

  • Put provider API keys (LLM/STT/TTS) only on the server/bot container.
  • The client should call a server start endpoint (startBot / startBotAndConnect) to receive transport credentials (e.g., a room URL + token), not provider keys.

2) Use WebRTC for production voice

  • Prefer a WebRTC transport (e.g., Daily) for resilience and media quality.
  • Use a WebSocket transport mostly for server↔server, prototypes, or constrained environments.

2b) Design for streaming + overlap

  • Keep the pipeline fully streaming (avoid batching whole turns when you can).
  • If your services support it, start TTS from partial LLM output to reduce perceived latency.

3) Initialize and evolve context via RTVI

  • Initialize the bot’s pipeline context from the server start request payload.
  • For ongoing interaction, prefer a dedicated “send text” style API (when available) instead of deprecated context append methods.

4) Function calling: end-to-end flow

  • LLM requests a function call.
  • Client registers a handler by function name.
  • Client returns a function-call result message back to the bot.

5) Pipecat Cloud deployment basics

  • Build/push an image that matches the expected platform (Pipecat Cloud requires linux/arm64 in the docs).
  • Use a deployment config file for repeatability.
  • Configure pool sizing with min_agents (warm capacity) and max_agents (hard limit).

Critical gotchas / prohibitions

  • Do not embed sensitive API keys in client apps.
  • Expect and handle “at capacity” responses (HTTP 429) when the pool is exhausted.
  • Plan for cold-start latency if min_agents = 0.
  • Ensure secrets and image-pull credentials are created in the same region as the deployed agent.
  • Do not assume deprecated import shims or service-specific context classes still exist in 1.0.0; audit imports before upgrading.
  • Do not keep VAD/turn-detection logic on transport params; current releases route that control through LLMUserAggregator strategies.
  • Do not assume OpenAIResponsesLLMService is HTTP-based anymore; WebSocket is now the default implementation.

Release Highlights (0.0.109 -> 1.0.0)

Runtime and service additions

  • OpenAIResponsesLLMService now defaults to a persistent WebSocket connection; the prior HTTP behavior moved to OpenAIResponsesHttpLLMService.
  • Inworld Realtime LLM adds a WebSocket cascade STT/LLM/TTS path with semantic VAD and function calling.
  • MistralTTSService adds streaming Voxtral TTS, and TTS/STT services gained more runtime-update and sample-rate options.
  • The development runner now exports a module-level FastAPI app for custom routes before main().

Tooling and context changes

  • Function calling now supports grouped parallel tool batches, async tool completion after interruption, and streaming intermediate tool results.
  • Context editing now has LLMMessagesTransformFrame, and the framework standardizes on universal LLMContext / LLMContextAggregatorPair.
  • OpenAI tool schemas can now include provider-specific custom_tools.

Breaking migrations

  • Deprecated service-specific context classes, transport params, RTVI shims, frame aliases, and interruption/VAD helpers were removed across the stack.
  • Turn detection and mute behavior moved toward LLMUserAggregator strategies instead of transport-level configuration.
  • Some legacy providers and helpers were removed entirely (OpenPipeLLMService, TTSService.say(), FrameProcessor.wait_for_task(), older beta/alias modules).

Links

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.11%
按下载量换算26

Claude

28.81%
按下载量换算20

Cursor

19.2%
按下载量换算14

Gemini CLI

9.74%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills