Agent Skills
› anthropics/knowledge-work-plugins
› setup-zoom-oauth
setup-zoom-oauth
GitHub指导正确实现 Zoom OAuth 认证,涵盖应用类型选择、授权流程确定、最小权限范围规划、令牌刷新机制及故障排查,避免常见配置错误。
Trigger Scenarios
设置 Zoom 应用凭据
选择 OAuth 授权类型
请求 API 作用域
处理令牌刷新逻辑
调试认证失败问题
Install
npx skills add anthropics/knowledge-work-plugins --skill setup-zoom-oauth -g -y
SKILL.md
Frontmatter
{
"name": "setup-zoom-oauth",
"description": "Implement Zoom authentication correctly. Use when setting up app credentials, choosing an OAuth grant, requesting scopes, handling token refresh, or debugging auth failures."
}
/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
- 6f13415 Current 2026-07-05 18:32


