一键导入
aabb-collision-testing
Guide for evaluating AABB collision logic on a live development server using browser tools.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Guide for evaluating AABB collision logic on a live development server using browser tools.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | aabb-collision-testing |
| description | Guide for evaluating AABB collision logic on a live development server using browser tools. |
| category | game-development |
| summary | Provide a repeatable procedure to test AABB collision detection. |
Provide a reliable, repeatable procedure to test Axis-Aligned Bounding Box (AABB) collision detection in a local game server environment.
http://localhost:8080).window.game object with player1 and player2 instances matching the combat module API.npm start # or the appropriate launch command for the project
http://localhost:8080 in a browser.browser_navigate tool.checkHit:
(async () => {
const p1 = window.game.player1;
const p2 = window.game.player2;
p1.x = 400;
p2.x = 420;
p1.facing = 'RIGHT';
p1.initiateAttack();
p1.combatPhase = 'ACTIVE';
const { checkHit } = await import('./src/js/combat.js');
return checkHit(p1, p2);
})()
browser_console and verify the result is true or false as expected.ERR_CONNECTION_REFUSED. Ensure the correct start command and port.window.game: Some builds may not expose the game object; adjust the page or enable a debug flag.references/aabb-testing-notes.md – detailed troubleshooting log and example outputs.Run automated WCAG 2.1 AA accessibility audits against local dev servers using Lighthouse CLI and axe-core. Parse JSON reports, identify contrast/label/semantic violations, and output structured remediation with exact code fixes.
Generate images, video, and audio with ComfyUI — install, launch, manage nodes/models, run workflows with parameter injection. Uses the official comfy-cli for lifecycle and direct REST/WebSocket API for execution.
Hermes Kanban multi-agent orchestration — task lifecycle, decomposition playbook, worker pitfalls, Codex lane isolation, and board operations.
Firecrawl gives AI agents and apps fast, reliable web context with strong search, scraping, and interaction tools. One install command sets up three skill segments: live CLI tools, app-integration build skills, and outcome-focused workflow skills. Route the reader to the right usage path after install.
Workflow for building 2D Canvas game components using class-based architecture and Test-Driven Development (TDD).
GitHub operations via gh CLI and REST API: auth, repos, PRs, issues, code review, codebase inspection.