Agent Skills
› openai/plugins
› start
start
GitHub作为Zoom插件的默认入口技能,根据用户任务目标进行分类和路由。它防止SDK与API混淆,仅在明确路线后引用具体文档,并提供清晰建议以指导后续开发或调试。
Trigger Scenarios
开始新的Zoom集成项目
不确定选择哪种Zoom产品或SDK
需要设置OAuth或应用凭证
计划构建会议应用、机器人或实时处理器
Install
npx skills add openai/plugins --skill start -g -y
SKILL.md
Frontmatter
{
"name": "start",
"description": "Use when starting Zoom work."
}
Start
Use this as the default entry skill for the plugin.
What This Skill Does
- Classifies the request by job-to-be-done, not by product name alone
- Routes into the right implementation skill
- Pulls in product-specific Zoom references only after the route is clear
- Prevents common early mistakes, especially Meeting SDK vs Video SDK and REST API vs SDK confusion
Routing Table
| If the user wants to... | Route to |
|---|---|
| Choose the right Zoom surface for a new project | plan-zoom-product |
| Set up OAuth, tokens, scopes, or app credentials | setup-zoom-oauth |
| Embed or customize a Zoom meeting flow | build-zoom-meeting-app |
| Build a bot, recorder, or real-time meeting processor | build-zoom-bot |
| Debug a broken integration | debug-zoom |
Supporting Zoom References
Use these only after selecting the workflow:
Operating Rules
- Prefer one clear recommendation over a product catalog dump.
- Ask a short clarifier only when the route is genuinely ambiguous.
- Keep the first response architectural and actionable, then go deep.
- Pull in deeper references only when they directly help the current decision or implementation.
Version History
- 11c74d6 Current 2026-07-19 09:54


