Agent skill · Frontend

bevy-ecs-expert

Master Bevy's Entity Component System (ECS) in Rust, covering Systems, Queries, Resources, and parallel scheduling.

Nick44,086★ · +407/wk · 1 repos on radarProfile →
claude-codecodexcursorMIT
Install
npx skills add sickn33/agentic-awesome-skills --skill bevy-ecs-expert --agent claude-code

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

Facts
Files in the skill folder: 1
SKILL.md size: 4 KB
Bundled scripts: none
Path: skills/bevy-ecs-expert/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 44,414 · +328 this week
Language: Python
Read our review of the source →

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

From the SKILL.md

# Bevy ECS Expert ## Overview A guide to building high-performance game logic using Bevy's data-oriented ECS architecture. Learn how to structure systems, optimize queries, manage resources, and leverage parallel execution. ## When to Use This Skill - Use when developing games with the Bevy engine in Rust. - Use when designing game systems that need to run in parallel. - Use when optimizing game performance by minimizing cache misses. - Use when refactoring object-oriented logic into data-oriented ECS patterns. ## Step-by-Step Guide ### 1. Defining Components Use simple structs for data. Derive `Component` and `Reflect`. ```rust #[derive(Component, Reflect, Default)] #[reflect(Component)] struct Velocity { x: f32, y: f32, } #[derive(Component)] struct Player; ``` ### 2. Writing Systems Systems are regular Rust functions that query components. ```rust fn movement_system( time: Res<Time>, mut query: Query<(&mut Transform, &Velocity), With<Player>>, ) { for (mut transform, velocity) in &mut query { transform.translation.x += velocity.x * time.delta_seconds(); transform.translation.y += velocity.y * time.delta_seconds(); } } ``` ### 3. Managing Resources Use `Resource` for global data

What's inside
Steps it walks through
  1. Overview
  2. When to Use This Skill
  3. Step-by-Step Guide
  4. 1. Defining Components
  5. 2. Writing Systems
  6. 3. Managing Resources
  7. 4. Scheduling Systems
  8. Examples
  9. Example 1: Spawning Entities with Require Component
  10. Example 2: Query Filters
  11. Best Practices
  12. Troubleshooting
  13. Limitations
More from agentic-awesome-skills
All skills →
About this skill
What does the bevy-ecs-expert skill do?

Master Bevy's Entity Component System (ECS) in Rust, covering Systems, Queries, Resources, and parallel scheduling.

How do I install it?

Run `npx skills add sickn33/agentic-awesome-skills --skill bevy-ecs-expert --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 sickn33/agentic-awesome-skills, a repository with 44,414 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