Cloudvideo
a startup but not simple agent demo using google adk.
npx -y skills add valkryhx/google_adk_agent --skill cloudvideoAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 7 stars7 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
移动会议 (CloudVideo) 智能助手 (V11.5 安全加固版),支持按需投送与单次剪切板抓取。**会议窗口不能最小化,否则投送失败!**
SKILL.md
2.8 KB, as published. Nobody here has run it
Execution Instructions
核心能力
此技能封装了 cloudvideo_ultimate_agent_v10.py 核心引擎。它以 “按需触发” 为最高安全准则,严禁在未经用户明确授权的情况下持久监听系统剪切板。
工具说明
send_meeting_message(message, ...)
前置条件检查:自动验证会议窗口状态,确保投送成功。
重要提醒:
- 🚫 会议窗口不能最小化 - 这是导致投送失败的最常见原因
- ✅ 窗口需要至少部分可见
- ✅ 窗口需要是激活状态(Foreground Window) 核心投送工具 (推荐使用)。
- 普通模式:传入具体的文字或代码内容进行投送。
- 单次抓取模式:传入
[CLIPBOARD],Agent 仅在调用瞬间读取一次系统剪切板并投送。此模式无后台监听风险,最安全。
start_auto_delivery_service()
自动驾驶模式 (高风险/手动触发)。
启动后台监听器 auto_driver.py。仅在需要高频自动化互动的特殊场景下,由用户显式指令开启。 使用完毕后应立即关闭监听窗口。
V11.5 意图分流逻辑 (仅在自动驾驶模式下生效)
- 【AI-Generate】:识别为提问 -> AI 生成回复并投送。
- 【Transparent-Forward】:识别为成品/代码 -> 原样透传投送。
- 【Filtered-Ignore】:识别为干扰/隐私 -> 静默拦截。
⚠️ 重要使用前提
🚨 窗口状态要求
- 会议窗口必须处于可见状态
- 不能最小化或隐藏
- 不能被其他窗口完全遮挡
❌ 常见失败原因
[X] 会议窗口最小化 → 投送失败
[ ] 会议窗口最大化 → 正常
[ ] 会议窗口正常显示 → 正常
[ ] 会议窗口被部分遮挡 → 可能失败
🔍 自动检测机制
技能会自动检测窗口状态:
- ✅ 窗口可见 → 正常投送
- ❌ 窗口最小化 → 直接失败并提示
- ❌ 窗口不存在 → 提示启动会议应用
核心黑科技
- 并发安全 (UUID):支持多租户,Payload 绝对物理隔离。
- 全场景复位:鼠标坐标 + 窗口焦点(Foreground Window)双重秒级还原,投送对用户操作近乎无感。
- 极速注入:58% 黄金比例唤醒 +
{ENTER}~^{ENTER}双回车信号。 - 即时销毁:任务完成即物理删除临时文件,确保无信息残留。
安全准则 (Safety First)
- 严禁自启:禁止将监听器设为开机或脚本启动项。
- 隐私优先:推荐使用
send_meeting_message("[CLIPBOARD]")代替自动驾驶模式,以确保对剪切板访问的绝对控制。