[
  { "command": "quitHabit", "variant": "legacy-string", "envelope": { "type": "quitHabit", "message": "smoking" }, "setup": "smoking-habit" },
  { "command": "quitHabit", "variant": "object-habitId", "envelope": { "type": "quitHabit", "message": { "habitId": "smoking" } }, "setup": "smoking-habit" },
  { "command": "quitHabit", "variant": "object-habit", "envelope": { "type": "quitHabit", "message": { "habit": "smoking" } }, "setup": "smoking-habit" },
  { "command": "stopQuitHabit", "variant": "legacy-string", "envelope": { "type": "stopQuitHabit", "message": "smoking" }, "setup": "quitting-habit" },
  { "command": "applyForJob", "variant": "legacy-string", "envelope": { "type": "applyForJob", "message": "cashier" }, "setup": "adult-player", "invokeHandler": false },
  { "command": "applyForJob", "variant": "object-jobId", "envelope": { "type": "applyForJob", "message": { "jobId": "cashier" } }, "setup": "adult-player", "invokeHandler": false },
  { "command": "quitJob", "variant": "object-jobId", "envelope": { "type": "quitJob", "message": { "jobId": "cashier" } }, "setup": "adult-player", "invokeHandler": false },
  { "command": "purchaseItem", "variant": "legacy-string", "envelope": { "type": "purchaseItem", "message": "PLACEHOLDER_ITEM" }, "setup": "store-item", "invokeHandler": false },
  { "command": "purchaseItem", "variant": "object-itemId", "envelope": { "type": "purchaseItem", "message": { "itemId": "PLACEHOLDER_ITEM" } }, "setup": "store-item", "invokeHandler": false },
  { "command": "retrievePerson", "variant": "legacy-string", "envelope": { "type": "retrievePerson", "message": "npc-1" }, "setup": "default" },
  { "command": "retrievePerson", "variant": "object-personId", "envelope": { "type": "retrievePerson", "message": { "personId": "npc-1" } }, "setup": "default" },
  { "command": "applyForExtracurricular", "variant": "legacy-string", "envelope": { "type": "applyForExtracurricular", "message": "PLACEHOLDER_ACTIVITY" }, "setup": "extracurricular-id", "invokeHandler": false },
  { "command": "applyForExtracurricular", "variant": "object-activityId", "envelope": { "type": "applyForExtracurricular", "message": { "activityId": "PLACEHOLDER_ACTIVITY" } }, "setup": "extracurricular-id", "invokeHandler": false },
  { "command": "quitExtracurricular", "variant": "object-activityId", "envelope": { "type": "quitExtracurricular", "message": { "activityId": "PLACEHOLDER_ACTIVITY" } }, "setup": "extracurricular-id", "invokeHandler": false },
  { "command": "focusUpdate", "variant": "object", "envelope": { "type": "focusUpdate", "message": { "activityId": "PLACEHOLDER_ACTIVITY", "newFocus": "1" } }, "setup": "extracurricular-id", "invokeHandler": false },
  { "command": "performActivity", "variant": "legacy-string", "envelope": { "type": "performActivity", "message": "study" }, "setup": "adult-player", "invokeHandler": false },
  { "command": "performActivity", "variant": "object-activityId", "envelope": { "type": "performActivity", "message": { "activityId": "study" } }, "setup": "adult-player", "invokeHandler": false },
  { "command": "performActivity", "variant": "object-override", "envelope": { "type": "performActivity", "message": { "activityId": "hobby", "override": true } }, "setup": "adult-player", "invokeHandler": false },
  { "command": "partnerGift", "variant": "legacy-string", "envelope": { "type": "partnerGift", "message": "npc-1" }, "setup": "default", "invokeHandler": false },
  { "command": "partnerGift", "variant": "object-partnerId", "envelope": { "type": "partnerGift", "message": { "partnerId": "npc-1" } }, "setup": "default", "invokeHandler": false },
  { "command": "romance", "variant": "object-partnerId", "envelope": { "type": "romance", "message": { "partnerId": "npc-1" } }, "setup": "default", "invokeHandler": false },
  { "command": "breakUp", "variant": "object-partnerId", "envelope": { "type": "breakUp", "message": { "partnerId": "npc-1" } }, "setup": "default", "invokeHandler": false },
  { "command": "divorce", "variant": "object-partnerId", "envelope": { "type": "divorce", "message": { "partnerId": "npc-1" } }, "setup": "default", "invokeHandler": false },
  { "command": "propose", "variant": "object-partnerId", "envelope": { "type": "propose", "message": { "partnerId": "npc-1" } }, "setup": "default", "invokeHandler": false },
  { "command": "marry", "variant": "object-partnerId", "envelope": { "type": "marry", "message": { "partnerId": "npc-1" } }, "setup": "default", "invokeHandler": false },
  { "command": "debugSetup", "variant": "object-preset", "envelope": { "type": "debugSetup", "message": { "preset": "teen" } }, "setup": "default", "invokeHandler": false },
  { "command": "deviceToken", "variant": "legacy-string", "envelope": { "type": "deviceToken", "message": "apns-token-123" }, "setup": "default" },
  { "command": "deviceToken", "variant": "object-token", "envelope": { "type": "deviceToken", "message": { "token": "apns-token-456" } }, "setup": "default" },
  { "command": "start", "variant": "command-alias", "envelope": { "type": "command", "message": "start" }, "setup": "default" },
  { "command": "stop", "variant": "command-alias", "envelope": { "type": "command", "message": "stop" }, "setup": "default", "invokeHandler": false },
  { "command": "restart", "variant": "command-alias", "envelope": { "type": "command", "message": "restart" }, "setup": "default", "invokeHandler": false },
  { "command": "startNewLife", "variant": "type-only", "envelope": { "type": "startNewLife" }, "setup": "default", "invokeHandler": false },
  { "command": "startNewLife", "variant": "object-mode", "envelope": { "type": "startNewLife", "message": { "mode": "heir" } }, "setup": "default", "invokeHandler": false },
  { "command": "speed", "variant": "number", "envelope": { "type": "speed", "message": 500 }, "setup": "default", "invokeHandler": false },
  { "command": "resetSpeed", "variant": "empty", "envelope": { "type": "resetSpeed" }, "setup": "default", "invokeHandler": false },
  { "command": "eventResponse", "variant": "canonical", "envelope": { "type": "eventResponse", "message": { "eventId": "evt-1", "choiceId": "choice-a" } }, "setup": "default", "invokeHandler": false },
  { "command": "questionEvent", "variant": "canonical", "envelope": { "type": "questionEvent", "message": { "id": "q-1", "response": "yes" } }, "setup": "default", "invokeHandler": false },
  { "command": "characterSetup", "variant": "canonical", "envelope": { "type": "characterSetup", "message": { "name": "Alex", "age": 18, "sex": "Female" } }, "setup": "default", "invokeHandler": false },
  { "command": "liveActivityToken", "variant": "canonical", "envelope": { "type": "liveActivityToken", "message": { "token": "la-token" } }, "setup": "default", "invokeHandler": false },
  { "command": "liveActivityEnded", "variant": "empty-object", "envelope": { "type": "liveActivityEnded", "message": {} }, "setup": "default", "invokeHandler": false },
  { "command": "getExtraCurriculars", "variant": "empty-string", "envelope": { "type": "getExtraCurriculars", "message": "" }, "setup": "default" },
  { "command": "conversation", "variant": "init-chat", "envelope": { "type": "conversation", "message": { "characterID": "npc-1", "conversationEvent": "init", "cType": "chat" } }, "setup": "default", "invokeHandler": false },
  { "command": "markConversationAsRead", "variant": "object", "envelope": { "type": "markConversationAsRead", "message": { "conversationId": "conv-1" } }, "setup": "default", "invokeHandler": false },
  { "command": "purchaseInAppItem", "variant": "object", "envelope": { "type": "purchaseInAppItem", "message": { "productId": "diamond1" } }, "setup": "default", "invokeHandler": false },
  { "command": "purchaseEnergyRefill", "variant": "object", "envelope": { "type": "purchaseEnergyRefill", "message": { "refillType": "small" } }, "setup": "default", "invokeHandler": false },
  { "command": "purchaseTimeSkip", "variant": "object", "envelope": { "type": "purchaseTimeSkip", "message": { "skipType": "hour" } }, "setup": "default", "invokeHandler": false },
  { "command": "getEnergyRefillTiers", "variant": "type-only", "envelope": { "type": "getEnergyRefillTiers" }, "setup": "default" },
  { "command": "getTimeSkipTiers", "variant": "type-only", "envelope": { "type": "getTimeSkipTiers" }, "setup": "default" },
  { "command": "getAchievements", "variant": "type-only", "envelope": { "type": "getAchievements" }, "setup": "default" },
  { "command": "acknowledgeAchievement", "variant": "object", "envelope": { "type": "acknowledgeAchievement", "message": { "achievementId": "first-week" } }, "setup": "default", "invokeHandler": false },
  { "command": "getDailyRewards", "variant": "type-only", "envelope": { "type": "getDailyRewards" }, "setup": "default" },
  { "command": "claimDailyReward", "variant": "object", "envelope": { "type": "claimDailyReward", "message": { "day": 1 } }, "setup": "default", "invokeHandler": false },
  { "command": "getDailyRewardState", "variant": "type-only", "envelope": { "type": "getDailyRewardState" }, "setup": "default", "invokeHandler": false },
  { "command": "getDailyQuests", "variant": "type-only", "envelope": { "type": "getDailyQuests" }, "setup": "default" },
  { "command": "claimQuestReward", "variant": "object", "envelope": { "type": "claimQuestReward", "message": { "questId": "quest-1" } }, "setup": "default", "invokeHandler": false },
  { "command": "claimEvent", "variant": "object", "envelope": { "type": "claimEvent", "message": { "eventId": "evt-1", "timestamp": "2026-01-01T00:00:00Z" } }, "setup": "default", "invokeHandler": false },
  { "command": "tutorialStepComplete", "variant": "object", "envelope": { "type": "tutorialStepComplete", "message": { "step": 1 } }, "setup": "default" },
  { "command": "completeOnboarding", "variant": "empty", "envelope": { "type": "completeOnboarding", "message": {} }, "setup": "default" },
  { "command": "tooltipSeen", "variant": "object", "envelope": { "type": "tooltipSeen", "message": { "tooltipId": "welcome" } }, "setup": "default", "invokeHandler": false },
  { "command": "debugGrant", "variant": "object", "envelope": { "type": "debugGrant", "message": { "energy": 5, "mode": "add" } }, "setup": "default", "invokeHandler": false },
  { "command": "dateNight", "variant": "object", "envelope": { "type": "dateNight", "message": { "ideaName": "Coffee" } }, "setup": "default", "invokeHandler": false },
  { "command": "relationshipEventResponse", "variant": "top-level", "envelope": { "type": "relationshipEventResponse", "eventId": "evt-1", "choiceId": "choice-a" }, "setup": "default", "invokeHandler": false },
  { "command": "dateMiniGameResponse", "variant": "object", "envelope": { "type": "dateMiniGameResponse", "message": { "gameId": "g-1", "round": 1, "responseId": "r-1" } }, "setup": "default", "invokeHandler": false },
  { "command": "startDate", "variant": "object", "envelope": { "type": "startDate", "message": { "activityId": "coffee", "partnerId": "npc-1" } }, "setup": "default", "invokeHandler": false },
  { "command": "getDateIdeas", "variant": "type-only", "envelope": { "type": "getDateIdeas" }, "setup": "default" },
  { "command": "getSwipeCharacter", "variant": "string-filter", "envelope": { "type": "getSwipeCharacter", "message": "Female" }, "setup": "default", "invokeHandler": false },
  { "command": "swipeMatch", "variant": "legacy-string", "envelope": { "type": "swipeMatch", "message": "npc-1" }, "setup": "default", "invokeHandler": false },
  { "command": "exportData", "variant": "top-level", "envelope": { "type": "exportData", "userId": "user-1" }, "setup": "default", "invokeHandler": false },
  { "command": "deleteAccount", "variant": "canonical", "envelope": { "type": "deleteAccount", "message": { "confirmation": "DELETE" } }, "setup": "default" },
  { "command": "cancelAccountDeletion", "variant": "type-only", "envelope": { "type": "cancelAccountDeletion" }, "setup": "default" },
  { "command": "getPlayerStatistics", "variant": "empty", "envelope": { "type": "getPlayerStatistics", "message": {} }, "setup": "default", "invokeHandler": false },
  { "command": "setSpendingHabits", "variant": "object-habit", "envelope": { "type": "setSpendingHabits", "message": { "habit": "frugal" } }, "setup": "default", "invokeHandler": false },
  { "command": "retire", "variant": "type-only", "envelope": { "type": "retire" }, "setup": "default", "invokeHandler": false }
]
