
Ue5 Dev Tools
- 3 repo stars
- Updated January 19, 2026
- chengdagong/ue5-dev-tools
UE5 Development Tools
About
ue5-dev-tools is a Claude Code skill in the AI & Agent Building category. UE5 Development Tools
- ue5-dev-tools
- AI & Agent Building
- AI-coding skill
Ue5 Dev Tools by the numbers
- Data as of Jul 7, 2026 (Skillselion catalog sync)
/plugin marketplace add chengdagong/ue5-dev-tools/plugin install ue5-dev-tools@ue5-local-marketAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| repo stars | ★ 3 |
|---|---|
| Last updated | January 19, 2026 |
| Repository | chengdagong/ue5-dev-tools ↗ |
What it does
UE5 Development Tools
README.md
UE5 Dev Tools (Claude Plugin)
A Claude plugin to assist with Unreal Engine 5 Python development. Provides API validation, querying, and autocomplete support.
Features
- API Validation: Checks if UE5 API calls in Python scripts are correct, identifies deprecated APIs and parameter errors.
- Smart Mock: Automatically detects Python Stubs generated by UE5 projects on first run and converts them to runtime-usable Mock modules.
- Metadata Integration: Automatically scans UE5 source code (if available) and extracts C++ metadata to enhance validation accuracy.
- Anti-Hallucination: Strictly controls
/search-apioutput to prevent AI from fabricating non-existent APIs.
Installation
This plugin is designed as a local Claude Plugin.
Add Local Marketplace Run in the current directory (root of
ue5-dev-tools):claude plugin marketplace add .Install Plugin
claude plugin install ue5-dev-toolsInstall Git Hooks (Optional, for development) If you are a plugin developer, installing git hooks can automatically manage version numbers:
cd ue5-dev-tools ./scripts/install-hooks.shThis enables automatic version increment: automatically increments the
plugin.jsonversion by +0.0.1 with each commit.
Usage
Open Claude in your UE5 project directory and use the following commands:
/validate-script <file.py>: Validate the specified script. Automatically generates the Mock module on first run./search-api <query>: Search UE5 Python API definitions with fuzzy or exact matching.
Requirements
- Python 3.8+
- Claude Code
- (Optional) UE5 source code (for enhanced metadata analysis)
- (Optional)
Intermediate/PythonStub/unreal.pygenerated by UE5 project (for generating Mock)