Token导航 LogoToken导航TokenDH.com
效率敏感数据clawhub未标认证来源可访问clear审计提醒

group-director集团董事

Agent Skill

group-director 用于辅助视频、动画、脚本化剪辑和多媒体生成流程,适合在 OpenClaw 中需要整理视频素材、生成脚本或维护合成项目时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

6,421

周安装

273

GitHub Stars

公开资料未说明

下载量

2,250
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:group-director(集团董事)
来源仓库:https://github.com/hei-maom/group-director
安装命令:
openclaw skills install group-director
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install group-director

简介

基于飞书群聊上下文生成短视频脚本与制作提示。

  • 适用于会议记录转视频、知识分享等内容生产场景。
  • 通过OpenClaw安装,需提前在内存中加载聊天上下文。
  • 输出仅为创意草稿,实际拍摄剪辑需配合多媒体工具完成。
  • 版权归属需遵循飞书平台相关规定与用户协议。group-director 属于效率类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
group-director
description
create short videos from claw-prepared prompts for feishu or lark group chat scenarios. use when claw already has the chat context in its own memory, has already summarized the discussion, and already has the final video prompt. this skill should not ask follow-up questions in normal group-director use, should not read chat history itself, and should call the senseaudio video api in two steps: create first, then poll by python every 30 seconds until completion. keep the model fixed to seedance-pro-1.5 with generate_audio=true. when returning to feishu, never send raw json; send a normal message and the final video url only.

group-director

Use this skill only as a video execution layer for Feishu/Lark group-chat video generation.

Hard rules

  • Assume Claw already has enough context from its own memory and recent reading.
  • Do not ask extra questions in normal group-director use.
  • Do not ask the user to repeat or recap the group chat.
  • Do not read Feishu/Lark history inside this skill.
  • Do not summarize group chat inside this skill.
  • Treat final_video_prompt as already finalized by Claw.
  • Use exactly two steps:

1. create the task 2. poll by Python every 30 seconds until it finishes

  • Keep the model fixed to Seedance-Pro-1.5.
  • Always set provider_specific.generate_audio=true.
  • Never send raw JSON back to Feishu.
  • When the task finishes successfully, send only a normal natural-language message plus the final video_url.
  • Do not send debug objects, raw provider payloads, or JSON-looking blocks to Feishu.

What Claw is responsible for

Claw is responsible for:

  • reading the group context
  • using its own memory and recent context
  • summarizing the discussion when needed
  • turning that into the final video prompt
  • calling this skill
  • sending the final natural-language message back to Feishu/Lark

What this skill is responsible for

This skill is responsible only for:

  • creating the video task
  • polling status until completion, failure, or timeout
  • returning the final video URL or a plain-text failure message

Fixed defaults

  • model: Seedance-Pro-1.5
  • duration: 12
  • resolution: 720p
  • allowed orientation: portrait or landscape
  • poll interval: 30 seconds
  • timeout: 600 seconds
  • audio generation: always enabled

Do not expose square mode. Do not let the model vary. Do not omit generate_audio.

Input expected from Claw

Required:

  • final_video_prompt

Optional:

  • orientation

If orientation is missing, default to portrait. If orientation is present, it must be portrait or landscape.

Calling pattern

Step 1: create task

python3 scripts/main.py video-create \
  --final-video-prompt "这里放 Claw 已整理好的最终视频提示词" \
  --orientation portrait

This returns only the task_id as plain text.

Step 2: poll by Python until done

python3 scripts/main.py video-poll --task-id "task_xxx"

This polls every 30 seconds until one of these happens:

  • completed -> prints only the final video_url
  • failed -> prints a plain-text failure message
  • timeout -> prints a plain-text timeout message

Feishu return rule

When Claw sends the result back to Feishu/Lark:

  • use a normal message
  • include the final video_url
  • do not include raw JSON
  • do not include provider payloads
  • do not paste structured blobs

Good style:

视频生成好了:
https://...

Bad style:

{"status":"completed","task_id":"...","video_url":"https://..."}

Environment variable

Only this variable is required:

export SENSEAUDIO_API_KEY="your_key"

Optional:

export SENSEAUDIO_BASE_URL="https://api.senseaudio.cn"

Resource layout

  • scripts/main.py: CLI entrypoint with plain-text outputs
  • scripts/video_api.py: provider wrapper for create, status, and polling
  • references/provider_notes.md: fixed model and parameter notes
  • references/integration_cn.md: Chinese integration rules for Claw

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

81.37%
按下载量换算1,831

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills