Update android-cli skill#97
Conversation
JoseAlcerreca
commented
Jul 1, 2026
- Remove brand name "antigravity" when referring to agent skills.
- Fix parameters in the adb shell input swipe command example to include all required coordinates and duration.
- Remove brand name "antigravity" when referring to agent skills. - Fix parameters in the adb shell input swipe command example to include all required coordinates and duration.
There was a problem hiding this comment.
Code Review
This pull request updates the Android CLI documentation, renaming "antigravity agent skills" to "agent skills" and correcting an adb swipe command example. Feedback on the swipe command points out that the proposed coordinates would scroll the list up instead of down, and provides a suggestion to correct the swipe direction.
Important
The consumer version of Gemini Code Assist on GitHub is being sunset. Starting June 18, 2026, new organization installations will be blocked, and all code review activity will officially cease on July 17, 2026.
For more details on the timeline and next steps, please review the Help Documentation.
| } | ||
| ``` | ||
| To scroll down on this list, you would execute `adb shell input swipe 250 400 600 500`. This swipes from the center to the bottom over 500ms. | ||
| To scroll down on this list, you would execute `adb shell input swipe 250 400 250 600 500`. This swipes from the center to the bottom over 500ms. |
There was a problem hiding this comment.
Swiping from the center (250, 400) to the bottom (250, 600) moves the finger downwards, which actually scrolls the list up (revealing content above). To scroll down (revealing content below), the swipe gesture needs to move upwards from the center to the top (250, 200).
| To scroll down on this list, you would execute `adb shell input swipe 250 400 250 600 500`. This swipes from the center to the bottom over 500ms. | |
| To scroll down on this list, you would execute `adb shell input swipe 250 400 250 200 500`. This swipes from the center to the top over 500ms. |