Setup & Installation
Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:
What This Skill Does
Covers FiveM roleplay server development across QBCore, ESX, and QBox frameworks. Handles Lua scripting, resource debugging, MLO creation and optimization, performance profiling, and server configuration. Includes client/server separation, event security, and database integration with oxmysql.
Covers the full stack of FiveM development in one skill, from Lua logic and framework internals to MLO pipelines and live server tuning, rather than requiring separate generalist coding and game-modding context.
When to use it
- Debugging a broken QBCore inventory resource
- Migrating an ESX job system to QBox
- Profiling and fixing client-side resmon spikes
- Writing a new gang/duty system from scratch
- Setting up fxmanifest.lua and config.lua for a new resource
Example Workflow
Here's how your AI assistant might use this skill in practice.
User asks: my QBCore inventory resource is causing server resmon spikes every 30 seconds
- 1Inspect the resource's server-side Lua for unthrottled loops or tick callbacks
- 2Identify event spam or unindexed database queries in the persistence layer
- 3Propose targeted fixes: loop throttling, query batching, or state bag replacement
- 4Validate fxmanifest.lua dependency order and shared object lifecycle
- 5Provide corrected code with comments explaining each change
Refactored resource with documented performance fixes and stable resmon readings