快速判断
- 01这个 Skill 是干嘛的
- 把会议视频处理和 Pika 相关多媒体能力整理成可调用的工作流。
- 02它能解决什么问题
- 解决视频素材整理、摘要、后期处理和生成步骤分散、难以自动衔接的问题。
- 03它适合谁来用
- 适合需要 Agent 协助处理会议视频与多媒体内容的创作者和团队。
Pika-Skills
把会议视频处理与 Pika 相关能力整理成可执行的多媒体工作流。
主要能力
Join a Google Meet or Zoom call as a video meeting agent via PikaStreaming. Trigger: user drops a Google Meet or Zoom link, or asks to join a meeting.
使用方式
仓库级安装会保留完整目录;本次核验的入口是 pikastream-video-meeting/SKILL.md。使用前先阅读英文 README 与原始 SKILL.md,并按当前 Agent 的目录规范安装。
适用边界
依赖外部服务和媒体权限,敏感录音录像不得直接上传。
许可与来源
来源:GitHub 公开仓库。核验许可:Apache-2.0。本页是贴近原仓库结构的中文导读,具体参数、依赖和更新记录以英文 README 为准。
Pika Skills Open
A collection of open-source skills for AI coding agents (Claude Code, OpenClaw, etc.) powered by the Pika Developer API.
What are Skills?
Skills are self-contained modules that extend the capabilities of AI coding agents. Each skill is a directory containing:
SKILL.md— The skill definition file. It tells the AI agent when to activate the skill, how to use it, and includes step-by-step instructions. The agent reads this file and follows the workflow described in it.scripts/— Executable scripts (Python, Bash, etc.) that the agent invokes as part of the skill workflow.requirements.txt— Python dependencies needed by the skill scripts.
When you install a skill into your agent workspace, the agent automatically detects the SKILL.md and knows how to use the skill — no manual configuration needed.
Available Skills
| Skill | Pricing | Description |
|---|---|---|
| pikastream-video-meeting | $0.275 / min | Join a Google Meet as a real-time AI avatar. |
Getting Started
1. Get a Pika Developer Key
Go to https://www.pika.me/dev/ and create a Developer Key (starts with dk_).
2. Set the Environment Variable
export PIKA_DEV_KEY="dk_your-key-here"
Or add it to your shell profile (~/.bashrc, ~/.zshrc, etc.) for persistence.
3. Install a Skill
Point your agent to the skill folder and ask it to install. For example:
install /path/to/your/Pika-Skills/pikastream-video-meeting/
4. Use It
Once installed, simply interact with your AI agent naturally. For example, drop a Google Meet link and the agent will automatically activate the pikastream-video-meeting skill.
The skill will check your balance before joining. If you need credits, it will generate a payment link for you automatically.
Skill: pikastream-video-meeting
An AI-powered video meeting bot that joins Google Meet calls as a real-time avatar.
Features
- Real-time avatar — Joins meetings with a generated or custom avatar image via PikaStreaming.
- Voice cloning — Clone your voice from a short audio recording.
- Avatar generation — Generate an AI avatar via OpenAI image models, or provide your own image.
- Automatic billing — Checks balance before joining, creates a payment link if needed, and waits for payment to complete.
- Context-aware conversation — The bot synthesizes workspace context (identity, recent activity, known people) into a system prompt for natural, informed conversation during meetings.
- Post-meeting notes — Automatically retrieves and shares meeting notes after the bot leaves.
Commands
The skill script supports four subcommands:
# Join a Google Meet
python scripts/pikastreaming_videomeeting.py join \
--meet-url <google-meet-url> --bot-name <name> \
--image <avatar-image> [--voice-id <id>] [--system-prompt-file <path>]
# Leave a meeting
python scripts/pikastreaming_videomeeting.py leave --session-id <id>
# Generate an avatar image
python scripts/pikastreaming_videomeeting.py generate-avatar --output <path> [--prompt <text>]
# Clone a voice from audio
python scripts/pikastreaming_videomeeting.py clone-voice \
--audio <file> --name <name> [--noise-reduction]
Environment Variables
| Variable | Required | Description |
|---|---|---|
PIKA_DEV_KEY | Yes | Pika Developer Key (dk_...). Get one at pika.me/dev |
Requirements
- Python 3.10+
PIKA_DEV_KEYenvironment variableffmpeg(optional, for audio format conversion during voice cloning)
Contributing
To add a new skill:
- Create a new directory with your skill name.
- Add a
SKILL.mdfollowing the frontmatter format (see existing skills for reference). - Add scripts and a
requirements.txtas needed. - Update this README with your skill's description.
License
Apache 2.0 — see LICENSE.