Damian Sirbu · Updated 2026-04-05
xlibs is a modder's toolbox for STALKER Anomaly. It replaces raw X-Ray engine calls with safe, tested Lua wrappers — squad operations, smart terrain queries, entity identification, an event bus for mod-to-mod communication, MCM config, PDA messaging, logging, profiling, and more. If you're writing a STALKER mod, xlibs handles the engine so you can focus on gameplay.
AlifePlus is a behavior framework built on xlibs. The Zone is full of events — squads move between locations, NPCs die, stashes get looted, massacres happen. AlifePlus classifies these into causes and routes them to consequences: nearby stalkers investigate a massacre, bandits ambush a stash looter, a faction sends a revenge squad. Mods register a predicate and a handler; the framework handles throttling, protection, rate limiting, tracing, and lifecycle.
Right now every alife mod in the Anomaly ecosystem hooks the same engine callbacks independently, implements its own throttling, and fights other mods for control of the same squads. xlibs and AlifePlus exist so that mods can share one pipeline instead of reinventing it. Any mod author who wants to build on these systems is welcome — see the usage guide or reach out directly.
Both projects are published under the PolyForm Perimeter License. Addons, integrations, and modpacks are encouraged with visible credit.
Shortly after the source code was published, several mods appeared that copy AlifePlus architecture and internals without following the license. The reports below document the evidence with side-by-side code comparisons. If you are here because someone linked you one of these reports, start with the one that was linked. If you are a mod author interested in building on xlibs or AlifePlus, start with the usage guide instead.
The SISKI author admitted feeding AlifePlus source into an AI to replicate the architecture. Deleted AI plans recovered from git history. Event bus, callback system, and producer/consumer pipeline copied within 5-7 days of source publication.
A single-file derivative by the same author, distributed without version control or license. Shares the same architectural patterns and AI code markers as SISKI ALIFE.
An AI-generated mod that uses undocumented internal AlifePlus APIs and requires SISKI as a dependency. Documents what was done, how it relates to the framework, and where it falls outside compliant usage.