bevy-ecs-expert
Master Bevy's Entity Component System (ECS) in Rust, covering Systems, Queries, Resources, and parallel scheduling.
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.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# 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
- Overview
- When to Use This Skill
- Step-by-Step Guide
- 1. Defining Components
- 2. Writing Systems
- 3. Managing Resources
- 4. Scheduling Systems
- Examples
- Example 1: Spawning Entities with Require Component
- Example 2: Query Filters
- Best Practices
- Troubleshooting
- Limitations
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.