From ca40b25b681450ca514349d0dec57071042045bb Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 6 Aug 2026 21:13:47 +0000 Subject: [PATCH 1/2] docs(agents): correct input capability list in AGENTS.md src/input/ has keyboard, mouse, and gamepad input sources, not touch. Also audited the rest of the Project Overview list against /src; the other bullets (ECS, rendering, physics, audio, animations, particles, asset loading, FSM) already match the implementation, and no other file duplicates the touch claim. Fixes #582 --- AGENTS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AGENTS.md b/AGENTS.md index 310d2049..828be002 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -28,7 +28,7 @@ Forge is a browser-based, code-only game engine built with TypeScript. It provid - **Physics**: Native 2D physics engine (rigid bodies, collision detection/resolution, gravity) - **Audio**: Sound management via Howler.js - **Animations**: Robust animation system -- **Input**: Keyboard, mouse, and touch input handling +- **Input**: Keyboard, mouse, and gamepad input handling - **Particles**: Particle system - **Asset Loading**: Resource management - **FSM**: Finite state machine implementation From 6d20f2a2d793d9452c2c15bfd57567cc16c02008 Mon Sep 17 00:00:00 2001 From: Claude Date: Fri, 7 Aug 2026 07:22:53 +0000 Subject: [PATCH 2/2] ci: retrigger CI after GitHub Actions incident The Aug 7 2026 GitHub Actions incident (ARC runner pods stuck idle) dropped this branch's push/pull_request-triggering events, so the required CI workflow never ran on this PR. Empty commit to retrigger it.