
Use this page when you want Codex, ChatGPT, Claude, or another coding agent to stay on the public AuraJS surface instead of wandering into stale internal notes.
That keeps the search space small and reduces the chance of mixing 2D, 3D, multiplayer, and optional-module behavior.
Use these public inputs first:
https://www.aurajs.gg/docshttps://www.aurajs.gg/docs/start-herehttps://www.aurajs.gg/docs/starter-utils-referencehttps://www.aurajs.gg/docs/packs-and-bundleshttps://www.aurajs.gg/docs/where-does-this-code-livehttps://www.aurajs.gg/llm.txthttps://www.aurajs.gg/llms.txthttps://www.aurajs.gg/aurajs-public-api-schema-v1.jsonhttps://www.aurajs.gg/docs/referenceInside your codebase:
cd <your-codebase>
npx -y skills add Aura-Industry/auramaxx
Then point the agent at:
https://www.aurajs.gg/docshttps://www.aurajs.gg/docs/start-hereFor most tasks, give the agent only these surfaces:
auramaxx explain --json from the current projectauramaxx check --json from the current projectInside a real AuraJS project, the fastest AI-friendly retrieval surfaces are:
auramaxx explain --json
auramaxx check --json
auramaxx vendor helpers --json
auramaxx replay run replay.json --compact
auramaxx evidence --replay replay.json --compact
Read these fields before searching the repo:
sourceBoundary: which authored roots are valid import territorystarterUtils: whether the scaffold-local helper lane exists and which local modules it exposesaiGuidance: the current paved-road lane, preferred import path, module picks, and example pathspacks: optional packs and bundles already selected for the projectsurfaceDrift: machine-readable reason codes for boundary status, local helper availability, and starter-lane alignmentInside packs.selected, pay attention to:
ownershipMode: package-selection means the pack is selected but still
package-owned, while vendored-game-content means the project now owns the
copied payloadvendoredPaths: the exact project roots an agent should edit when the pack
has been vendoredinstallMode and sourceMode: whether the pack came from npm, workspace,
or another supported vendor sourceThat keeps the agent grounded in the current project instead of historical repo context.
When ownershipMode is vendored-game-content, prefer editing those
vendoredPaths directly instead of wandering back into the source pack package
or workspace catalog copy.
Use replay and evidence when you want the agent to diagnose a gameplay bug with artifacts instead of prose:
auramaxx replay run gives the agent a deterministic replay report with seed,
input steps, checkpoints, and divergence outputauramaxx evidence --replay ... writes one bundle with summary.json,
state.json, inspect.json, perf.json, replay.json, and
replay-report.jsonauramaxx vendor helpers --json lets the agent seed or resync
src/starter-utils/ without guessing which helper files belong thereAvoid sending the agent into internal docs, archive docs, or old task reports unless you explicitly want historical context.