qbox-framework

Guide FiveM resource development using Qbox exports-based API and Ox integration.

6|3|Updated Feb 6, 2026
One-click install
npx skills add https://github.com/proelias7/fivem-skill --skill qbox-framework
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: qbox-framework
Source: https://github.com/proelias7/fivem-skill/tree/main/skills/qbox-framework
Command: npx skills add https://github.com/proelias7/fivem-skill --skill qbox-framework

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill provides guidelines and patterns for developing resources using the Qbox Project (qbx_core). It covers the exports-based API usage, bridge compatibility, Ox integration, and best practices to accelerate FiveM resource development.

Core Features & Use Cases

  • Exports-first development: Emphasizes direct exports usage (exports.qbx_core:GetPlayer, etc.) over legacy core objects.
  • Ox integration patterns: Guidance on integrating ox_lib, ox_inventory, and oxmysql for robust resources.
  • Resource structure and conventions: Standardized file layout, module organization, and documentation references.
  • Use Case: A developer builds a new FiveM resource and uses qbx_core exports to manage players and inventory with Ox Lib UI.

Quick Start

Install or reference the Qbox framework, read the reference and templates, and start scaffolding a new resource with fxmanifest and client/server structure. Then follow examples to implement GetPlayer, notifications, and database access via ox_mysql.

Frequently Asked Questions about qbox-framework

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

FAQPage Schema
How do I use qbx_core exports to build a FiveM resource?

Build FiveM resources using qbx_core exports by calling functions like exports.qbx_core:GetPlayer directly in your client and server files. This exports-first API replaces legacy core objects for managing player data and framework features.

What is the best way to integrate ox_lib and ox_inventory with Qbox?

Integrate ox_lib and ox_inventory with Qbox by following established Ox integration patterns for UI notifications, inventory management, and database access. These guidelines ensure robust resource structure across client and server code.

Do I need to know Ox Lib and qbx_core exports to develop Qbox resources?

Yes, developing Qbox resources requires familiarity with qbx_core exports, Ox Lib, and Ox Inventory. The Skill provides references and templates to implement common features, but prerequisite knowledge of these frameworks is required.

How does bridge compatibility work when developing FiveM resources with Qbox?

Bridge compatibility in Qbox defines core patterns for using exports and standardizing resource structure across client and server code. This ensures resources maintain compatibility with the Qbox framework and integrated Ox components.

What file structure should I use for a new FiveM resource with qbx_core?

Use a standardized file layout with fxmanifest and separate client and server directories. The Skill provides conventions for module organization and documentation references to scaffold new Qbox resources consistently.

Why use exports instead of legacy core objects in FiveM Qbox development?

Using exports instead of legacy core objects follows an exports-first development approach that provides direct API access through exports.qbx_core. This pattern ensures better compatibility and standardized resource structure across your FiveM codebase.