plugins marketplace
← All plugins

game-development

v1.2.3

Unity game development with C# scripting, Minecraft server plugin development with Bukkit/Spigot APIs

CodexClaude Code2 skills

by Seth HobsonMIT38.6kupdated 4 days ago

Source

git clone https://github.com/wshobson/agents

Clone the source, then follow the repository's marketplace instructions for your runtime. The plugin root is plugins/game-development/ inside the repository.

Layout

plugins/game-development/
├── .codex-plugin/plugin.json
├── .claude-plugin/plugin.json
├── skills/godot-gdscript-patterns/SKILL.md
└── skills/unity-ecs-patterns/SKILL.md

Skills2

godot-gdscript-patternsskills/godot-gdscript-patterns/SKILL.md

Master Godot 4 GDScript patterns including signals, scenes, state machines, and optimization. Use when building Godot games, implementing game systems, or learning GDScript best practices.

unity-ecs-patternsskills/unity-ecs-patterns/SKILL.md

Master Unity ECS (Entity Component System) with DOTS, Jobs, and Burst for high-performance game development. Use when building data-oriented games, optimizing performance, or working with large entity counts.

Manifests2

plugins/game-development/.codex-plugin/plugin.json
{
  "name": "game-development",
  "version": "1.2.3",
  "description": "Unity game development with C# scripting, Minecraft server plugin development with Bukkit/Spigot APIs",
  "skills": "./skills/",
  "author": {
    "name": "Seth Hobson",
    "email": "seth@major7apps.com"
  },
  "license": "MIT",
  "interface": {
    "displayName": "Game Development",
    "shortDescription": "Unity game development with C# scripting, Minecraft server plugin development with Bukkit/Spigot APIs",
    "category": "Coding"
  }
}
plugins/game-development/.claude-plugin/plugin.json
{
  "name": "game-development",
  "version": "1.2.3",
  "description": "Unity game development with C# scripting, Minecraft server plugin development with Bukkit/Spigot APIs",
  "author": {
    "name": "Seth Hobson",
    "email": "seth@major7apps.com"
  },
  "license": "MIT"
}