skill-kuaishou-upload

skill-kuaishou-upload is a skill for Claude Code, Codex from ZJU-REAL/Easel. It costs 74 tokens per session (1,354 once invoked), scanned A, original, Apache-2.0.

A browser-based workflow for uploading vertical videos to Kuaishou’s creator center. Kuaishou is a Chinese short-video platform; the workflow uses a real logged-in browser session to prepare and publish a video with a title and tags.

In plain words
What is it for?
It helps log in, check publishing access, preview video details, and publish a vertical video with a title and hashtags to Kuaishou.
Why use it?
It removes repetitive manual uploading and provides a preview step for checking the planned publication. Publishing still depends on a valid Kuaishou login and the platform’s current page controls.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Needs its repository: it reads a path above its own folder, which exists only inside the repository. The line is 基于通用浏览器发布框架 `../../shared/scripts/web_publisher.py`(`--platform kuaishou`)。.

Good fit It helps log in, check publishing access, preview video details, and publish a vertical video with a title and hashtags to Kuaishou.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/ZJU-REAL/Easel
agentmods
npx agentmods add skills/zju-real/easel/skill-kuaishou-upload

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for skill-kuaishou-upload

README.md
[![agentmods](https://agentmods.dev/badge/skills/zju-real/easel/skill-kuaishou-upload/github.svg)](https://agentmods.dev/skills/zju-real/easel/skill-kuaishou-upload)
Your own site
<a href="https://agentmods.dev/skills/zju-real/easel/skill-kuaishou-upload"><img src="https://agentmods.dev/badge/skills/zju-real/easel/skill-kuaishou-upload/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for skill-kuaishou-upload

Your own site · 80×15
<a href="https://agentmods.dev/skills/zju-real/easel/skill-kuaishou-upload"><img src="https://agentmods.dev/badge/skills/zju-real/easel/skill-kuaishou-upload.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 74 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,354 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00074 $0.01354
Opus 5 $0.00037 $0.00677
Sonnet 5 $0.00015 $0.00271
Haiku 4.5 $0.00007 $0.00135

Measured 8d ago against content hash 9ee2372a34da, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

skill-kuaishou-upload scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/openclaw/skill-kuaishou-upload/SKILL.md · 77 lines

How it starts

The opening of the file, as written. The whole thing — 77 lines — stays where its author put it; the contents beside it link to each section on GitHub.

快手视频发布

基于通用浏览器发布框架 ../../shared/scripts/web_publisher.py--platform kuaishou)。 网页自动化发布——需真实浏览器 + 已登录快手创作者中心。

⚠️ 环境依赖(同 skill-xhs-publisher 定位)

  • pip install playwright + playwright install chromium
  • 首次 login 扫码/登录快手创作者中心,登录态持久化到 ~/.easel-browser-profiles/KuaishouProfile 后复用
    • 远程/headless 环境用 login-qr --platform kuaishou(抠二维码成图轮询),或走 Web「账号」页扫码
  • 选择器时效:快手网页改版频繁,内置选择器为最佳努力,首次发布务必先 plan 预览 + --headed 目视校验,失效时更新 web_publisher.py 中 kuaishou 配置。

无浏览器环境可用 platforms / plan / check

执行

脚本:../../shared/scripts/web_publisher.py(各子命令 -h)。

python <ROOT>/skills/shared/scripts/web_publisher.py check
python <ROOT>/skills/shared/scripts/web_publisher.py login   --platform kuaishou
python <ROOT>/skills/shared/scripts/web_publisher.py plan    --platform kuaishou \
  --media out.mp4 --title "标题" --tags "#恐怖故事 #都市怪谈 #灵异事件"
# 有头执行,便于首次核对选择器:
python <ROOT>/skills/shared/scripts/web_publisher.py publish --platform kuaishou \
  --media out.mp4 --title "标题" --tags "#话题1 #话题2 #话题3 #话题4" --exec --headed

登录态:确认「真能发」而不只是「已登录」

快手创作者中心的「外壳」登录态比发布/上传子系统的授权活得久——外壳显示已登录、昵称头像都在,却可能已经发不出去(上传 token 过期)。为此 whoami 已内置发布子系统鉴权探针(login_probe),真校验能否发布而不只看页面外壳,账号页据此自愈假阳性。

  • 仍出现「显示已登录、发布却失败」= 发布态过期:去 Web「账号」页重新扫码,或清空 ~/.easel-browser-profiles/KuaishouProfile 后重跑 login-qr
  • 快手发布 token 偏短命,需要比别的平台更勤地重新扫码,属正常现象。

Profile 感知

  • 有 Profile:标题/话题贴合 style.md 与快手生态(生活化、接地气);竖版 9:16。
  • 无 Profile:按快手通用规范(竖版、话题#、口语化描述)。

规则(含 2026-08 真机校准)

  1. 快手以竖版 9:16 为主,横版素材先用 video-reframe 转竖版;发布走视频流程,只收视频。
  2. 话题标签最多 4 个:超过报「话题标签数量超过上限:4」,--tags 控制在 4 个以内。
  3. 发布前先 plan 预览、--headed 目视确认;确认无误再无头批量。
  4. 发布按钮靠 JS 派发点击(脚本已用 js_click):底部提交按钮 class 带哈希后缀(如 _button-primary_xxx)、每次改版都变,纯 CSS :has-text('发布') 在 headless 下命中不稳; 脚本改为定位「可见 + innerText=='发布' + class 含 button-primary」的元素派发点击。 注意别误点右上角下拉菜单里的「发布作品」(那不是提交按钮)。
  5. 成功判定:点击后 URL 离开 publish/video(跳内容管理页)即视为成功 (publish_success: url_not_contains publish/video);视频初始「审核中」,稍后过审公开。
  6. 选择器/流程失效不要硬跑——先看截图定位阶段,再更新配置或提示用户平台已改版。
  7. 登录态与 Cookie 属敏感信息,妥善保存、不外泄。

Read the full file on GitHub · 77 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 77 lines · 74 tokens per session scan A 9ee2372a34da

Subscribe to this mod's changes

skill-kuaishou-upload is a skill published in the GitHub repository ZJU-REAL/Easel (794 stars, last pushed yesterday), licensed Apache-2.0. It adds 74 tokens to every session and 1,354 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.