Agent skill · Data & Analytics

unity-ecs

Unity DOTS/ECS skill for data-oriented design, jobs system, burst compiler optimization, and high-performance gameplay systems.

a5c-aigithub.com/a5c-aiGitHub ↗
claude-codecodexcan modify filesMIT
Install
npx skills add a5c-ai/babysitter --skill unity-ecs --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 3 KB
Bundled scripts: none
Allowed tools: ReadGrepWriteBashEditGlobWebFetch
Path: library/specializations/game-development/skills/unity-ecs/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 1,642
Language: JavaScript

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Unity ECS Skill Data-Oriented Technology Stack (DOTS) and Entity Component System development for Unity. ## Overview This skill provides capabilities for implementing high-performance gameplay systems using Unity's Entity Component System, Jobs System, and Burst compiler. ## Capabilities ### Entity Component System - Create IComponentData structs - Implement ISystem and SystemBase - Manage entity archetypes - Handle entity queries and batching ### Jobs System - Create IJob implementations - Implement IJobEntity for entity processing - Handle job dependencies and scheduling - Manage native containers ### Burst Compiler - Enable Burst compilation for jobs - Optimize with SIMD instructions - Profile Burst-compiled code - Handle Burst limitations ### Hybrid Workflow - Bridge ECS with GameObjects - Use companion components - Convert existing systems to ECS - Implement baking workflow ## Prerequisites - Unity 2022.3+ recommended - Entities package (1.0+) - Mathematics package - Burst package ## Usage Patterns ### Component Data ```csharp public struct MoveSpeed : IComponentData { public float Value; } public struct Velocity : IComponentData { public float3 Value; } ``` ### System Imple

What's inside
Steps it walks through
  1. Overview
  2. Capabilities
  3. Entity Component System
  4. Jobs System
  5. Burst Compiler
  6. Hybrid Workflow
  7. Prerequisites
  8. Usage Patterns
  9. Component Data
  10. System Implementation
  11. Job Example
  12. Best Practices
  13. References
Ships with 1 file
  • README.md
More from babysitter
All skills →
About this skill
What does the unity-ecs skill do?

Unity DOTS/ECS skill for data-oriented design, jobs system, burst compiler optimization, and high-performance gameplay systems.

How do I install it?

Run `npx skills add a5c-ai/babysitter --skill unity-ecs --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From a5c-ai/babysitter, a repository with 1,642 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going