thedivergentai/gd-agentic-skills

godot-platform-console

Expert blueprint for console platforms (PlayStation, Xbox, Nintendo Switch) covering controller-first UI, certification requirements (TRCs/TCRs), platform services (achievements, cloud saves), and performance compliance.

First seen Feb 10, 2026

Installation

$ npx skills add thedivergentai/gd-agentic-skills --skill godot-platform-console

Summary

  • Expert blueprint for console platforms (PlayStation, Xbox, Nintendo Switch) covering controller-first UI, certification requirements (TRCs/TCRs), platform services (achievements, cloud saves), and performance compliance.
  • Use when targeting console releases or implementing gamepad-only interfaces.
  • Keywords console, PlayStation, Xbox, Switch, TRC, TCR, certification, controller, gamepad, achievements.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from thedivergentai/gd-agentic-skills · top by installs.

npx skills add thedivergentai/gd-agentic-skills

Browse all from thedivergentai/gd-agentic-skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 678
License LICENSE
Default branch main
Open issues 0
Status Active

Skill metadata

Parsed from SKILL.md frontmatter.

Declared agents cursor

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 13,963 B
  • docs SUMMARY.md 432 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 200 installs

SKILL.md

Platform: Console

Controller-first design, certification compliance, and locked frame rates define console development.

NEVER Do

  • NEVER show a mouse cursor — Certification (TRC/TCR) failure. Hide with Input.setmousemode(Input.MOUSEMODEHIDDEN).
  • NEVER skip pausing on focus loss — Monitor NOTIFICATIONAPPLICATIONFOCUS_OUT and force a pause.
  • NEVER let a controller disconnect go unhandled — Force pause and show reconnect UI.
  • NEVER use an unlocked frame rate — Lock 30 or 60 FPS via Engine.max_fps and enable VSync.
  • NEVER forget D-Pad navigation — Analog-only menus fail accessibility/TRC. Support D-Pad for all menus.
  • NEVER hardcode button labels — Use GUID-based prompt mapping (controllerpromptmapper.gd), not "Press A".
  • NEVER exceed hardware memory limits — Profile RAM; Switch budgets are rigid.
  • NEVER assume Joypad 0 is always Player 1 — Query Input.getconnectedjoypads().
  • NEVER distribute console export templates or SDKs publicly — NDA-bound.
  • NEVER handle continuous analog sticks with boolean checks — Use getvector() / getaction_strength().
  • NEVER vibrate continuously without a disable option — Finite Input.startjoyvibration() + accessibility toggle.
  • NEVER expect OS window APIs on consolesDisplayServer.windowsetmode() is ignored/fails.
  • NEVER map UI to raw button indices — Use Project Input Map (uiaccept, uicancel, custom actions).
  • NEVER rely on NOTIFICATIONWMCLOSE_REQUEST for termination — Consoles suspend; handle focus/suspend paths.
  • NEVER query inputs without flushing when frame-perfectInput.flushbufferedevents() before critical checks.
  • NEVER use == / != on analog trigger axes — Use isequalapprox().
  • NEVER leave orphaned nodes across scene transitions — Strict RAM; queue_free() and break cycles.
  • NEVER write to res:// at runtime — Use user:// only.
  • NEVER save synchronously on the main thread — Offload; atomic .tmp then rename.

Available Scripts

MANDATORY: Read the appropriate script before implementing the corresponding pattern.

[certificationmanager.gd](scripts/certificationmanager.gd)

Expert TRC/TCR compliance (focus loss, controller disconnects).

[performancescalerfsr.gd](scripts/performancescalerfsr.gd)

Dynamic Resolution Scaling and FSR 2.2 management for console performance.

[serversideprojectile.gd](scripts/serversideprojectile.gd)

Direct RenderingServer/PhysicsServer bypass for high-frequency objects.

[asyncsavemanager.gd](scripts/asyncsavemanager.gd)

Atomic, corruption-resistant threaded save system.

[controllerpromptmapper.gd](scripts/controllerpromptmapper.gd)

GUID-based button prompt detection (PlayStation/Xbox/Switch).

[memorybudgetguard.gd](scripts/memorybudgetguard.gd)

Strict RAM monitoring for platform-specific hardware budgets.

[platformdialoginvoker.gd](scripts/platformdialoginvoker.gd)

Native OS dialog and virtual keyboard abstraction.

[backgrounddataprefetcher.gd](scripts/backgrounddataprefetcher.gd)

Asset pre-fetching using WorkerThreadPool to avoid level-load stutters.

[achievementofflinequeue.gd](scripts/achievementofflinequeue.gd)

Achievement/Trophy caching with offline persistence.

[consolebootconfig.gd](scripts/consolebootconfig.gd)

Hardware-aware hardware initialization and rendering overrides.


Certification Golden Path (MANDATORY scripts)

Run this checklist in order for a console-ready vertical slice. Do NOT Load optional scripts unless the row below says optional.

Step MANDATORY script Do NOT Load (unless needed)
1. Boot [consolebootconfig.gd](scripts/consolebootconfig.gd) [serversideprojectile.gd](scripts/serversideprojectile.gd) — RID bypass, not cert
2. Focus / disconnect [certificationmanager.gd](scripts/certificationmanager.gd)
3. Save atomicity [asyncsavemanager.gd](scripts/asyncsavemanager.gd)
4. FPS / scaler / RAM [performancescalerfsr.gd](scripts/performancescalerfsr.gd) + [memorybudgetguard.gd](scripts/memorybudgetguard.gd) Switch: set ramlimitmb3072 (retail) / warn at 3584; PS/Xbox: 4096–5120 per SKU — see script @export
5. Prompts [controllerpromptmapper.gd](scripts/controllerpromptmapper.gd)

Optional only: [achievementofflinequeue.gd](scripts/achievementofflinequeue.gd), [platformdialoginvoker.gd](scripts/platformdialoginvoker.gd), [backgrounddataprefetcher.gd](scripts/backgrounddataprefetcher.gd). Do NOT Load these during steps 1–5 unless achievements, system dialogs, or prefetch are in scope.

Input Handling (Input Map — not raw indices)

func _unhandled_input(event: InputEvent) -> void:
    if event.is_action_pressed("ui_accept"):
        on_confirm()
    elif event.is_action_pressed("ui_cancel"):
        on_cancel()
    # Prompts: MANDATORY controller_prompt_mapper.gd for face-button glyphs

Expert Techniques

TRC failure → fix (symptom → script → doc)

Symptom Fix script Doc
Mouse pointer visible in game UI Hide via Input Map flow + Input.MOUSEMODEHIDDEN in boot Custom mouse cursor
Game runs when dashboard/home pressed [certificationmanager.gd](scripts/certificationmanager.gd) focus-out pause Handling quit requests
"Press A" hardcoded on Switch [controllerpromptmapper.gd](scripts/controllerpromptmapper.gd) GUID glyphs Controllers, gamepads, and joysticks
Save corruption on power loss [asyncsavemanager.gd](scripts/asyncsavemanager.gd) .tmp rename Saving games
Frame time spikes / TRC perf fail [performancescalerfsr.gd](scripts/performancescalerfsr.gd) + RAM guard Resolution scaling

1. Platform-Overlay-Manager (Native UI Dialogs)

Prefer [platformdialoginvoker.gd](scripts/platformdialoginvoker.gd) / [platformoverlaymanager.gd](scripts/platformoverlaymanager.gd) / DisplayServer.dialog_show() for TRC system messages over custom modal stacks.

2. Shader-Binary-Caching (RenderingDevice)

Enable shader/pipeline cache on fixed console GPUs; see [consoleshadermanager.gd](scripts/consoleshadermanager.gd) and Official Docs pipeline compilation guidance in Reference.

3. Controller-Battery-Telemetry Hook

Use Input.joyconnectionchanged + Input.getjoyinfo() via [controllertelemetry.gd](scripts/controllertelemetry.gd); battery level often needs a platform GDExtension under NDA.

Deep dives (on demand)

  • Joypad snippets, native overlay dialogs, shader cache UUID, controller telemetry → [console-cert-patterns.md](references/console-cert-patterns.md)

Reference

Progressive disclosure: open Official Documentation links only when researching a specific API; load Related Skills when routing to a peer domain — do not preload the whole lattice.

Official Documentation

  • Controllers, gamepads, and joysticks — Joypad indexing, deadzones, getvector/getconnected_joypads, and why device 0 is never assumed Player 1 on consoles.
  • Controller number and vibration — Finite startjoy_vibration durations, connection signals, and haptic accessibility toggles required by TRC/TCR.
  • Using InputEvent — Event flow for InputEventJoypadButton/Motion, Input Map actions, and buffered flush before frame-critical checks.
  • Custom mouse cursor — Input.setmousemode / hidden cursor so a visible pointer does not fail console certification.
  • Handling quit requests — Focus-out / suspend paths versus NOTIFICATIONWMCLOSE_REQUEST, which consoles often never emit.
  • Keyboard, mouse, and controller UI navigation — Focus neighbors and D-Pad/gamepad UI traversal required when analog-only menus fail accessibility/TRC.
  • Resolution scaling — Viewport FSR2 / scaling3d_scale profiles used to hold locked 30/60 FPS on weak SKUs.
  • Saving games — user:// persistence, save indicators, and why res:// writes are invalid on exported console builds.
  • Background loading — Threaded ResourceLoader prefetch so slow console storage does not hitch level transitions.
  • Using multiple threads — WorkerThreadPool offload for atomic saves and prefetch without main-thread TCR frame spikes.
  • Feature tags — OS.hasfeature / export tags that gate console boot overrides (VSync, max FPS, low-end GI).
  • Reducing stutter from shader/pipeline compilations — Shader/pipeline caching on fixed console GPUs to avoid first-use hitch rejections.

Related Skills

Prerequisites

  • godot-project-foundations — Project layout, Input Map, and export/user paths before certification hooks and console boot overrides.
  • godot-input-handling — Joypad actions, deadzones, and device remapping that controller-first UI and prompt mappers build on.
  • godot-gdscript-mastery — Typed notifications, signals, and thread-safe call patterns used by compliance and async save managers.

Complements

Downstream / consumers

  • godot-platform-desktop — Dual-ship PC builds that must share Input Map/actions while keeping console mouse-hidden and FPS-locked paths.
  • godot-platform-mobile — Shared focus-loss / suspend pause patterns when the same title also targets handhelds.
  • godot-multiplayer-networking — Online matchmaking/friends hooks that sit beside achievement queues and platform overlays.
  • godot-genre-party — Multi-pad local play that consumes dynamic joypad slot discovery and prompt mapping.

Master

  • godot-master — Library router and mirrored module entry for cross-skill discovery.