@kernel.chat/kbot 3.82.0 → 3.83.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2113,7 +2113,10 @@ function renderFrame() {
2113
2113
  if (world.ground === 'space' && animFrame % 12 === 0) {
2114
2114
  charState.renderParticles.push(...createParticleEmitter('aura', charState.robotX + 160, 280, 1));
2115
2115
  }
2116
- // AAA: Tick render particles
2116
+ // AAA: Tick render particles (cap at 150 to prevent performance issues)
2117
+ if (charState.renderParticles.length > 150) {
2118
+ charState.renderParticles = charState.renderParticles.slice(-150);
2119
+ }
2117
2120
  charState.renderParticles = tickRenderParticles(charState.renderParticles);
2118
2121
  // AAA: Tick growing plants
2119
2122
  tickGrowingPlants(charState.growingPlants);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kernel.chat/kbot",
3
- "version": "3.82.0",
3
+ "version": "3.83.0",
4
4
  "description": "Open-source terminal AI agent. 764+ tools, 35 agents, 20 providers. Dreams, learns, watches your system. Controls your phone. Fully local, fully sovereign. MIT.",
5
5
  "type": "module",
6
6
  "repository": {