A work-in-progress Switch emulator focused on native recompilation.

AI Agent Guide


An installable skill for AI coding agents. Once added, your agent knows the rules and checklist for creating .ndx mods for Nx86 without needing them spelled out each time.


Rules


Checklist

[ ] nxmod.toml exists at the archive root
[ ] [mod].id set: lowercase letters, digits, underscores only
[ ] [mod].version set
[ ] [target].title_id set to correct 16-character hex Title ID
[ ] [target].build_id set (required for ExeFS mods and cheats)
[ ] [cache].impact accurately reflects what the mod does
[ ] [content] fields match what is actually in the package
[ ] No keys, firmware, game dumps, or system blobs included
[ ] No shell scripts or host-executable files included
[ ] No native modules unless explicitly requested and declared
[ ] README.md included
[ ] LICENSE included
[ ] nxmod.toml is at the archive root, not a subdirectory
[ ] Package imports successfully through Nx86

Minimal nxmod.toml

[mod]
id = "my_mod"
name = "My Mod"
version = "1.0.0"
format = "ndx"
author = "Author Name"
description = "One-line description."
license = "Unknown"

[target]
title_id = "0100000000000000"

[content]
romfs = true

[cache]
impact = "runtime-only"