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

meeting-agenda-tool会议议程工具

Agent Skill

meeting-agenda-tool 用于补充效率相关能力,适合在 OpenClaw 中需要让 Agent 承接效率相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,521

周安装

104

GitHub Stars

公开资料未说明

下载量

824
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install meeting-agenda-tool

简介

meeting-agenda-tool 根据会议信息自动生成结构化议程文档。

  • 支持输入标题、时间、地点与参与者,输出标准化格式便于分发与记录。
  • 适用于定期例会、项目启动或客户沟通,提升会议组织规范性。
  • 使用前请确认所有字段准确无误,避免因信息错误导致议程失效。
  • 生成的议程为初稿,建议人工调整顺序与优先级以适应实际讨论节奏。

SKILL.md

name
meeting-agenda
description
>

Meeting Agenda Generator

Purpose

Generate professional Chinese meeting agenda documents in Word (.docx) and PDF formats. Apply the standard font and layout conventions described in references/template.md.

Trigger Conditions

Use this skill when the user:

  • Provides meeting information (title, time, location, agenda, participants) and asks to generate an agenda
  • Mentions keywords like "会议议程"、"议程安排"、"生成议程"、"帮我做个会议议程"
  • Provides raw meeting details and asks for a formatted document output

Workflow

Step 1: Collect Meeting Information

Ask the user to provide (or extract from their message):

  • 会议名称 (Meeting title)
  • 环节列表 (Session list), for each session:

- 环节名称 (Session name) - 时间 (Time, e.g. "2026年4月2日(星期四)09:00-10:00") - 地点 (Location) - 内容 (Content description, optional for simple sessions) - 主持人 (Host, optional) - 议程 (Agenda items list, optional) - 参会人员 (Participants by organization, optional) - 单位名称 (Organization name) - 成员列表: 姓名 + 职务 + 补充说明(optional)

If any critical fields are missing, ask the user before proceeding. Use references/template.md for exact field names, structure, and JSON format.

Step 2: Build the JSON Data File

Construct a JSON file following the schema in references/template.md. Save it as a temporary file, e.g. agenda_input.json, in a working directory (suggest using the user's workspace or a temp folder).

Example minimal JSON:

{
  "title": "XXX合作座谈会议议程",
  "filename": "XXX合作座谈会议议程",
  "sections": [
    {
      "name": "产品演示",
      "time": "2026年4月2日(星期四)09:00-10:00",
      "location": "XX楼会议室",
      "content": "演示核心功能"
    }
  ]
}

Step 3: Run the Generation Script

Execute scripts/generate_agenda.py with the JSON data file:

python <skill_base_dir>/scripts/generate_agenda.py \
  --data <path_to_agenda_input.json> \
  --output <output_directory>
  • <skill_base_dir> is the absolute path to this skill directory

(typically ~/.workbuddy/skills/meeting-agenda)

  • <output_directory> is where the files will be saved

(use the user's workspace directory or a subdirectory they specify)

The script will:

  1. Auto-install python-docx and reportlab if not present
  2. Generate <filename>.docx (Word document)
  3. Generate <filename>.pdf (PDF document)

Step 4: Deliver Results

After generation:

  1. Confirm both files exist
  2. Report the file paths to the user
  3. Use deliver_attachments tool to attach both .docx and .pdf files

Font & Style Reference

Refer to references/template.md for the complete font specification:

  • Meeting title: FangSong GB2312 (仿宋_GB2312), 24pt (小一), bold, centered
  • Section headings (including 人员): Heiti (黑体), 16pt, bold, left-aligned; numbered with Chinese numerals (一、二、三…)
  • Field labels (时间/地点/内容/议程 etc.): Heiti (黑体), 16pt, bold
  • Body text (field values, agenda items): FangSong GB2312 (仿宋_GB2312), 16pt
  • Organization unit headers: Kaiti GB2312 (楷体_GB2312), 16pt, bold, preceded by two full-width spaces (  )
  • Member lines: FangSong GB2312, 16pt, NO leading dash; name and title separated by two full-width spaces (  )

人员排列规则:

  • 每个 section 如含 persons 字段,人员独立作为一个带序号的一级标题(如"三、人员"),序号接续前面环节编号

Error Handling

  • If PDF generation fails (missing fonts or reportlab issues), still deliver the Word file and explain the PDF issue
  • If the user's system lacks Chinese fonts, the Word file will still display correctly when opened in Word; the PDF may show fallback fonts
  • If python-docx install fails, ask the user to run pip install python-docx reportlab manually

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

82.21%
按下载量换算677

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills