carmoji 0.3.16 → 0.3.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/carmoji.js +28 -1
- package/package.json +1 -1
package/carmoji.js
CHANGED
|
@@ -790,6 +790,19 @@ const TEST_EVENTS = {
|
|
|
790
790
|
error: { event: 'error' },
|
|
791
791
|
permission: { event: 'permission' },
|
|
792
792
|
end: { event: 'session_end' },
|
|
793
|
+
gamepad: { event: 'standby_activity', activity: 'gamepad' },
|
|
794
|
+
tinkering: { event: 'standby_activity', activity: 'tinkering' },
|
|
795
|
+
wheel: { event: 'standby_activity', activity: 'wheel' },
|
|
796
|
+
puzzle: { event: 'standby_activity', activity: 'puzzle' },
|
|
797
|
+
plant: { event: 'standby_activity', activity: 'plant' },
|
|
798
|
+
blocks: { event: 'standby_activity', activity: 'blocks' },
|
|
799
|
+
plane: { event: 'standby_activity', activity: 'plane' },
|
|
800
|
+
yarn: { event: 'standby_activity', activity: 'yarn' },
|
|
801
|
+
sketch: { event: 'standby_activity', activity: 'sketch' },
|
|
802
|
+
bubbles: { event: 'standby_activity', activity: 'bubbles' },
|
|
803
|
+
snack: { event: 'standby_activity', activity: 'snack' },
|
|
804
|
+
phone: { event: 'standby_activity', activity: 'phone' },
|
|
805
|
+
piano: { event: 'standby_activity', activity: 'piano' },
|
|
793
806
|
};
|
|
794
807
|
|
|
795
808
|
/** Copy `path` to `path.bak` before modifying it; returns the backup path. */
|
|
@@ -1946,7 +1959,8 @@ Try it:
|
|
|
1946
1959
|
console.log(`carmoji test <event> [session] [tokens] [project]
|
|
1947
1960
|
|
|
1948
1961
|
Sends a fake event to every paired phone so you can watch the reactions
|
|
1949
|
-
without a coding agent.
|
|
1962
|
+
without a coding agent. Leisure activities appear in StandBy, stopped Drive,
|
|
1963
|
+
or idle Code Buddy; if one is already playing, the request plays next.
|
|
1950
1964
|
|
|
1951
1965
|
start wakes up, excited (session_start)
|
|
1952
1966
|
prompt perks up and listens (prompt)
|
|
@@ -1958,6 +1972,19 @@ without a coding agent.
|
|
|
1958
1972
|
error dizzy comic collapse (error)
|
|
1959
1973
|
permission pleading + floating "?" (permission)
|
|
1960
1974
|
end contented sigh (session_end)
|
|
1975
|
+
gamepad leisure gamepad activity
|
|
1976
|
+
tinkering leisure terminal-tinkering activity
|
|
1977
|
+
wheel steering-wheel preview (never chosen at random)
|
|
1978
|
+
puzzle leisure puzzle cube activity
|
|
1979
|
+
plant leisure plant-care activity
|
|
1980
|
+
blocks leisure building-block activity
|
|
1981
|
+
plane leisure paper-plane activity
|
|
1982
|
+
yarn leisure yarn-ball activity
|
|
1983
|
+
sketch leisure sketch-pad activity
|
|
1984
|
+
bubbles leisure bubble-wand activity
|
|
1985
|
+
snack leisure snack-time activity
|
|
1986
|
+
phone leisure pear-phone activity
|
|
1987
|
+
piano leisure piano activity
|
|
1961
1988
|
approval pops the Allow/Deny card, waits ${APPROVAL_WAIT_MS / 1000}s, prints your tap
|
|
1962
1989
|
question pops an option-picker card, waits ${APPROVAL_WAIT_MS / 1000}s, prints your pick
|
|
1963
1990
|
|
package/package.json
CHANGED