Skill flagged — suspicious patterns detected

ClawHub Security flagged this skill as suspicious. Review the scan results before using.

Byt Workflow

v1.0.4

YouTube video translation workflow, download audio, launch Doubao, play audio, capture translation

1· 379·1 current·2 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for banner90/byt-workflow.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Byt Workflow" (banner90/byt-workflow) from ClawHub.
Skill page: https://clawhub.ai/banner90/byt-workflow
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Canonical install target

openclaw skills install banner90/byt-workflow

ClawHub CLI

Package manager switcher

npx clawhub@latest install byt-workflow
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Suspicious
medium confidence
!
Purpose & Capability
Name/description match the workflow in SKILL.md, but the skill references a local script and absolute Windows paths (/mnt/h/...) and other skills (youtube-audio-download, doubao-launch, audio-play, doubao-capture) that are not included or declared. Required runtime pieces (WSL, python.exe, Doubao, visible Windows desktop) are implicit but not declared. The skill therefore assumes access to local resources beyond what's packaged.
!
Instruction Scope
Runtime instructions tell the agent to execute a Windows Python script via WSL and to perform GUI automation (Doubao) and read/write files on H: (e.g., H:/works/...). The skill explicitly relies on local filesystem and GUI automation; because no local scripts are provided, the agent would try to invoke files on the host filesystem, creating risk of executing unexpected code or reading unrelated files.
Install Mechanism
No install spec and no bundled code files are included, which reduces remote install risk. However, absence of packaged code combined with references to an absolute local entry path means the skill depends on host-side artifacts rather than installing its own components.
Credentials
The skill requests no environment variables or credentials, which is consistent with a purely local GUI/file workflow. Still, it implicitly requires tools (WSL, python.exe, Doubao app, audio playback) and access to H: drive files; these environmental requirements are not declared and may grant broad filesystem and GUI access.
Persistence & Privilege
always is false and there is no indication the skill requests persistent or elevated platform privileges. It does, however, expect to run local executables and GUI automation during invocation.
What to consider before installing
This skill is an instruction-only workflow that expects local scripts and apps on your Windows machine (WSL + python.exe + Doubao + audio player) and references absolute paths on the H: drive. Before installing or running: 1) verify the referenced workflow.py and any other scripts actually exist on the host and inspect their contents (the package does not include them); 2) confirm you trust the source—running this skill will execute local programs and control the GUI, which can read/write files and perform automation; 3) ensure the required tools (WSL, Python, Doubao) are installed deliberately and only grant access to directories you are comfortable exposing; 4) be cautious if you don't want the agent to access your H: drive or control the desktop—do not run this skill until you can review the local scripts it will execute. If you want higher assurance, request a version that includes the workflow script or a clear manifest of external dependencies and their locations.

Like a lobster shell, security has layers — review code before you run it.

latestvk97dgbx82aamtk2svv57bkmagx82h940
379downloads
1stars
5versions
Updated 6h ago
v1.0.4
MIT-0

Byt Workflow

Usage

python workflow.py <youtube_url> [mode]

Parameters

  • url (required): YouTube video URL
  • mode (optional): Translation mode (dual, single, chinese, bilingual), default: "dual"

Workflow Steps

  1. Download YouTube audio - Uses youtube-audio-download skill
  2. Launch Doubao - Uses doubao-launch skill
  3. Play audio - Uses audio-play skill
  4. Capture translation - Uses doubao-capture skill

Returns

{
  "success": true,
  "audio_path": "H:/works/audio/video_title-xxxxx.mp3",
  "translation_path": "H:/works/translations/doubao_20240307_143022.txt",
  "duration": 1200
}

Tools

youtube_translate

Complete YouTube video translation workflow

Workflow Integration

This skill is part of the YouTube translation workflow:

  1. youtube-audio-download: Download audio from YouTube
  2. doubao-launch: Launch Doubao translation window
  3. audio-play: Play the downloaded audio
  4. doubao-capture: Capture translated subtitles

Execution

All skills execute on Windows Python via WSL cross-platform call:

wsl -> python.exe scripts/workflow.py ...

Error Handling

All skills return JSON with success field:

  • success: true - Operation completed
  • success: false - Check error_code and error_message

Notes

  • Windows GUI automation requires visible desktop (no RDP disconnect)
  • Output files are stored in Windows works/ directory
  • WSL accesses Windows files via /mnt/h/...

Comments

Loading comments...