Skip to content
MyoWiki Myotus · 1.20.1

Commands

Myotus uses an annotation-driven command system with the root literal:

/myotus

Prints the currently active optional integrations to the command source.

This subcommand is backed by LoadTestCommand in both inspected lines and is useful for:

  • confirming that expected optional mods are loaded
  • checking which integration branches Myotus considers active at runtime
  • debugging pack or dev-instance compatibility

The command output is a practical view into the runtime state exposed by IModIntegrationManager. If an integration is registered but not active, it will not appear in the active list.

The command tree is assembled by reflection over classes annotated with:

  • @MyoCommand
  • @MyoExecute
  • @MyoArgument

That matters when you extend the system and want your new commands to follow the same registration model.