Organise examples into folders, rewrite readme with natural flow and tailscale section

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Sanju Sivalingam
2026-02-14 20:28:22 +05:30
parent 8b9f0a4e6e
commit 71021f48dd
38 changed files with 132 additions and 15 deletions

View File

@@ -0,0 +1,15 @@
{
"name": "Instagram Engagement Check",
"steps": [
{
"app": "com.instagram.android",
"goal": "Tap the profile icon (bottom right) to go to my profile. Tap on the most recent post (first image in the grid). Use read_screen to collect the number of likes, comments, and the first few comments. Copy the engagement stats to clipboard.",
"maxSteps": 12
},
{
"app": "com.instagram.android",
"goal": "Check the notifications tab (heart icon at bottom). Use read_screen to collect recent notifications - new followers, likes, comments. Copy a summary to clipboard.",
"maxSteps": 10
}
]
}

View File

@@ -0,0 +1,15 @@
{
"name": "Social Media Engagement Round",
"steps": [
{
"app": "com.twitter.android",
"goal": "Open the home feed. Scroll through the first 5 posts. For each post, tap the like/heart button. If any post is from someone I follow and is interesting (tech, AI, startup related), also leave a short supportive reply using submit_message.",
"maxSteps": 30
},
{
"app": "com.linkedin.android",
"goal": "Open the home feed. Scroll through the first 5 posts. For each post, tap the Like button. If any post is from a connection and about tech/AI/startups, tap Comment and leave a short thoughtful comment using submit_message.",
"maxSteps": 30
}
]
}

View File

@@ -0,0 +1,21 @@
{
"name": "Cross-Platform Social Media Post",
"steps": [
{
"app": "com.twitter.android",
"goal": "Tap the compose/new tweet button (usually a + or feather icon). Type the post text and tap the 'Post' button to publish it.",
"maxSteps": 12,
"formData": {
"Post": "Just shipped a new feature! Building an AI agent that controls Android devices via ADB. The future of mobile automation is here. #AI #Android #Automation"
}
},
{
"app": "com.linkedin.android",
"goal": "Tap the post/create button (+ icon at bottom). Type the post text in the text area and tap 'Post' to publish.",
"maxSteps": 12,
"formData": {
"Post": "Excited to share: we just shipped a new feature for our AI-powered Android automation agent. It can now orchestrate multi-app workflows - think cross-app data transfer, automated testing, and more.\n\nThe tech: perception-reasoning-action loop using accessibility APIs + LLM decision making.\n\n#AI #AndroidDev #Automation #BuildInPublic"
}
}
]
}

View File

@@ -0,0 +1,15 @@
{
"name": "YouTube Save to Watch Later",
"steps": [
{
"app": "com.google.android.youtube",
"goal": "Search for 'Andrej Karpathy latest' in the search bar. From the results, find the most recent video (check upload dates). Long press on the video thumbnail and tap 'Save to Watch Later' or tap the three-dot menu on the first result and select 'Save to Watch later'.",
"maxSteps": 15
},
{
"app": "com.google.android.youtube",
"goal": "Go back to search results. Search for 'Lex Fridman latest podcast'. Find the most recent upload and save it to Watch Later using the three-dot menu.",
"maxSteps": 15
}
]
}