Token导航 LogoToken导航TokenDH.com
研究检索执行命令clawhub未标认证来源可访问clear审计通过

iaworkeriaworker 分析

Agent Skill

iaworker 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,616

周安装

109

GitHub Stars

1

下载量

872
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install iaworker

简介

智能自动化工作人员 — 分析视频/图像流并为物理任务(调试、维修、组装等)生成结构化的实时操作步骤。

SKILL.md

name
iaworker
description
Intelligent Automation Worker — analyzes video/image streams and generates structured, real-time operating steps for physical tasks (debug, repair, assembly, inspection). Displays and speaks out step-by-step guidance using TTS. Use when: (1) User provides a video or image of a broken/damaged object (bike, car, appliance, etc.) and needs diagnosis and repair steps, (2) User wants guided step-by-step instructions for a physical task, (3) User wants real-time TTS spoken guidance alongside visual display, (4) User needs a structured workflow for analyzing physical problems and generating actionable steps.

iaworker — Intelligent Automation Worker

Analyze video/image streams, diagnose physical problems, and generate structured step-by-step operating guidance. Deliver instructions both visually (displayed markdown) and audibly (TTS spoken aloud).


Core Workflow

┌─────────────────────────────────────────────────────────────────────┐
│                        iaworker PROCESS                               │
├─────────────────────────────────────────────────────────────────────┤
│                                                                      │
│  [1] RECEIVE INPUT                                                   │
│      Video file path, image path, or live camera frame              │
│           ↓                                                          │
│  [2] ANALYZE (video_analyzer.py)                                     │
│      - Extract key frames                                             │
│      - Identify objects, damage, components                           │
│      - Detect anomaly patterns (cracks, loose parts, fluid leaks)   │
│      - Classify task type (repair / assembly / inspection / debug)   │
│           ↓                                                          │
│  [3] GENERATE STEPS (step_engine.py)                                 │
│      - Build ordered, numbered action steps                           │
│      - Include tool requirements, safety warnings                   │
│      - Flag prerequisite steps (disconnect power, etc.)             │
│      - Estimate difficulty/time for each step                       │
│           ↓                                                          │
│  [4] DELIVER (speaker.py + display)                                  │
│      - Display formatted markdown step guide                         │
│      - Speak each step aloud via TTS                                  │
│      - Step-by-step progression (not all at once)                    │
│      - Wait for user confirmation before advancing (configurable)    │
│                                                                      │
└─────────────────────────────────────────────────────────────────────┘

Quick Start

Analyze an image and get spoken steps

python scripts/video_analyzer.py \
  --input /path/to/image.jpg \
  --task repair \
  --lang en \
  --speak

Analyze a video and get per-segment steps

python scripts/video_analyzer.py \
  --input /path/to/video.mp4 \
  --task debug \
  --lang en \
  --speak \
  --step-by-step

Analyze from camera feed (live)

python scripts/video_analyzer.py \
  --input camera \
  --task inspection \
  --lang en \
  --speak \
  --live

Scripts

video_analyzer.py

Entry point. Analyzes visual input and triggers step generation.

python scripts/video_analyzer.py [options]

Options:

FlagDescriptionDefault
--input PATHImage path, video path, or camera for liveRequired
--task TYPErepair, debug, assembly, inspection, autoauto
--lang CODEen or zhen
--speakEnable TTS for step outputDisabled
--step-by-stepSpeak and display one step at a time, wait for confirmationSequential mode
--liveLive camera mode with continuous analysisOff
--output PATHWrite steps to markdown fileNone (console only)
--frame-skip NSkip every N frames in video (speed up analysis)10

Task auto-detection:

  • repair — Something is broken; find damage, suggest fixes
  • debug — Something isn't working; trace fault to cause
  • assembly — Something needs to be built/put together
  • inspection — Check condition, report findings

step_engine.py

Generates structured steps from analysis results.

from step_engine import StepEngine

engine = StepEngine(lang="en")
steps = engine.generate(
    task_type="repair",
    objects=["wheel", "chain", "brake caliper"],
    anomalies=["chain loose", "brake pad worn"],
    context={"bike_type": "mountain"}
)

for step in steps:
    print(step["number"], step["title"])
    print(step["description"])
    print(f"[Tools: {step['tools']}] [Time: {step['time_estimate']}]")
    if step["safety_warning"]:
        print(f"⚠️  {step['safety_warning']}")

Step object schema:

{
    "number": int,              # 1-based step number
    "title": str,               # Short action title
    "description": str,         # Detailed description
    "tools": list[str],         # Required tools
    "time_estimate": str,       # e.g. "5-10 min"
    "difficulty": str,          # "easy" | "medium" | "hard" | "expert"
    "safety_warning": str|null,# Warning text if any
    "prerequisite": bool,       # Must be done before others proceed
    "common_mistakes": list[str],# What to avoid
}

Difficulty classification:

LevelIndicator
easyNo special tools, minimal risk
mediumBasic tools, some disassembly
hardSpecialty tools, significant disassembly
expertProfessional tools, structural risk

speaker.py

Handles TTS output and markdown display.

from speaker import Speaker

speaker = Speaker(lang="en", tts_enabled=True)

speaker.display_and_speak("Step 1: Inspect the chain tensioner")
speaker.display_steps([...steps...])
speaker.speak_only("Make sure to wear safety glasses.")
speaker.wait_for_user("Press Enter when ready to continue")

Features:

  • gtts (Google TTS) — default, works out of the box
  • pyttsx3 — offline fallback
  • Markdown rendering in terminal with rich library
  • Per-step speak with configurable pacing
  • Confirmation gating between steps (for --step-by-step mode)

Step Generation Guidelines

Steps must follow this structure:

  1. Prerequisites — Things that must be done first (disconnect power, secure object, etc.)
  2. Assessment — Inspect and confirm the problem
  3. Preparation — Gather tools, clear workspace
  4. Main actions — Numbered, one clear action per step
  5. Verification — Test that the fix/assembly worked
  6. Cleanup — Put back together, tidy tools

Rules:

  • Each step = one action. If it has "and", it's two steps.
  • Always include a safety check step after anything involving power, hot parts, or fluids.
  • Difficulty and time estimate must be realistic.
  • Flag the most common mistakes for each step.

Configuration

Config file: scripts/config.yaml

tts:
  engine: "gtts"          # "gtts" or "pyttsx3"
  lang: "en"
  speed: 1.0              # 0.5 = slow, 2.0 = fast
  volume: 1.0             # 0.0 to 1.0

display:
  use_rich: true          # Pretty terminal output
  color: "cyan"           # Step highlight color
  show_icons: true        # Show ✅ ⚠️ 🔧 icons

analysis:
  default_task: "auto"
  frame_skip: 10
  confidence_threshold: 0.6

step_delivery:
  auto_speak: true
  wait_confirmation: false
  speak_difficulty: true
  speak_time_estimate: true

Task Reference

Bike Repair — Chain Adjustment

🔧 Tools: Hex keys (4mm, 5mm), chain tool, lubricant
⏱ Time: 15-25 min
⚠️ Safety: Flip bike first — chain tension releases can snap
  1. Flip bike, rest on seat and handlebars
  2. Inspect chain for stiff links, rust, kinks
  3. Loosen rear axle bolts (5mm hex)
  4. Adjust chain tension via horizontal dropouts
  5. Check tension: 10-15mm deflection at midpoint
  6. Re-tighten axle bolts
  7. Lubricate if needed, wipe excess
  8. Test ride

Car Debug — Engine Won't Start

🔧 Tools: OBD2 scanner, multimeter, basic socket set
⏱ Time: 20-40 min (diagnosis first)
⚠️ Safety: Disable ignition, disconnect battery negative first
  1. Check if fuel pump primes (turn key to ON, listen)
  2. Test battery voltage (>12.4V idle, >13.5V running)
  3. Connect OBD2 scanner, read fault codes
  4. Inspect spark plugs for gap/damage
  5. Check for crank/cam position sensor signals
  6. Verify immobilizer status
  7. Narrow to most likely cause, then address

Generic Assembly — IKEA-style

🔧 Tools: Hex key (included), Phillips screwdriver, hammer
⏱ Time: varies
⚠️ Safety: Enlist a second person for large panels
  1. Unpack and sort all hardware (count screws, dowels)
  2. Lay out all panels, identify front/back
  3. Pre-assemble sub-groups before final join
  4. Hand-tighten all screws first
  5. Use cardboard to protect floors
  6. Final torque pass after 24h

Troubleshooting

"No audio output"

  • Check if gtts is installed: pip install gtts
  • Fallback: engine: pyttsx3 in config (offline)
  • On headless servers: set DISPLAY env var or use pyttsx3

"Analysis is slow on video"

  • Increase --frame-skip (e.g., --frame-skip 30)
  • Use --input camera --live for real-time with throttled analysis

"Steps are too generic"

  • Provide more context in the initial prompt
  • Use --task repair explicitly if auto-detect fails
  • For specialized equipment, the LLM analysis quality depends on prompt specificity

"OpenCV camera not found"

  • Check camera index: python scripts/video_analyzer.py --input camera --list-devices
  • Try --input camera --camera-index 1 if default is wrong

Extending for Specific Domains

iaworker ships with general-purpose analysis. To add domain-specific knowledge:

  1. Create references/domains/MYDOMAIN.md with known failure modes and tool lists
  2. In step_engine.py, add a DOMAIN_HANDLERS map that loads these
  3. The step engine will then reference domain files when generating steps

Example domain file:

# Domain: electric_bike

## Common Failures
- Motor controller overheating → reduce load, check ventilation
- Battery BMS cutout → reset via unplugging 30s
- Torque sensor miscalibration → re-zero via display menu

## Safety
- Never open motor housing — high voltage capacitors retain charge
- Battery must be removed before any repair

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

79.6%
按下载量换算694

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 openclaw skills install iaworker 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills