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


