jimeng-login
即梦AI平台(jimeng.jianying.com)浏览器登录。当需要操作即梦数字人、视频生成等功能前检测到未登录时触发。处理协议同意、抖音OAuth扫码、登录态持久化。
Best use case
jimeng-login is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
即梦AI平台(jimeng.jianying.com)浏览器登录。当需要操作即梦数字人、视频生成等功能前检测到未登录时触发。处理协议同意、抖音OAuth扫码、登录态持久化。
Teams using jimeng-login should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/jimeng-login/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How jimeng-login Compares
| Feature / Agent | jimeng-login | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
即梦AI平台(jimeng.jianying.com)浏览器登录。当需要操作即梦数字人、视频生成等功能前检测到未登录时触发。处理协议同意、抖音OAuth扫码、登录态持久化。
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# 即梦登录
## 前置条件
- OpenClaw 浏览器已启动(profile=openclaw)
- 即梦页面已打开或即将打开
## 登录检测
判断即梦是否已登录:
- **未登录**:左侧栏底部显示"登录"按钮
- **已登录**:左侧栏底部显示用户头像和"开会员"入口
检测方式:对即梦页面做 snapshot,查找 `menuitem "登录"` 元素。存在则未登录。
## 登录流程
### 1. 同意协议弹框
点击"登录"按钮后弹出"同意协议后前往登录"对话框。
**关键坑点**:aria-ref 点击"同意"按钮经常超时。用 JS 点击:
```javascript
// snapshot 中按钮 ref 可能超时,改用 evaluate
() => {
const all = document.querySelectorAll('[role="dialog"] button');
const results = [];
all.forEach(el => results.push({ tag: el.tagName, text: el.textContent, class: el.className }));
return results;
}
```
找到 class 包含 `agree-button` 的按钮后:
```javascript
() => {
const btn = document.querySelector('[class*="agree-button"]');
if (btn) { btn.click(); return 'clicked'; }
return 'not found';
}
```
### 2. 抖音 OAuth 扫码
同意协议后,即梦会**弹出新标签页**跳转到 `open.douyin.com` 的抖音授权页面(不是页内弹窗)。
操作步骤:
1. 调用 `browser tabs` 查找 title 包含"抖音授权"的标签页
2. 对该标签页截图,获取二维码图片
3. 用 `message` 工具将截图发送给用户(`media` 参数传本地图片路径)
4. 提示用户打开抖音APP → 左上角扫一扫 → 扫码授权
**注意**:多次点击登录会产生多个抖音授权标签页,只需取最新的一个。
### 3. 等待用户扫码确认
用户扫码后,抖音授权标签页会自动关闭/跳转,即梦主页面刷新为已登录状态。
验证方式:对即梦主页面截图,确认左下角不再显示"登录",而是用户头像。
### 4. 登录态持久化
登录态自动保存在 Chrome user-data 目录:
```
~/.openclaw/browser/openclaw/user-data
```
下次 `browser start profile=openclaw` 启动时自动保持登录。
可选:导出 cookies 备份到 `memory/jimeng-cookies-backup.json`:
```javascript
() => { return document.cookie; }
```
## 常见问题
| 问题 | 解决方案 |
|------|---------|
| "同意"按钮 aria-ref 点击超时 | 用 JS evaluate 通过 class 选择器点击 |
| 登录后页面没变化 | 刷新即梦主页面(navigate 回原 URL) |
| open_id cross app 错误 | 发送图片用 `message` 工具而非直接调飞书 API |
| 多个抖音授权标签页 | 用 `browser tabs` 列出,只操作最新的,关闭多余的 |
| 二维码过期 | 关闭抖音授权标签页,重新点击即梦登录按钮 |Related Skills
jimeng-storyboard
将口播视频剧本拆解为即梦AI数字人平台的分镜头脚本。输出格式为每个镜头的角色说(台词)和动作描述(镜头语言/数字人动作),适配即梦 jimeng.jianying.com 数字人视频生成界面。触发场景:用户需要生成口播视频分镜、数字人视频剧本拆解、即梦分镜脚本、短视频口播脚本分镜、数字人台词加动作拆分。
jimeng-digital-human
即梦AI数字人视频生成全流程自动化。通过浏览器自动化操控 jimeng.jianying.com 数字人界面,完成角色上传、音色选择、台词填入、视频生成和下载。触发场景:用户需要生成数字人视频、即梦数字人、AI数字人口播视频、数字人视频制作。依赖 jimeng-login skill 处理登录。
browser-login-monitor
> 浏览器登录安全监控——监测浏览器会话状态与登录安全
wemp-operator
> 微信公众号全功能运营——草稿/发布/评论/用户/素材/群发/统计/菜单/二维码 API 封装
zsxq-smart-publish
Publish and manage content on 知识星球 (zsxq.com). Supports talk posts, Q&A, long articles, file sharing, digest/bookmark, homework tasks, and tag management. Use when publishing content to 知识星球, creating/editing posts, uploading files/images/audio, managing digests, batch publishing, or formatting content for 知识星球.
zoom-automation
Automate Zoom meeting creation, management, recordings, webinars, and participant tracking via Rube MCP (Composio). Always search tools first for current schemas.
zoho-crm-automation
Automate Zoho CRM tasks via Rube MCP (Composio): create/update records, search contacts, manage leads, and convert leads. Always search tools first for current schemas.
ziliu-publisher
字流(Ziliu) - AI驱动的多平台内容分发工具。用于一次创作、智能适配排版、一键分发到16+平台(公众号/知乎/小红书/B站/抖音/微博/X等)。当用户需要多平台发布、内容排版、格式适配时使用。触发词:字流、ziliu、多平台发布、一键分发、内容分发、排版发布。
zhihu-post-skill
> 知乎文章发布——知乎平台内容创作与发布自动化
zendesk-automation
Automate Zendesk tasks via Rube MCP (Composio): tickets, users, organizations, replies. Always search tools first for current schemas.
youtube-knowledge-extractor
This skill performs deep analysis of YouTube videos through **both information channels** Multimodal YouTube video analysis through both audio (transcript) and visual (frame extraction + image analysis) channels. Especially powerful for HowTo videos, tutorials, demos, and explainer videos where what is SHOWN (screenshots, UI demos, diagrams, code, physical actions) is just as important as what is SAID. Use this skill whenever a user wants to analyze, summarize, or create step-by-step guides from YouTube videos, or when they share a YouTube URL and want to understand what happens in the video. Triggers on requests like "Analyze this YouTube video", "Create a step-by-step guide from this video", "What does this video show?", "Summarize this tutorial", or any YouTube URL shared with analysis intent.
youtube-factory
Generate complete YouTube videos from a single prompt - script, voiceover, stock footage, captions, thumbnail. Self-contained, no external modules. 100% free tools.