llt-generate

Generate LLT scaffolds and test stubs for Unreal Engine modules.

Updated Aug 23, 2026
One-click install
npx skills add https://github.com/ai-sand-castles/local-marketplace --skill llt-generate
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: llt-generate
Source: https://github.com/ai-sand-castles/local-marketplace/tree/main/test-automation-plugin/skills/llt-generate
Command: npx skills add https://github.com/ai-sand-castles/local-marketplace --skill llt-generate

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires clang, and includes scripts (resource) and references (resource) components.

What problem does it solve?

Automates LowLevelTest scaffold generation for Unreal Engine modules by applying evidence-based template patterns to automate test creation, reducing repetitive work and accelerating CI.

Core Features & Use Cases

  • Pattern-driven template selection based on source analysis (basic, async, plugin-lifecycle, mock)
  • Supports scaffold mode, interactive mode, and autonomous mode with optional build/run integration
  • Works with clang-based AST extraction and regex fallback for robust method detection

Quick Start

Run /llt-generate --module CommChannelsRuntime --scaffold to generate the initial test module scaffold.

Frequently Asked Questions about llt-generate

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I generate Unreal Engine LowLevelTest scaffolds automatically?

To generate Unreal Engine LowLevelTest scaffolds automatically, use a tool that analyzes source modules and creates test stubs. This Skill applies evidence-based templates like basic, async, and mock to match your code patterns and output ready-to-use test structures.

What is the best way to automate test stub creation for Unreal Engine modules?

Automating test stub creation for Unreal Engine modules is best handled by applying template patterns to source code analysis. This Skill uses clang-based AST extraction with a regex fallback to robustly detect methods and generate matching LLT scaffolds.

Do I need clang to parse Unreal Engine source files for test generation?

You need clang for robust AST extraction when parsing Unreal Engine source files for test generation. However, if clang is unavailable, this Skill automatically falls back to a regex-based parsing mechanism to detect methods and generate scaffolds.

Can I run builds and tests autonomously after generating Unreal Engine test scaffolds?

You can run builds and tests autonomously after generating Unreal Engine test scaffolds by using the autonomous execution mode. This mode includes optional build and run integration to compile and execute your newly created LowLevelTest stubs.

What template patterns are available for Unreal Engine LowLevelTest generation?

Available template patterns for Unreal Engine LowLevelTest generation include basic, async, plugin-lifecycle, and mock. The Skill selects the appropriate template automatically by analyzing your source code evidence during the scaffold generation process.

Why does my test scaffold generation fail to detect methods in Unreal Engine modules?

Test scaffold generation fails to detect methods in Unreal Engine modules when clang parsing encounters issues. The Skill mitigates this by applying a regex fallback for method extraction, ensuring robust scaffolding even if the primary AST analysis fails.