Token导航 LogoToken导航TokenDH.com
运维和基础设施需要联网github未标认证来源可访问clear审计提醒

roblox-game-development罗布乐思游戏开发

Agent Skill

roblox-game-development 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

13,079

周安装

524

GitHub Stars

5

下载量

4,234
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:roblox-game-development(罗布乐思游戏开发)
来源仓库:https://github.com/greedychipmunk/agent-skills
仓库路径:skills/roblox-game-development
安装命令:
npx skills add https://github.com/greedychipmunk/agent-skills --skill roblox-game-development
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/greedychipmunk/agent-skills --skill roblox-game-development

简介

roblox-game-development 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合在罗布乐思游戏开发项目中围绕仓库状态进行整理。
  • 支持在 Codex、Claude、Cursor、Gemini CLI 中使用。
  • 安装前建议确认权限范围及是否触发文件读写或命令执行。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Roblox Game Development Skill

Description

Expert Roblox game developer specializing in Luau scripting, game mechanics, UI/UX design, and monetization strategies. Assists with everything from simple scripts to complex multiplayer experiences.

Resource Library

This skill includes a comprehensive collection of production-ready resources:

  • 📜 Helper Scripts - Professional utility modules for data management, networking, UI, game flow, and audio
  • 📋 Document Templates - Complete project documentation templates including Game Design Documents, Technical Specifications, Testing Plans, and Marketing Strategies
  • 📚 Development Resources - Game templates, asset libraries, debugging guides, performance optimization tools, and quick reference materials

Core Capabilities

Luau Programming

  • Modern Luau Features: Utilize type annotations, generics, and performance optimizations
  • Script Architecture: Implement clean, modular code with proper separation of concerns
  • Performance Optimization: Write efficient scripts that handle large player counts
  • Error Handling: Robust error management and debugging techniques

Game Systems Development

  • Player Data Management: DataStore implementation with backup systems (see DataManager.lua)
  • Inventory Systems: Item management, trading, and equipment systems
  • Economy Design: Currency systems, shops, and balanced progression
  • Combat Mechanics: Damage systems, weapons, abilities, and PvP/PvE gameplay
  • Social Features: Friends, guilds, chat systems, and player interactions

Roblox Studio Expertise

  • Workspace Organization: Proper model hierarchy and asset management
  • Terrain Sculpting: Advanced terrain tools and environmental design
  • Lighting & Atmosphere: Realistic lighting setups and mood creation
  • Animation: Rig creation, keyframe animation, and scripted animations
  • Physics Simulation: Custom physics, constraints, and interactive objects

User Interface Design

  • Modern UI Frameworks: Clean, responsive interface design (see UIManager.lua)
  • Mobile Optimization: Touch-friendly controls and adaptive layouts
  • Accessibility: Colorblind-friendly palettes and readable fonts
  • UX Patterns: Intuitive navigation and user flow optimization

Multiplayer & Networking

  • Client-Server Architecture: Proper remote event/function usage (see RemoteManager.lua)
  • Anti-Exploit Measures: Server-side validation and security best practices
  • Synchronization: Real-time multiplayer mechanics and state management
  • Scaling Solutions: Performance optimization for high player counts

Monetization & Analytics

  • Developer Products: Robux purchases and virtual currency
  • Game Passes: Premium features and subscription models
  • Analytics Integration: Player behavior tracking and retention metrics
  • A/B Testing: Feature testing and conversion optimization

Development Workflow

Project Setup

  1. Game Concept Development: Genre analysis, target audience, and core loop design (see Game Design Document template)
  2. Technical Architecture: Script organization, module system, and dependency management (see Technical Specification template)
  3. Asset Pipeline: Model importing, texture optimization, and version control (see Asset Library)
  4. Testing Framework: Unit tests, integration tests, and QA processes (see Testing Plan template)

Implementation Phases

  1. Core Mechanics: Basic gameplay loop and player controls (use Game Templates for rapid prototyping)
  2. System Integration: Connecting different game systems (see GameManager.lua)
  3. Content Creation: Levels, quests, items, and progression systems
  4. Polish & Optimization: Performance tuning and bug fixes (see Performance Optimization Guide)
  5. Launch Preparation: Store assets, descriptions, and marketing materials (see Marketing Plan template)

Best Practices

  • Code Organization: Use ModuleScripts for reusable components
  • Security First: Always validate on server-side
  • Performance Monitoring: Regular profiling and optimization
  • Player Feedback: Iterative development based on player data
  • Version Control: Proper backup and collaboration workflows

Common Patterns & Solutions

Data Persistence

Complete implementation available in DataManager.lua

-- DataStore best practices with retry logic and caching
local DataStoreService = game:GetService("DataStoreService")
local ReplicatedStorage = game:GetService("ReplicatedStorage")

local PlayerDataModule = {}
local dataStore = DataStoreService:GetDataStore("PlayerData_v1")
local sessionData = {}

function PlayerDataModule:LoadData(player)
    local success, data = pcall(function()
        return dataStore:GetAsync(player.UserId)
    end)

    if success and data then
        sessionData[player.UserId] = data
    else
        -- Default data structure
        sessionData[player.UserId] = {
            level = 1,
            coins = 100,
            inventory = {},
            settings = {}
        }
    end

    return sessionData[player.UserId]
end

Remote Communication

Complete implementation available in RemoteManager.lua

-- Secure remote event handling
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local remoteEvents = ReplicatedStorage:WaitForChild("RemoteEvents")
local purchaseEvent = remoteEvents:WaitForChild("PurchaseItem")

purchaseEvent.OnServerEvent:Connect(function(player, itemId, quantity)
    -- Server-side validation
    if not itemId or not quantity or quantity <= 0 then return end

    local playerData = PlayerDataModule:GetData(player)
    local itemCost = ShopModule:GetItemCost(itemId) * quantity

    if playerData.coins >= itemCost then
        playerData.coins -= itemCost
        InventoryModule:AddItem(player, itemId, quantity)
        -- Update client
        UpdateClientData(player)
    end
end)

Performance Optimization

Complete optimization guide available in Performance Optimization

-- Efficient object pooling for projectiles
local ProjectilePool = {}
local activeProjectiles = {}
local poolSize = 50

function ProjectilePool:GetProjectile()
    local projectile = table.remove(activeProjectiles)
    if not projectile then
        projectile = CreateNewProjectile()
    end
    return projectile
end

function ProjectilePool:ReturnProjectile(projectile)
    -- Reset projectile state
    projectile.Parent = workspace.ProjectilePool
    projectile.CFrame = CFrame.new(0, -1000, 0)
    table.insert(activeProjectiles, projectile)
end

Specialized Areas

Mobile Game Development

  • Touch controls and gesture recognition
  • Battery optimization and memory management
  • Cross-platform compatibility testing

Educational Games

  • Learning objective integration
  • Progress tracking and assessment
  • Age-appropriate content and safety

Competitive Gaming

  • Ranked systems and matchmaking
  • Spectator modes and replay systems
  • Tournament organization tools

Creative/Building Games

  • Advanced building tools and constraints
  • Save/load systems for user creations
  • Collaborative building features

Troubleshooting & Debugging

Comprehensive debugging resources available in Debugging Guide

Common Issues

  • Memory Leaks: Connection cleanup and proper garbage collection
  • Performance Bottlenecks: Profiling tools and optimization strategies
  • Networking Problems: Latency handling and connection management
  • Cross-Platform Bugs: Device-specific testing and compatibility

Development Tools

  • Roblox Studio Debugger: Breakpoints and variable inspection
  • Performance Profiler: CPU and memory usage analysis
  • Network Monitor: Remote event tracking and bandwidth usage
  • Error Logging: Custom logging systems for production debugging

Quick Reference

Essential commands and snippets available in Quick Reference

Stay Updated

  • Follow Roblox Developer Hub for platform updates
  • Participate in developer forums and community discussions
  • Experiment with new features in beta releases
  • Study successful games for design patterns and trends

Getting Started

Quick Setup

  1. Choose a Game Template from Game Templates to match your vision
  2. Set up Core Systems using the helper scripts in scripts/
  3. Plan Your Project using the documentation templates in templates/
  4. Optimize Performance following the guides in resources/

Essential Helper Scripts

Project Documentation

Development Resources

This skill enables comprehensive Roblox game development from concept to launch, with focus on best practices, security, and player engagement. All resources are production-ready and can be immediately integrated into your projects.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

28.6%
按下载量换算1,211

Codex

20.35%
按下载量换算862

Antigravity

16.63%
按下载量换算704

OpenCode

11.92%
按下载量换算505

Cursor

8.52%
按下载量换算361

Gemini CLI

3.36%
按下载量换算142

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills