[
  {
    "id": "bevy-docs-1",
    "tier": "claimed-docs",
    "url": "https://bevy.org",
    "excerpt": "All engine and game logic uses Bevy ECS, a custom Entity Component System",
    "fetchedAt": "2026-09-15T19:00:26.877Z"
  },
  {
    "id": "bevy-docs-2",
    "tier": "claimed-docs",
    "url": "https://bevy.org",
    "excerpt": "Render real-time 2D graphics for games and apps",
    "fetchedAt": "2026-09-15T19:00:26.877Z"
  },
  {
    "id": "bevy-docs-3",
    "tier": "claimed-docs",
    "url": "https://bevy.org",
    "excerpt": "A modern and flexible 3D renderer",
    "fetchedAt": "2026-09-15T19:00:26.877Z"
  },
  {
    "id": "bevy-docs-4",
    "tier": "claimed-docs",
    "url": "https://bevy.org",
    "excerpt": "Compose custom render pipelines using a graph structure",
    "fetchedAt": "2026-09-15T19:00:26.877Z"
  },
  {
    "id": "bevy-docs-5",
    "tier": "claimed-docs",
    "url": "https://bevy.org",
    "excerpt": "Play multiple animations at the same time by smoothly blending between them",
    "fetchedAt": "2026-09-15T19:00:26.877Z"
  },
  {
    "id": "bevy-docs-6",
    "tier": "claimed-docs",
    "url": "https://bevy.org",
    "excerpt": "Support for all major platforms: Windows, MacOS, Linux, Web, iOS, Android",
    "fetchedAt": "2026-09-15T19:00:26.877Z"
  },
  {
    "id": "bevy-docs-7",
    "tier": "claimed-docs",
    "url": "https://bevy.org",
    "excerpt": "Use a familiar \"flex box\" model to layout your UIs",
    "fetchedAt": "2026-09-15T19:00:26.877Z"
  },
  {
    "id": "bevy-docs-8",
    "tier": "claimed-docs",
    "url": "https://bevy.org",
    "excerpt": "Create, save, and load ECS worlds using Bevy's Scene system",
    "fetchedAt": "2026-09-15T19:00:26.877Z"
  },
  {
    "id": "bevy-docs-9",
    "tier": "claimed-docs",
    "url": "https://bevy.org",
    "excerpt": "Load audio files and play them on demand",
    "fetchedAt": "2026-09-15T19:00:26.877Z"
  },
  {
    "id": "bevy-docs-10",
    "tier": "claimed-docs",
    "url": "https://bevy.org",
    "excerpt": "Get instant feedback on your changes without app restarts or recompiles",
    "fetchedAt": "2026-09-15T19:00:26.877Z"
  },
  {
    "id": "bevy-docs-11",
    "tier": "claimed-docs",
    "url": "https://bevy.org",
    "excerpt": "With Bevy you can expect 0.8-3.0 seconds with the \"fast compiles\" configuration",
    "fetchedAt": "2026-09-15T19:00:26.877Z"
  },
  {
    "id": "bevy-docs-12",
    "tier": "claimed-docs",
    "url": "https://bevy.org/learn/quick-start/introduction/",
    "excerpt": "Easy for newbies to pick up, but infinitely flexible for power users",
    "fetchedAt": "2026-09-15T19:00:26.877Z"
  },
  {
    "id": "bevy-docs-13",
    "tier": "claimed-docs",
    "url": "https://bevy.org/learn/quick-start/getting-started/setup/",
    "excerpt": "Bevy requires us to do a _small_ amount of setup first.",
    "fetchedAt": "2026-09-15T19:00:26.877Z"
  },
  {
    "id": "bevy-docs-14",
    "tier": "claimed-docs",
    "url": "https://bevy.org/learn/quick-start/getting-started/ecs/",
    "excerpt": "Components: Rust structs that implement the Component trait",
    "fetchedAt": "2026-09-15T19:00:26.877Z"
  },
  {
    "id": "bevy-docs-15",
    "tier": "claimed-docs",
    "url": "https://bevy.org/learn/",
    "excerpt": "Every Bevy update brings new functionality and improvements. Follow these guides to migrate your project to the latest Bevy has to offer!",
    "fetchedAt": "2026-09-15T19:00:26.877Z"
  },
  {
    "id": "bevy-docs-16",
    "tier": "claimed-docs",
    "url": "https://bevy.org/learn/",
    "excerpt": "Browse bevy examples compiled to wasm and running directly in your browser!",
    "fetchedAt": "2026-09-15T19:00:26.877Z"
  },
  {
    "id": "bevy-docs-17",
    "tier": "claimed-docs",
    "url": "https://bevy.org/assets/",
    "excerpt": "A collection of third-party Bevy assets, plugins, learning resources, and apps made by the community.",
    "fetchedAt": "2026-09-15T19:00:26.877Z"
  },
  {
    "id": "bevy-docs-18",
    "tier": "claimed-docs",
    "url": "https://bevy.org/learn/quick-start/introduction/",
    "excerpt": "It is free and open-source forever under your choice of the MIT or Apache 2.0 licenses.",
    "fetchedAt": "2026-09-15T19:00:26.877Z"
  },
  {
    "id": "bevy-docs-19",
    "tier": "claimed-docs",
    "url": "https://bevy.org/learn/quick-start/introduction/",
    "excerpt": "Bevy is also a refreshingly simple data-driven game engine built in Rust.",
    "fetchedAt": "2026-09-15T19:08:56.306Z"
  },
  {
    "id": "bevy-docs-20",
    "tier": "claimed-docs",
    "url": "https://bevy.org/learn/quick-start/getting-started/ecs/",
    "excerpt": "Unlike other Rust ECS implementations, which often require complex lifetimes, traits, builder patterns, or macros, Bevy ECS uses normal Rust datatypes for all of these concepts",
    "fetchedAt": "2026-09-15T19:08:56.306Z"
  },
  {
    "id": "bevy-docs-21",
    "tier": "claimed-docs",
    "url": "https://bevy.org/learn/quick-start/getting-started/setup/",
    "excerpt": "Bevy is just a normal Rust dependency. You can either add it to an existing Rust project or create a new one.",
    "fetchedAt": "2026-09-15T19:08:56.306Z"
  },
  {
    "id": "bevy-docs-22",
    "tier": "claimed-docs",
    "url": "https://bevy.org/learn/",
    "excerpt": "Examples that show how to use the various features of Bevy.",
    "fetchedAt": "2026-09-15T19:08:56.306Z"
  },
  {
    "id": "bevy-docs-23",
    "tier": "claimed-docs",
    "url": "https://bevy.org",
    "excerpt": "Extensible: custom shaders, materials, and render pipelines",
    "fetchedAt": "2026-09-15T19:08:56.306Z"
  },
  {
    "id": "bevy-docs-24",
    "tier": "claimed-docs",
    "url": "https://bevy.org",
    "excerpt": "Load audio files as Assets\n*   Play audio Assets using Audio entities",
    "fetchedAt": "2026-09-15T19:08:56.306Z"
  },
  {
    "id": "bevy-docs-25",
    "tier": "claimed-docs",
    "url": "https://bevy.org",
    "excerpt": "100% free. Forever and always\n*   Open Source under the permissive MIT or Apache 2.0 licenses\n*   No contracts\n*   No license fees\n*   No sales cuts",
    "fetchedAt": "2026-09-15T19:08:56.306Z"
  },
  {
    "id": "bevy-docs-26",
    "tier": "claimed-docs",
    "url": "https://bevy.org/community/",
    "excerpt": "The go-to place to ask Bevy questions and get Bevy answers",
    "fetchedAt": "2026-09-15T19:08:56.306Z"
  },
  {
    "id": "bevy-docs-27",
    "tier": "claimed-docs",
    "url": "https://bevy.org/learn/",
    "excerpt": "Learn how to use Bevy's types, traits and methods using the in-depth reference documentation, complete with inline examples.",
    "fetchedAt": "2026-09-15T19:08:56.306Z"
  },
  {
    "id": "bevy-docs-28",
    "tier": "claimed-docs",
    "url": "https://bevy.org/learn/quick-start/introduction/",
    "excerpt": "Why are we continuing to build up the ecosystems of closed-source monopolies that take cuts of our sales and deny us visibility into the tech we use daily?",
    "fetchedAt": "2026-09-15T19:08:56.306Z"
  },
  {
    "id": "bevy-docs-29",
    "tier": "claimed-docs",
    "url": "https://bevy.org/learn/quick-start/introduction/",
    "excerpt": "Simple: Easy for newbies to pick up, but infinitely flexible for power users",
    "fetchedAt": "2026-09-15T19:08:56.306Z"
  },
  {
    "id": "bevy-comm-1",
    "tier": "community",
    "url": "https://news.ycombinator.com/item?id=24123283",
    "excerpt": "Got the chance of running the examples and glance over the code... it looks incredibly elegant and clean. Almost feels like this could make engine development fun again.",
    "fetchedAt": "2026-09-15T19:13:16.441Z"
  },
  {
    "id": "bevy-comm-2",
    "tier": "community",
    "url": "https://news.ycombinator.com/item?id=24123283",
    "excerpt": "MIT License, well done! It's so refreshing to see things released with no strings attached... a breathe of fresh air as a potential end user.",
    "fetchedAt": "2026-09-15T19:13:16.441Z"
  },
  {
    "id": "bevy-comm-3",
    "tier": "community",
    "url": "https://news.ycombinator.com/item?id=24123283",
    "excerpt": "I have to say the API seems to be very pleasant and simple at a glance. Kudos to the author! This pattern is a great example of how Rust achieves to be both very ergonomic and type safe.",
    "fetchedAt": "2026-09-15T19:13:16.441Z"
  },
  {
    "id": "bevy-comm-4",
    "tier": "community",
    "url": "https://news.ycombinator.com/item?id=24123283",
    "excerpt": "This is amazing. Seriously: I had a look at nearly every game engine/GUI solution in Rust and this is by far the most thought out, ergonomic and complete thing I found.",
    "fetchedAt": "2026-09-15T19:13:16.441Z"
  },
  {
    "id": "bevy-comm-5",
    "tier": "community",
    "url": "https://news.ycombinator.com/item?id=24123283",
    "excerpt": "Having spent a good deal of time working in a dogmatic data driven entity component system very similar to this one, I'd like to point out that while it's very aesthetically pleasing to write code like that, it's not necessarily more productive.",
    "fetchedAt": "2026-09-15T19:13:16.441Z"
  },
  {
    "id": "bevy-comm-6",
    "tier": "community",
    "url": "https://news.ycombinator.com/item?id=24123283",
    "excerpt": "I'm getting security warnings visiting the site, on both Firefox and Chrome... 'Error code: SEC_ERROR_UNKNOWN_ISSUER' on FF at least.",
    "fetchedAt": "2026-09-15T19:13:16.441Z"
  },
  {
    "id": "bevy-comm-7",
    "tier": "community",
    "url": "https://news.ycombinator.com/item?id=24123283",
    "excerpt": "AAA studios won't even consider using Bevy until it has more features and has stood the test of time. So in the short term our market is essentially 'indies and enthusiasts'.",
    "fetchedAt": "2026-09-15T19:13:16.441Z"
  },
  {
    "id": "bevy-comm-8",
    "tier": "community",
    "url": "https://news.ycombinator.com/item?id=24123283",
    "excerpt": "The integrated code editor in Godot is actually something I don't like... I hope that Bevy users won't be forced to use the Bevy editor for coding.",
    "fetchedAt": "2026-09-15T19:13:16.441Z"
  },
  {
    "id": "bevy-comm-9",
    "tier": "community",
    "url": "https://hn.algolia.com/api/v1/items/29854416",
    "excerpt": "Bevy's release notes are consistently the best I've ever seen.",
    "fetchedAt": "2026-09-15T19:13:16.441Z"
  },
  {
    "id": "bevy-comm-10",
    "tier": "community",
    "url": "https://hn.algolia.com/api/v1/items/29854416",
    "excerpt": "We support low-end devices well! Bevy runs well on iOS currently... Fans spinning is a known issue, but it is generally decoupled from framerates.",
    "fetchedAt": "2026-09-15T19:13:16.441Z"
  },
  {
    "id": "bevy-comm-11",
    "tier": "community",
    "url": "https://hn.algolia.com/api/v1/items/29854416",
    "excerpt": "Not a criticism, but model projected shadows are very jagged or really low-res, reminds me of early Unity shadows.",
    "fetchedAt": "2026-09-15T19:13:16.441Z"
  },
  {
    "id": "bevy-comm-12",
    "tier": "community",
    "url": "https://hn.algolia.com/api/v1/items/29854416",
    "excerpt": "Things have started to stabilize, but unless you're willing to get your hands dirty and deal with regular breaking changes, I don't yet recommend staking your livelihood on it.",
    "fetchedAt": "2026-09-15T19:13:16.441Z"
  },
  {
    "id": "bevy-comm-13",
    "tier": "community",
    "url": "https://hn.algolia.com/api/v1/items/38144417",
    "excerpt": "On the last update 0.10 -> 0.11, I had to make quite a few changes on my app, but this time it compiled out of the box!",
    "fetchedAt": "2026-09-15T19:13:16.441Z"
  },
  {
    "id": "bevy-comm-14",
    "tier": "community",
    "url": "https://hn.algolia.com/api/v1/items/38144417",
    "excerpt": "I'm put off by the limited docs. I've read the Bevy book, only takes a few minutes, and just like that I'm out of resources to turn to when I get stuck.",
    "fetchedAt": "2026-09-15T19:13:16.441Z"
  },
  {
    "id": "bevy-comm-15",
    "tier": "community",
    "url": "https://hn.algolia.com/api/v1/items/38144417",
    "excerpt": "There's an unofficial complement to the docs... Unfortunately it's somewhat out of date... The effort to keep it up to date is somewhat low since Bevy changes so much and so often.",
    "fetchedAt": "2026-09-15T19:13:16.441Z"
  },
  {
    "id": "bevy-comm-16",
    "tier": "community",
    "url": "https://hn.algolia.com/api/v1/items/38144417",
    "excerpt": "Pain points: UI system was too verbose to comfortably build widgets. Swapped to using egui, but expect to go back to native Bevy within a year. egui has significant limitations, too. Parent/Child relationships don't have a ton of support.",
    "fetchedAt": "2026-09-15T19:13:16.441Z"
  },
  {
    "id": "bevy-comm-17",
    "tier": "community",
    "url": "https://hn.algolia.com/api/v1/items/38144417",
    "excerpt": "Pros: Very nice to work in Rust engine + Rust game. Once you get your brain thinking ECS it's tough to go back, feels very flexible. Very lively community, easy to find someone to talk to about a problem you're having.",
    "fetchedAt": "2026-09-15T19:13:16.441Z"
  },
  {
    "id": "bevy-comm-18",
    "tier": "community",
    "url": "https://hn.algolia.com/api/v1/items/38144417",
    "excerpt": "Bevy is one of my favorite game engines, especially for larger projects. Asset V2 preprocessing and .meta files look super useful.",
    "fetchedAt": "2026-09-15T19:13:16.441Z"
  },
  {
    "id": "bevy-comm-19",
    "tier": "community",
    "url": "https://news.ycombinator.com/item?id=24530698",
    "excerpt": "Something delightful about this update: it has a lot of new features, some very early, but all by different authors. Seems like such a community effort compared to most early-stage projects.",
    "fetchedAt": "2026-09-15T19:13:16.441Z"
  },
  {
    "id": "bevy-comm-20",
    "tier": "community",
    "url": "https://news.ycombinator.com/item?id=24983956",
    "excerpt": "Man, you guys really kill it with blog/changelog announcements. Great job! For my use case, Bevy web (and mobile is nice too) support would mean switching from Godot, 100%.",
    "fetchedAt": "2026-09-15T19:13:16.441Z"
  },
  {
    "id": "bevy-probe-1",
    "tier": "probe",
    "url": "https://bevy.org/llms.txt",
    "excerpt": "PROBE llms.txt: HTTP 404 at https://bevy.org/llms.txt",
    "fetchedAt": "2026-09-15T19:14:23.162Z"
  },
  {
    "id": "bevy-probe-2",
    "tier": "probe",
    "url": "https://bevy.org/learn/.md",
    "excerpt": "PROBE docs-md: HTTP 404 at https://bevy.org/learn/.md",
    "fetchedAt": "2026-09-15T19:14:23.162Z"
  },
  {
    "id": "bevy-probe-3",
    "tier": "probe",
    "url": "https://bevy.org/openapi.json",
    "excerpt": "PROBE openapi: all candidate paths 404 (https://bevy.org/openapi.json, https://bevy.org/swagger.json, https://bevy.org/api/openapi.json, https://bevy.org/.well-known/openapi.json)",
    "fetchedAt": "2026-09-15T19:14:23.162Z"
  },
  {
    "id": "bevy-probe-rt-1",
    "tier": "probe",
    "url": "https://bevy.org/learn/quick-start/getting-started/setup/",
    "excerpt": "PROBE runtime (recorded 2026-09-15): bevy resolves on crates.io — `cargo search bevy` → 'bevy = \"0.19.1\" # A refreshingly simple data-driven game engine and app framework', and the keyless crates.io API reports max_stable_version 0.19.1, 1,478,352 downloads in 90 days, license 'MIT OR Apache-2.0'. Pre-1.0 with breaking changes each release — a real caveat for agents trained on older APIs.",
    "fetchedAt": "2026-09-15T19:14:25.000Z"
  },
  {
    "id": "bevy-probe-rt-2",
    "tier": "probe",
    "url": "https://bevy.org/",
    "excerpt": "PROBE runtime negative (recorded 2026-09-15): bevy.org serves no llms.txt (HTTP 404; docs.rs likewise) and no official MCP exists — community tooling is nascent (natepiano/bevy_brp, 70 stars, built on the first-party Bevy Remote Protocol). Counterweight: docs.rs/bevy gives fully static, crawlable API docs, and the code-first cargo workflow needs no editor for an agent to drive.",
    "fetchedAt": "2026-09-15T19:14:25.000Z"
  }
]
