{"id":"e0b22c21-1069-49b0-b36e-70d5e29cefd6","slug":"kadajett-bitecs-agent-skill","name":"bitecs","description":"Comprehensive guide for using bitECS v0.4.0, a flexible, minimal, data-oriented ECS library for TypeScript. Use when building games or simulations with Entity Component System architecture, creating entity hierarchies, defining components, querying entities, or working with serialization.","canonicalUrl":"https://xpersona.co/skill/kadajett-bitecs-agent-skill","sourceUrl":"https://github.com/Kadajett/bitECS-agent-skill","homepage":null,"source":"GITHUB_OPENCLEW","vendor":{"slug":"kadajett","label":"Kadajett","url":"https://github.com/Kadajett/bitECS-agent-skill"},"protocols":["OPENCLEW"],"capabilities":["be","serve","only"],"trustScore":null,"trustConfidence":"unknown","artifactCount":0,"benchmarkCount":0,"lastRelease":null,"freshnessAt":"2026-04-15T03:12:29.922Z","freshnessLabel":"Apr 15, 2026","securityReviewed":true,"openapiReady":false,"stats":[{"label":"Trust score","value":"Unknown"},{"label":"Compatibility","value":"OpenClaw"},{"label":"Freshness","value":"Apr 15, 2026"},{"label":"Vendor","value":"Kadajett"},{"label":"Artifacts","value":"0"},{"label":"Benchmarks","value":"0"},{"label":"Last release","value":"Unpublished"}],"factsPreview":[{"factKey":"docs_crawl","category":"integration","label":"Crawlable docs","value":"6 indexed pages on the official domain","href":"https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar","sourceUrl":"https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar","sourceType":"search_document","confidence":"medium","observedAt":"2026-04-15T05:03:46.393Z","isPublic":true},{"factKey":"vendor","category":"vendor","label":"Vendor","value":"Kadajett","href":"https://github.com/Kadajett/bitECS-agent-skill","sourceUrl":"https://github.com/Kadajett/bitECS-agent-skill","sourceType":"profile","confidence":"medium","observedAt":"2026-04-15T03:12:29.922Z","isPublic":true},{"factKey":"protocols","category":"compatibility","label":"Protocol compatibility","value":"OpenClaw","href":"https://xpersona.co/api/v1/agents/kadajett-bitecs-agent-skill/contract","sourceUrl":"https://xpersona.co/api/v1/agents/kadajett-bitecs-agent-skill/contract","sourceType":"contract","confidence":"medium","observedAt":"2026-04-15T03:12:29.922Z","isPublic":true},{"factKey":"handshake_status","category":"security","label":"Handshake status","value":"UNKNOWN","href":"https://xpersona.co/api/v1/agents/kadajett-bitecs-agent-skill/trust","sourceUrl":"https://xpersona.co/api/v1/agents/kadajett-bitecs-agent-skill/trust","sourceType":"trust","confidence":"medium","observedAt":null,"isPublic":true}],"highlights":["Trust evidence available"],"agentCard":{"name":"bitecs","description":"Comprehensive guide for using bitECS v0.4.0, a flexible, minimal, data-oriented ECS library for TypeScript. Use when building games or simulations with Entity Component System architecture, creating entity hierarchies, defining components, querying entities, or working with serialization.","source":"GITHUB_OPENCLEW","sourceId":"github:1146812776","repository":"https://github.com/Kadajett/bitECS-agent-skill","documentation":"https://xpersona.co/skill/kadajett-bitecs-agent-skill/agent/kadajett-bitecs-agent-skill","protocols":["OPENCLEW"],"capabilities":["be","serve","only"],"languages":["typescript"],"install":{"command":"git clone https://github.com/Kadajett/bitECS-agent-skill.git","ecosystem":"git"},"examples":[{"kind":"example","language":"bash","snippet":"npm i bitecs"},{"kind":"example","language":"ts","snippet":"import { createWorld, resetWorld, deleteWorld, getAllEntities, getWorldComponents } from 'bitecs'\n\n// Basic world creation\nconst world = createWorld()\n\n// World with custom context\nconst world = createWorld({\n    time: { delta: 0, elapsed: 0, then: 0 },\n    components: {\n        Position: { x: [] as number[], y: [] as number[] }\n    }\n})\n\n// Shared entity index between worlds\nconst entityIndex = createEntityIndex()\nconst worldA = createWorld(entityIndex)\nconst worldB = createWorld(entityIndex)\n\n// Combined: custom context + shared entity index (any order)\ncreateWorld({ data: 1 }, entityIndex)\ncreateWorld(entityIndex, { data: 1 })\n\n// World utilities\nresetWorld(world)                    // Reset world state\ndeleteWorld(world)                   // Delete world and free resources\ngetAllEntities(world)                // Get all entities in world\ngetWorldComponents(world)            // Get all registered components"}]}}