Agent Skills
› openai/plugins
› setup-zoom-oauth
setup-zoom-oauth
GitHub用于处理Zoom OAuth集成中的认证配置。涵盖应用类型选择、授权流程确定、最小权限范围规划、令牌存储与刷新机制定义,以及认证调试和常见错误规避,确保正确构建安全的身份验证链路。
Trigger Scenarios
需要设置OAuth认证
认证成为集成阻塞点
需决定影响整体集成的认证策略
Install
npx skills add openai/plugins --skill setup-zoom-oauth -g -y
SKILL.md
Frontmatter
{
"name": "setup-zoom-oauth",
"description": "Use when setting up OAuth."
}
/setup-zoom-oauth
Use this skill when auth is the blocker or when auth choices will shape the entire integration.
Scope
- App type selection
- OAuth grant selection
- Scope planning
- Token exchange and refresh
- Auth debugging and environment assumptions
Workflow
- Determine the app model and who is authorizing whom.
- Choose the correct grant flow.
- Identify minimum scopes for the user flow.
- Define token storage and refresh behavior.
- Route into the deepest relevant reference docs only after the above is clear.
Primary References
Common Mistakes
- Picking a grant before clarifying the actor and tenant model
- Asking for broad scopes before confirming the exact workflow
- Forgetting refresh-token behavior and token lifecycle handling
- Reusing an old refresh token after a successful refresh instead of storing the newly returned one
- Treating auth failures as API failures without checking app configuration first
Version History
- 11c74d6 Current 2026-07-19 09:54


