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

trio-stream-vision三重奏流视觉

Agent Skill

trio-stream-vision 用于处理图像、截图、视觉识别或图片素材相关工作,适合在 OpenClaw 中需要让 Agent 分析图片、整理视觉素材或辅助图像流程时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

7,393

周安装

302

GitHub Stars

公开资料未说明

下载量

2,392
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:trio-stream-vision(三重奏流视觉)
来源仓库:https://github.com/drandrewlaw/trio-stream-vision
安装命令:
openclaw skills install trio-stream-vision
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install trio-stream-vision

简介

用于处理图像、截图和视觉识别相关任务,支持分析实时视频流。

  • 适合在 OpenClaw 中需要让 Agent 分析图片、监控画面或处理视觉素材时使用。
  • 支持对 YouTube 直播或 RTSP 摄像头源进行自然语言查询和事件检测。
  • 安装前建议核实权限、维护状态及是否触发图像分析或外部服务调用。
  • trio-stream-vision 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
trio-stream-vision
description
Analyze any YouTube livestream or RTSP camera feed using natural language — ask what's happening, detect specific events, or get periodic summaries. Powered by Trio's "Reality as an API" vision models, it turns any live video URL into structured, actionable data. Just paste a stream URL and describe what you're looking for.
homepage
https://docs.machinefi.com/api-reference/
license
Apache-2.0
metadata
{"openclaw":{"emoji":"📹","requires":{"env":["TRIO_API_KEY"],"anyBins":["curl","python3"]},"primaryEnv":"TRIO_API_KEY"}}

Trio Stream Vision — Analyze Any Livestream with Natural Language

Paste a YouTube Live URL, RTSP camera feed, or HLS stream — ask questions about what's happening in plain English. Detect events, monitor conditions, and get periodic summaries, all without writing ML pipelines. Powered by Trio's Reality-as-an-API.

When to Use

  • User asks what's happening on a camera, stream, or video feed ("is anyone at my front door?")
  • User wants smart alerts for specific events ("tell me when a package is delivered", "alert me if my dog gets on the couch")
  • User wants to monitor something they can't watch themselves (construction site, parking spot, warehouse)
  • User wants periodic summaries of a live feed ("summarize this stream every 10 minutes")
  • User provides any live stream URL: YouTube Live, Twitch, RTSP/RTSPS cameras, HLS streams

Prerequisites

  • A Trio API key. Get one free (100 credits) at https://console.machinefi.com
  • Set the key: export TRIO_API_KEY=your_key_here
  • Base URL: https://trio.machinefi.com/api

Available Actions

1. Check Once (Quick Snapshot)

Ask a yes/no question about what's currently visible on a stream. Costs 1 credit ($0.01).

curl -s -X POST "https://trio.machinefi.com/api/check-once" \
  -H "Authorization: Bearer $TRIO_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "stream_url": "STREAM_URL_HERE",
    "condition": "NATURAL_LANGUAGE_CONDITION_HERE"
  }' | python3 -m json.tool

Optional parameters:

  • "include_frame": true — returns the analyzed frame as base64 image
  • "input_mode": "clip" — analyze a short video clip instead of a single frame (better for motion detection)
  • "clip_duration_seconds": 5 — clip length (1-10 seconds, only with clip/hybrid mode)

Response fields:

  • triggered (boolean) — whether the condition matched
  • explanation (string) — VLM's reasoning about what it sees
  • latency_ms — processing time in milliseconds

Input mode guidance:

  • Use "frames" (default) for static objects: "Is there a car in the driveway?", "Is the door open?"
  • Use "clip" for motion/actions: "Is someone walking?", "Did a package get delivered?"
  • Use "hybrid" for maximum accuracy (costs more)

2. Live Monitor (Continuous Event Detection)

Monitor a stream continuously and get alerted when a condition becomes true. Costs 2 credits/min ($0.02/min).

curl -s -X POST "https://trio.machinefi.com/api/live-monitor" \
  -H "Authorization: Bearer $TRIO_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "stream_url": "STREAM_URL_HERE",
    "condition": "NATURAL_LANGUAGE_CONDITION_HERE",
    "interval_seconds": 10,
    "monitor_duration_seconds": 600,
    "max_triggers": 1
  }' | python3 -m json.tool

Optional parameters:

  • "webhook_url": "https://your-server.com/webhook" — receive HTTP POST notifications on trigger
  • "interval_seconds": 10 — check frequency (5-300 seconds)
  • "monitor_duration_seconds": 600 — how long to monitor (min 5 seconds)
  • "trigger_cooldown_seconds": 60 — minimum seconds between triggers
  • "max_triggers": null — set to null for unlimited triggers
  • "input_mode": "clip" — default for live-monitor, good for motion

Response: Returns a job_id. Use it to check status or cancel.

Delivery modes (automatic based on request):

  • If webhook_url is set → events POST to your webhook
  • If Accept: text/event-stream header is set (no webhook) → SSE stream
  • Otherwise → poll with GET /jobs/{job_id}

3. Live Digest (Periodic Summaries)

Get narrative summaries of what's happening on a stream at regular intervals. Costs 2 credits/min ($0.02/min).

curl -s -X POST "https://trio.machinefi.com/api/live-digest" \
  -H "Authorization: Bearer $TRIO_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "stream_url": "STREAM_URL_HERE",
    "window_minutes": 10,
    "capture_interval_seconds": 60
  }' | python3 -m json.tool

Optional parameters:

  • "window_minutes": 10 — summary window length (1-60 minutes)
  • "capture_interval_seconds": 60 — frame capture frequency (10-300 seconds)
  • "webhook_url": "https://..." — receive summaries via webhook
  • "max_windows": 3 — number of summary windows before stopping
  • "include_frames": true — embed frames in summaries

Response: Returns a job_id.

4. Check Job Status

curl -s "https://trio.machinefi.com/api/jobs/JOB_ID_HERE" \
  -H "Authorization: Bearer $TRIO_API_KEY" | python3 -m json.tool

Job statuses: pending, running, stopped, completed, failed

5. List All Jobs

curl -s "https://trio.machinefi.com/api/jobs?limit=20&offset=0" \
  -H "Authorization: Bearer $TRIO_API_KEY" | python3 -m json.tool

Optional query params: status=running, type=live-monitor, limit=20, offset=0

6. Cancel a Job

curl -s -X DELETE "https://trio.machinefi.com/api/jobs/JOB_ID_HERE" \
  -H "Authorization: Bearer $TRIO_API_KEY" | python3 -m json.tool

Recommended Workflows

Quick Check Workflow

  1. Run check-once with the user's question and stream URL
  2. Report the triggered result and explanation to the user
  3. If the API returns an error about the stream, show the error and remediation

Monitoring Workflow

  1. Test the condition with check-once first to verify it works
  2. If the condition works, start live-monitor with appropriate settings
  3. Return the job_id and inform user how to check status or cancel
  4. If webhook_url is available, set it up for push notifications

Summary Workflow

  1. Start live-digest with the stream URL and appropriate window/interval
  2. Return the job_id so the user can check results later

Condition Writing Tips

  • Frame as binary yes/no questions: "Is there a person visible in the frame?"
  • Be specific: "Is there smoke rising from the building roof?" not "Is there smoke?"
  • One intent per condition — don't combine multiple checks
  • Use positive phrasing: "Are vehicles visible?" not "Is the parking lot not empty?"
  • Always test conditions with check-once before starting live-monitor

Error Handling

All errors return this structure:

{
  "error": {
    "code": "ERROR_CODE",
    "message": "Human-readable description",
    "remediation": "Actionable fix suggestion"
  }
}

Common error codes:

  • NOT_LIVESTREAM — URL is not a live stream. Confirm it's actively broadcasting.
  • STREAM_FETCH_FAILED — Cannot reach the stream. Check URL and network.
  • STREAM_OFFLINE — Stream exists but is offline. Wait for it to go live.
  • MAX_JOBS_REACHED — Too many concurrent jobs. Cancel old ones with DELETE /jobs/{id}.

If you get an error, always show the remediation field to the user — it contains actionable guidance.

Pricing Reference

ActionCost
Check once$0.01 / request
Live monitor$0.02 / minute
Live digest$0.02 / minute

Free tier: 100 credits ($1.00) on signup at https://console.machinefi.com

Rules

  • NEVER expose or log the $TRIO_API_KEY value in output shown to the user.
  • ALWAYS show the explanation field from check-once responses — it provides the VLM's reasoning.
  • ALWAYS test conditions with check-once before starting a live-monitor job.
  • When a user provides a stream URL, auto-detect whether they want a quick check, monitoring, or digest based on their intent.
  • For monitoring jobs, always return the job_id so the user can check status or cancel later.
  • If the API returns an error, show the error code and remediation to the user.
  • Inform users about credit costs before starting live-monitor or live-digest jobs (they charge per minute).

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

83.28%
按下载量换算1,992

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

可疑

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills