Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计通过

init初始化

Agent Skill

init 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

343

周安装

14

GitHub Stars

16

下载量

111
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/pipecat-ai/skills --skill init

简介

用于查找、检索和筛选相关信息。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

  • 适合根据关键词快速定位候选结果。
  • 可结合来源仓库和原始 README 核验具体用法。
  • 安装前建议确认权限范围和维护状态。
  • init 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Scaffold a new Pipecat project by collecting configuration from the user and running pc init in non-interactive mode.

Arguments

/init [--output <PATH>]
  • --output (optional): Directory where the project will be created. Defaults to the current directory.

Prerequisites

Check if pc is installed by running pc --version. If not installed, tell the user to install it with uv tool install pipecat-ai-cli and stop.

Discover Available Options

Before asking the user any questions, run pc init --list-options to get the current valid values for all fields. The output is JSON:

{
  "bot_type": ["web", "telephony"],
  "transports": {
    "web": ["daily", "smallwebrtc"],
    "telephony": ["twilio", "telnyx", ...]
  },
  "stt": ["deepgram_stt", "openai_stt", ...],
  "llm": ["openai_llm", "anthropic_llm", ...],
  "tts": ["cartesia_tts", "elevenlabs_tts", ...],
  "realtime": ["openai_realtime", "gemini_live_realtime", ...],
  "video": ["heygen_video", "tavus_video", "simli_video"]
}

Use this data to populate the choices in every question below. Do NOT hardcode service lists — always use the values from --list-options.

Configuration Flow

Walk through the following questions to build the project configuration. After collecting all answers, show a summary and run the command.

Choosing the right interaction method:

  • AskUserQuestion — Use for questions with a small, fixed set of options (bot type, pipeline mode, client framework, yes/no questions). This gives a clean clickable UI.
  • Show list as text — Use for questions with many options (STT, LLM, TTS, realtime, video, transports). Display the full list of available options from --list-options formatted as a readable list, then let the user reply with their choice in chat.

Step 1: Project Name

Ask the user for a project name. This will be used as the directory name and project identifier.

Step 2: Bot Type

Ask the user to choose a bot type:

  • Web/Mobile (web) - Browser or mobile app
  • Telephony (telephony) - Phone calls

Step 3: Client Framework (web only)

If the bot type is web, ask the user to choose a client framework:

  • React (react)
  • Vanilla JS (vanilla)
  • None (none) - Server only, no client generated

If the user chose React, ask which dev server:

  • Vite (vite)
  • Next.js (nextjs)

Skip this step entirely for telephony bots.

Step 4: Transport

Show the user the full list of available transports from --list-options, filtered by the selected bot type. Let the user reply with their choice.

If the user chose a daily_pstn transport, ask for mode:

  • Dial-in (receive calls) → use --daily-pstn-mode dial-in
  • Dial-out (make calls) → use --daily-pstn-mode dial-out

If the user chose a twilio_daily_sip transport, ask for mode:

  • Dial-in (receive calls) → use --twilio-daily-sip-mode dial-in
  • Dial-out (make calls) → use --twilio-daily-sip-mode dial-out

Then ask if they want to add an additional transport for local testing. This is common — e.g. a telephony bot that also supports WebRTC for development.

Step 5: Pipeline Mode

Ask the user to choose a pipeline architecture:

  • Cascade (cascade) - STT → LLM → TTS pipeline
  • Realtime (realtime) - Speech-to-speech model

Step 6: AI Services

If cascade mode, show the full list of available options from --list-options for each service and let the user reply with their choice:

  1. Speech-to-Text (STT) — Show all available STT services
  2. Language Model (LLM) — Show all available LLM services
  3. Text-to-Speech (TTS) — Show all available TTS services

If realtime mode, show all available realtime services and let the user reply with their choice.

For each service question, display the options as a numbered vertical list (one per line) so the user can easily scan and pick one.

Step 7: Features

Show the user the default feature settings and ask if they want to customize:

Defaults:

  • Audio recording: No
  • Transcription logging: No
  • Video avatar service: None
  • Video input: No (web only)
  • Video output: No (web only)
  • Observability: No

If they want to customize, ask about each feature. For video avatar service (web bots only), use the video options from --list-options.

If a video avatar service is selected, video output is automatically enabled.

Step 8: Deployment

Ask if they want to generate Pipecat Cloud deployment files (Dockerfile, pcc-deploy.toml). Default is yes.

If deploying to cloud, ask if they want to enable Krisp noise cancellation. Default is no.

Building the Command

After collecting all answers, build the pc init command using non-interactive flags:

pc init \
  --name <project_name> \
  --bot-type <web|telephony> \
  --transport <transport> \
  --mode <cascade|realtime> \
  [--stt <service>] \
  [--llm <service>] \
  [--tts <service>] \
  [--realtime <service>] \
  [--video <service>] \
  [--client-framework <react|vanilla|none>] \
  [--client-server <vite|nextjs>] \
  [--daily-pstn-mode <dial-in|dial-out>] \
  [--twilio-daily-sip-mode <dial-in|dial-out>] \
  [--recording | --no-recording] \
  [--transcription | --no-transcription] \
  [--video-input | --no-video-input] \
  [--video-output | --no-video-output] \
  [--deploy-to-cloud | --no-deploy-to-cloud] \
  [--enable-krisp | --no-enable-krisp] \
  [--observability | --no-observability] \
  --output <output_dir>

For multiple transports, repeat the --transport flag (e.g. --transport twilio --transport smallwebrtc).

Confirmation

Before running the command, show the user a summary of their choices:

  • Project name
  • Bot type
  • Client framework (if web)
  • Transport(s)
  • Pipeline mode and services
  • Features enabled
  • Deployment target

Ask the user to confirm before proceeding. If they want to change something, go back and re-ask that specific question.

Running the Command

Run the pc init command. Use --output to specify the output directory (from the --output argument, or default to ./<project_name>).

If the command succeeds, show the user what was generated and suggest next steps:

  1. cd <project_name>/server
  2. Copy .env.example to .env and fill in API keys
  3. Run the bot

If deploying to cloud, also mention they can use /pipecat-cloud:deploy to deploy.

Error Handling

  • If pc init fails with validation errors, show the error and help the user fix their choices.
  • If the output directory already exists and is not empty, warn the user before proceeding.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.31%
按下载量换算41

Claude

31.1%
按下载量换算35

Cursor

18.1%
按下载量换算20

Gemini CLI

9.17%
按下载量换算10

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills