ue-cli

Unreal Engine: Control the editor via Remote Control API.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "ue-cli" with this command: npx skills add banab4/ue-cli/banab4-ue-cli-ue-cli

ue-cli


CLI for controlling Unreal Engine Editor via Remote Control API (HTTP :30010).

Prerequisites

  • UE Editor running with Web Remote Control plugin enabled (HTTP :30010)
  • Python Editor Script Plugin enabled (for script commands)
  • ue-cli installed: npm install -g @banaba/ue-cli

Workflow (IMPORTANT — MUST follow this order)

NEVER skip to raw API calls. Always resolve through scripts or discovery first.

Step 1. Check scripts

ue-cli script --list

Scan the output for a script that covers your task. Scripts run inside UE Python and bypass Remote Control API serialization limits — always preferred.

Step 2. Use script if matched

ue-cli call <scriptName> --params '{...}' --force

ue-cli call auto-detects: if the first argument matches a script name, it runs as a Python script. No objectPath needed.

# Example — script mode (1 arg)
ue-cli call asset_open --params '{"asset_path":"/Game/SM/BP_Top"}' --force

Step 3. Discover (fallback)

If no script matches, search the discovery catalog:

ue-cli discover                              # browse all objects/functions
ue-cli discover <keyword>                    # search by keyword
ue-cli discover --object <keyword>           # filter by class name
ue-cli discover --detail <objectPath>        # show function signatures

Then call the discovered function:

ue-cli call <objectPath> <functionName> --params '{...}' --force

Step 4. Raw API (last resort)

Only when discovery also fails to find what you need:

CommandDescription
ue-cli call <objectPath> <functionName> [--params '{}']Call a function
ue-cli get <objectPath> <propertyName>Read a property
ue-cli set <objectPath> <propertyName> --value '{}'Write a property
ue-cli describe <objectPath>Inspect full object schema (online)
ue-cli search --query '{}'Search assets (online)
ue-cli infoList all API routes (online)
ue-cli batch --requests '[...]'Execute multiple requests

Global flags

FlagDescription
--host <url>UE host (default: http://localhost:30010)
--dry-runPreview request without sending
--forceSkip confirmation (always use this flag)
--timeout <ms>HTTP timeout (default: 5000)
--verbosePrint request/response headers
--transactionGenerate undo transaction (call, set)

Git Bash

On Git Bash (MSYS), /Script/... paths get converted. Always prefix with:

MSYS_NO_PATHCONV=1 ue-cli call ...

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Coding

openclaw-version-monitor

监控 OpenClaw GitHub 版本更新,获取最新版本发布说明,翻译成中文, 并推送到 Telegram 和 Feishu。用于:(1) 定时检查版本更新 (2) 推送版本更新通知 (3) 生成中文版发布说明

Archived SourceRecently Updated
Coding

ask-claude

Delegate a task to Claude Code CLI and immediately report the result back in chat. Supports persistent sessions with full context memory. Safe execution: no data exfiltration, no external calls, file operations confined to workspace. Use when the user asks to run Claude, delegate a coding task, continue a previous Claude session, or any task benefiting from Claude Code's tools (file editing, code analysis, bash, etc.).

Archived SourceRecently Updated
Coding

ai-dating

This skill enables dating and matchmaking workflows. Use it when a user asks to make friends, find a partner, run matchmaking, or provide dating preferences/profile updates. The skill should execute `dating-cli` commands to complete profile setup, task creation/update, match checking, contact reveal, and review.

Archived SourceRecently Updated
Coding

clawhub-rate-limited-publisher

Queue and publish local skills to ClawHub with a strict 5-per-hour cap using the local clawhub CLI and host scheduler.

Archived SourceRecently Updated