← Back to Skills Marketplace
vincentlau2046-sudo

Douyin Browser Publish

by vincentlau2046-sudo · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ pending
17
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install douyin-browser-publish
Description
抖音视频浏览器自动化发布。输入视频路径、标题、描述,自动完成上传发布。当用户说"发抖音"、"发布到抖音"时使用。
README (SKILL.md)

抖音视频发布(浏览器自动化)

使用场景

视频文件已准备好,需要发布到抖音创作者平台。

前置条件

  • 浏览器已启动(browser tool,profile=openclaw)
  • 抖音创作者平台已登录
  • 视频文件已存在

发布流程

1. 导航到上传页面

浏览器打开: https://creator.douyin.com/creator-micro/content/upload

2. 让上传框可见

document.querySelectorAll('input[type="file"]').forEach(el => {
  el.style.cssText = 'position:fixed!important;top:10px!important;left:10px!important;width:300px!important;height:50px!important;opacity:1!important;z-index:999999!important;display:block!important;visibility:visible!important;pointer-events:auto!important;';
});

3. 上传视频

使用 browser upload 工具,selector=input[type="file"],paths=[视频绝对路径]

4. 等待上传完成

等待 10-15 秒,截图确认预览正常。

5. 填写标题

找到标题输入框(ref 从 snapshot 获取),用 type 写入标题。

6. 填写描述

找到 contenteditable div(在标题下方),用 JS 设置 textContent 并 dispatch input/change 事件:

const editables = document.querySelectorAll('[contenteditable="true"]');
for (const el of editables) {
  const rect = el.getBoundingClientRect();
  if (rect.top > 200 && rect.top \x3C 400 && rect.height > 30) {
    el.textContent = '描述内容';
    el.dispatchEvent(new Event('input', {bubbles: true}));
    el.dispatchEvent(new Event('change', {bubbles: true}));
    break;
  }
}

7. 发布

找到"发布"按钮,click。

8. 验证

等待 5 秒,截图确认跳转到"作品管理"页面且状态为"已发布"。

故障处理

  • 上传框未找到 → 导航到 https://creator.douyin.com/creator-micro/content/post/video
  • 登录过期 → 提示用户重新登录
  • 上传失败 → 重试一次

元数据模板

标题:{故事名} 琪琪睡前故事 描述:儿童成长故事,适合3-8岁小朋友 #儿童故事 #睡前故事 #亲子时光

How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install douyin-browser-publish
  3. After installation, invoke the skill by name or use /douyin-browser-publish
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
抖音视频浏览器自动化发布:元数据自动提取+完整浏览器操作指南+故障处理
Metadata
Slug douyin-browser-publish
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is Douyin Browser Publish?

抖音视频浏览器自动化发布。输入视频路径、标题、描述,自动完成上传发布。当用户说"发抖音"、"发布到抖音"时使用。 It is an AI Agent Skill for Claude Code / OpenClaw, with 17 downloads so far.

How do I install Douyin Browser Publish?

Run "/install douyin-browser-publish" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Douyin Browser Publish free?

Yes, Douyin Browser Publish is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Douyin Browser Publish support?

Douyin Browser Publish is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Douyin Browser Publish?

It is built and maintained by vincentlau2046-sudo (@vincentlau2046-sudo); the current version is v1.0.0.

💬 Comments