Token导航 LogoToken导航TokenDH.com
待分类敏感数据unknown未标认证来源可访问许可证需确认审计未展示

meeting-prep会议准备

Agent Skill

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

总安装

291

周安装

12

下载量

95
Local Agent

安装说明

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

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。当前暂无明确安装命令,请以来源页面说明为准。

简介

meeting-prep 用于补充待分类相关能力,适合在 Local Agent 中处理会议前的准备工作。

  • 它可能涉及议程制定、资料整理或背景调研,具体功能需结合 README 进一步确认。
  • 使用时需提供会议主题和预期目标,Agent 可调用相关模块提供支持。
  • 安装前请确认是否依赖知识库或外部数据源,确保信息完整性。
  • 注意检查结果的相关性,避免生成与会议无关的内容。

SKILL.md

Meeting Prep

Automated meeting preparation and daily commit summaries for development teams.

Capabilities

  1. Meeting Prep — Check Google Calendar for upcoming meetings with video links, notify user, generate commit-based updates
  2. Daily Summary — End-of-day summary of all commits across all developers

Setup Requirements

Google Calendar OAuth

Create OAuth credentials in Google Cloud Console:

  1. Enable Google Calendar API
  2. Create OAuth 2.0 Desktop credentials
  3. Store client_secret.json in credentials/
  4. Authorize with scopes: https://www.googleapis.com/auth/calendar
  5. Store tokens in credentials/calendar_tokens.json

For multiple accounts, store separate token files per account.

GitHub Token

Create a classic Personal Access Token with repo scope. Store at credentials/github_token.

Workflows

Meeting Prep Check

Trigger: Cron every 15 minutes or heartbeat.

  1. Query configured calendars for events in next 45 minutes
  2. Filter for events with Google Meet links (hangoutLink or conferenceData)
  3. If meeting 30-45 min away and not yet notified:

- Ask user: "Meeting [title] in X min. When was your last update? Which repos should I check?" - Track in state file to avoid duplicates

  1. If meeting 10-20 min away:

- Generate update from commits - Send formatted update

Daily Commit Summary

Trigger: Cron at end of day.

  1. Fetch all commits from configured repos for current day
  2. Include all developers
  3. Group by repo and subdirectory
  4. Format with author names
  5. Send summary

API Reference

Check Calendar

NOW=$(date -u +%Y-%m-%dT%H:%M:%SZ)
LATER=$(date -u -d "+45 minutes" +%Y-%m-%dT%H:%M:%SZ)
TOKEN=$(jq -r '.access_token' credentials/calendar_tokens.json)

curl -s "https://www.googleapis.com/calendar/v3/calendars/primary/events?timeMin=$NOW&timeMax=$LATER&singleEvents=true" \
  -H "Authorization: Bearer $TOKEN" | \
  jq '[.items[] | select(.hangoutLink != null or .conferenceData != null)]'

Refresh Token

CLIENT_ID=$(jq -r '.installed.client_id' credentials/client_secret.json)
CLIENT_SECRET=$(jq -r '.installed.client_secret' credentials/client_secret.json)
REFRESH_TOKEN=$(jq -r '.refresh_token' credentials/calendar_tokens.json)

curl -s -X POST https://oauth2.googleapis.com/token \
  -d "client_id=$CLIENT_ID" \
  -d "client_secret=$CLIENT_SECRET" \
  -d "refresh_token=$REFRESH_TOKEN" \
  -d "grant_type=refresh_token"

Fetch Commits

TOKEN=$(cat credentials/github_token)
SINCE=$(date -u -d "-7 days" +%Y-%m-%dT%H:%M:%SZ)

# List org repos
curl -s -H "Authorization: Bearer $TOKEN" \
  "https://api.github.com/orgs/ORG_NAME/repos?per_page=50&sort=pushed"

# Get commits
curl -s -H "Authorization: Bearer $TOKEN" \
  "https://api.github.com/repos/ORG/REPO/commits?since=$SINCE&per_page=30"

Output Format

Plain text, no markdown, no emojis:

Update - [DATE]

[repo-name]

[subdirectory]
• Verbose description of change (Author)
• Another change (Author)

Today
• [user input]

Blockers
• None

Discussion
• None

Formatting Rules

• Group by repo, then subdirectory
• Summarize commits into meaningful descriptions
• Include author names
• Plain text only for easy copy-paste
State Management

Track state in data/meeting-prep-state.json:

{
  "notified": {},
  "config": {
    "repoFilter": "org-name/*"
  }
}

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

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

平台分布

Local Agent

83.58%
按下载量换算79

安全审计

暂无安全审计结果可展示。

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills