bluejeans

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

BlueJeans Skill

BlueJeans Skill

Overview

概述

Automates BlueJeans video conferencing operations including meeting scheduling, recording management, and collaboration features through browser automation.
通过浏览器自动化实现BlueJeans视频会议操作的自动化,包括会议安排、录制管理和协作功能。

Quick Install

快速安装

bash
curl -sSL https://canifi.com/skills/bluejeans/install.sh | bash
Or manually:
bash
cp -r skills/bluejeans ~/.canifi/skills/
bash
curl -sSL https://canifi.com/skills/bluejeans/install.sh | bash
或者手动安装:
bash
cp -r skills/bluejeans ~/.canifi/skills/

Setup

配置

Configure via canifi-env:
bash
undefined
通过canifi-env进行配置:
bash
undefined

First, ensure canifi-env is installed:

首先,确保已安装canifi-env:

canifi-env set BLUEJEANS_EMAIL "your-email@example.com" canifi-env set BLUEJEANS_PASSWORD "your-password"
undefined
canifi-env set BLUEJEANS_EMAIL "your-email@example.com" canifi-env set BLUEJEANS_PASSWORD "your-password"
undefined

Privacy & Authentication

隐私与认证

Your credentials, your choice. Canifi LifeOS respects your privacy.
你的凭证,由你掌控。 Canifi LifeOS尊重你的隐私。

Option 1: Manual Browser Login (Recommended)

选项1:手动浏览器登录(推荐)

If you prefer not to share credentials with Claude Code:
  1. Complete the Browser Automation Setup using CDP mode
  2. Login to the service manually in the Playwright-controlled Chrome window
  3. Claude will use your authenticated session without ever seeing your password
如果你不想与Claude Code共享凭证:
  1. 使用CDP模式完成浏览器自动化设置
  2. 在Playwright控制的Chrome窗口中手动登录服务
  3. Claude将使用你的已认证会话,全程不会获取你的密码

Option 2: Environment Variables

选项2:环境变量

If you're comfortable sharing credentials, you can store them locally:
bash
canifi-env set SERVICE_EMAIL "your-email"
canifi-env set SERVICE_PASSWORD "your-password"
Note: Credentials stored in canifi-env are only accessible locally on your machine and are never transmitted.
如果你愿意共享凭证,可以将其存储在本地:
bash
canifi-env set SERVICE_EMAIL "your-email"
canifi-env set SERVICE_PASSWORD "your-password"
注意:存储在canifi-env中的凭证仅能在你的本地机器上访问,绝不会被传输。

Capabilities

功能

  • Schedule and manage meetings
  • Access meeting recordings
  • Configure personal meeting room
  • Manage meeting settings
  • View meeting analytics
  • Handle meeting invitations
  • Control participant settings
  • Create meeting templates
  • 安排和管理会议
  • 访问会议录制内容
  • 配置个人会议室
  • 管理会议设置
  • 查看会议分析数据
  • 处理会议邀请
  • 控制参会者设置
  • 创建会议模板

Usage Examples

使用示例

Example 1: Schedule Meeting

示例1:安排会议

User: "Schedule a BlueJeans meeting for Friday at 2pm"
Claude: I'll schedule that meeting.
- Navigate to BlueJeans portal
- Click Schedule Meeting
- Set date and time for Friday 2pm
- Configure meeting options
- Send invitations
- Confirm meeting created
用户:"安排一场周五下午2点的BlueJeans会议"
Claude:我会安排这场会议。
- 导航至BlueJeans门户
- 点击安排会议
- 设置日期和时间为周五下午2点
- 配置会议选项
- 发送邀请
- 确认会议已创建

Example 2: Access Recording

示例2:获取录制内容

User: "Download the recording from the client meeting"
Claude: I'll find that recording.
- Navigate to Recordings section
- Locate client meeting recording
- Initiate download
- Confirm download started
用户:"下载客户会议的录制文件"
Claude:我会找到该录制文件。
- 导航至录制内容板块
- 定位客户会议的录制文件
- 启动下载
- 确认下载已开始

Example 3: Update Personal Room

示例3:更新个人会议室设置

User: "Change my BlueJeans personal room settings"
Claude: I'll update those settings.
- Navigate to Personal Room settings
- Access configuration options
- Update specified settings
- Save changes
- Confirm updated
用户:"修改我的BlueJeans个人会议室设置"
Claude:我会更新这些设置。
- 导航至个人会议室设置页面
- 进入配置选项
- 更新指定设置
- 保存更改
- 确认已更新

Example 4: Get Meeting Link

示例4:获取会议链接

User: "Get my BlueJeans meeting link to share"
Claude: I'll get your meeting link.
- Navigate to personal room
- Copy meeting URL
- Format for sharing
- Provide link with dial-in options
用户:"获取我的BlueJeans会议链接用于分享"
Claude:我会为你获取会议链接。
- 导航至个人会议室
- 复制会议URL
- 格式化以便分享
- 提供包含电话接入选项的链接

Authentication Flow

认证流程

  1. Navigate to bluejeans.com via Playwright MCP
  2. Enter email and password from canifi-env
  3. Handle SSO if configured
  4. Complete 2FA if enabled (notify user via iMessage)
  5. Verify dashboard access
  6. Maintain session cookies
  1. 通过Playwright MCP导航至bluejeans.com
  2. 从canifi-env中读取邮箱和密码并输入
  3. 若配置了SSO则处理单点登录
  4. 若启用了双因素认证(2FA)则通过iMessage通知用户
  5. 验证是否可访问仪表盘
  6. 维持会话Cookie

Error Handling

错误处理

  • Login Failed: Check SSO, retry authentication
  • Session Expired: Re-authenticate automatically
  • 2FA Required: iMessage for verification code
  • SSO Required: Handle enterprise SSO flow
  • Recording Not Found: Check date range
  • Meeting Limit: Notify of license limits
  • Permission Denied: Check admin settings
  • Connection Error: Retry with backoff
  • 登录失败:检查SSO设置,重试认证
  • 会话过期:自动重新认证
  • 需要2FA:通过iMessage请求验证码
  • 需要SSO:处理企业级SSO流程
  • 未找到录制内容:检查日期范围
  • 会议数量限制:通知用户许可证限制
  • 权限不足:检查管理员设置
  • 连接错误:通过退避策略重试

Self-Improvement Instructions

自我改进说明

When encountering new BlueJeans features:
  1. Document new UI elements
  2. Add support for new meeting types
  3. Log successful scheduling patterns
  4. Update for Verizon integrations
当遇到BlueJeans的新功能时:
  1. 记录新的UI元素
  2. 添加对新会议类型的支持
  3. 记录成功的会议安排模式
  4. 适配Verizon集成

Notes

注意事项

  • BlueJeans owned by Verizon
  • Enterprise deployments use SSO
  • Recordings stored in cloud
  • Personal room URL is persistent
  • Some features require admin access
  • Primetime events have different features
  • Gateway integration for legacy systems
  • BlueJeans归Verizon所有
  • 企业部署使用SSO
  • 录制内容存储在云端
  • 个人会议室URL是永久有效的
  • 部分功能需要管理员权限
  • 黄金时段活动具备不同的功能
  • 支持与遗留系统的网关集成