Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add Bilal140202/the-lord-of-the-skills --skill iliamerkurev__ue5-cpp-ai-skillgit clone --depth 1 https://github.com/Bilal140202/the-lord-of-the-skillsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/bilal140202/the-lord-of-the-skills/iliamerkurev__ue5-cpp-ai-skill)<a href="https://agentmods.dev/skills/bilal140202/the-lord-of-the-skills/iliamerkurev__ue5-cpp-ai-skill"><img src="https://agentmods.dev/badge/skills/bilal140202/the-lord-of-the-skills/iliamerkurev__ue5-cpp-ai-skill/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/bilal140202/the-lord-of-the-skills/iliamerkurev__ue5-cpp-ai-skill"><img src="https://agentmods.dev/badge/skills/bilal140202/the-lord-of-the-skills/iliamerkurev__ue5-cpp-ai-skill.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00017 | $0.03797 |
| Opus 5 | $0.00009 | $0.01899 |
| Sonnet 5 | $0.00003 | $0.00759 |
| Haiku 4.5 | $0.00002 | $0.00380 |
Grade A, and why
unreal cpp developer scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
This is a copy
100% identical to unreal cpp developer — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.
How it starts
The opening of the file, as written. The whole thing — 479 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Unreal Engine 5 C++ Modern Development
This skill defines strict development standards for Unreal Engine 5 C++ code. The goal is to enforce high-quality, performant Unreal Engine code that follows official recommendations.
When to Use
Use this skill when:
- Writing C++ code for Unreal Engine 5.x
- Developing gameplay systems
- Writing Actors, Components, or Subsystems
- Exposing APIs to Blueprint
- Optimizing performance
- Building reusable engine systems
Do NOT use when:
- Working with Blueprint-only logic
- Writing non-Unreal code
- Working in other engines
Custom Project Rules
Before generating or modifying any code, you MUST first check for project-specific rules in custom_rules.md within this skill directory.
If custom_rules.md exists, its rules override and take priority over any rule in this file.
Class Templates
When asked to generate a NEW C++ class from scratch, you must use the provided templates as your starting point:
- Header Template:
templates/TemplateClass.h - Source Template:
templates/TemplateClass.cpp
Never invent a new class structure if templates are provided. Always start from the templates.
Substitute TEMPLATE_CLASS_NAME and YOURMODULE_API with the appropriate names.
Core Philosophy
C++ First Architecture
Core gameplay logic should be implemented in C++ whenever possible.
Blueprints should mainly be used for:
- configuration and asset references
- UI layout and animation (UMG)
- simple event wiring and visual effects
Avoid implementing complex state machines, heavy math, or core gameplay loops purely in Blueprints.
Modern Unreal Code Structure
Include What You Use (IWYU) & Headers
Always follow the IWYU principle to optimize compile times.
- Never include unnecessary headers.
- Use forward declarations for classes and structs in headers whenever possible.
#pragma once
#include "CoreMinimal.h"
#include "Components/ActorComponent.h"
#include "MyComponent.generated.h"
class UHealthComponent; // Forward Declaration
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 9d ago First seen · 479 lines · 17 tokens per session scan A f88980e49dd8
unreal cpp developer is a skill published in the GitHub repository Bilal140202/the-lord-of-the-skills (4 stars, last pushed 6d ago), licensed MIT. It adds 17 tokens to every session and 3,797 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to unreal cpp developer, differing in 0 lines, and is treated as a copy.
Other skills, from other repositories
unreal-cpp-gameplay
Write Unreal Engine 5 C++ gameplay code: the UCLASS/UPROPERTY/UFUNCTION reflection macros, the Gameplay Framework (GameMode, Pawn, Character, PlayerController, Actor components), and the module Build.cs. Use when writing or debugging UE C++, deriving from AActor/ACharacter/ AGameModeBase, exposing properties to the…
doca-argp
Use this skill for hands-on DOCA Arg Parser CLI work on a shipped sample or new DOCA-using app — adding / removing / renaming flags; wiring docaargpinit → register params → docaargpstart → docaargpdestroy in order; picking a parameter type from the full public enum (DOCAARGPTYPESTRING, INT, BOOLEAN, DEVICE, DEVICEREP…
cuopt-numerical-optimization-api
LP, MILP, and QP (beta) with cuOpt — Python, C, and CLI. Use when the user is solving LP, MILP, or QP with any cuOpt interface.
using-bgs-papyrus
Use when the user wants to compile Papyrus PSC to PEX, decompile PEX to PSC, detect Creation Kit Papyrus toolchains, or inspect Papyrus capabilities for Skyrim, Fallout 4, or Starfield. Triggers - "compile PSC", "decompile PEX", "PapyrusCompiler", "bgs-papyrus", "Starfield Guard syntax".
pygame-core
Structure a pygame (pygame-ce) game in Python: the init/event/update/draw loop, delta-time movement, Surface/Rect blitting, keyboard/mouse input, and Sprite/Group management with collision. Use when building or debugging a pygame game — when the user mentions pygame, pygame-ce, the game loop, blit, Surface, Rect…
godot-gdscript
Write idiomatic GDScript for Godot 4.7: static typing, the node lifecycle (ready/process/physicsprocess), @export/@onready/@tool annotations, signals, and await for asynchronous flow. Use when editing .gd scripts in a Godot project (project.godot), writing or debugging GDScript, or porting 3.x GDScript to 4.x…