# Your task
* **intent**: 'Navigate to the Books subreddit, identify the newest post, and upvote it.
* **start url**: Reddit home page

1.	Navigate to the Books subreddit on Reddit.
    o	inputs: {"subreddit_name": "Books"}
    o	outputs: None
    o	checkpoint: Confirm you are on the Books subreddit page.
2.	Identify the newest post in the Books subreddit.
    o	inputs: None
    o	outputs: {"newest_post_title": ?, "newest_post_id": ?}
    o	checkpoint: Confirm that the identified post is the newest one.
3.	Upvote the newest post in the Books subreddit.
    o	inputs: {"newest_post_id": ?}
    o	outputs: None
    o	checkpoint: Verify that the post has been successfully upvoted.



# Your task
* **intent**: 'Tell me the count of comments that have received more downvotes than upvotes for the user who made the latest post on the Showerthoughts forum.
* **start url**: Reddit home page
 
1.	Navigate to the Showerthoughts forum on Reddit.
    o	inputs: None
    o	outputs: None
    o	checkpoint: Confirm you are on the Showerthoughts forum page.
2.	Identify the latest post in the Showerthoughts forum.
    o	inputs: None
    o	outputs: {"latest_post_author": ?}
    o	checkpoint: Confirm you have identified the author of the latest post.
3.	Search for all comments made by the identified user of the latest post.
    o	inputs: {"username": ?}
    o	outputs: {"user_comments": [{"comment_id": ?, "upvotes": ?, "downvotes": ?}, ...]}
    o	checkpoint: Confirm you have retrieved all comments made by the user.
4.	Count the comments that have received more downvotes than upvotes.
    o	inputs: {"user_comments": [...]}
    o	outputs: {"comments_with_more_downvotes": ?}
    o	checkpoint: Confirm the count of comments that have more downvotes than upvotes.
5.	ANSWER: "comments_with_more_downvotes"



# Your task
* **intent**: 'How long does it take to walk from Carnegie Mellon University to starbucks on Craig Street?'
* **start url**: Maps home page


1.	Locate the directions feature in the Maps application.
    o	inputs: None
    o	outputs: None
    o	checkpoint: Confirm you have accessed the directions feature.
2.	Set the starting point as Carnegie Mellon University.
    o	inputs: {"from": "Carnegie Mellon University"}
    o	outputs: None
    o	checkpoint: Confirm that the starting point is set correctly.
3.	Set the destination as Starbucks on Craig Street.
    o	inputs: {"to": "Starbucks on Craig Street"}
    o	outputs: None
    o	checkpoint: Confirm that the destination is set correctly.
4.	Retrieve the walking directions and estimated time of travel.
    o	inputs: None
    o	outputs: {"travel_time": ?}
    o	checkpoint: Confirm that the travel time has been successfully retrieved.
5.	ANSWER: "travel_time"



# Your task
* **intent**: 'Get the total payment amount of the last 2 completed orders'
* **start url**: Shopping Administration home page

 1.	Navigate to the order management section in the Shopping Administration application.
    o	inputs: None
    o	outputs: None
    o	checkpoint: Confirm you are in the order management section.
2.	Identify the last 2 completed orders from the order management section.
    o	inputs: None
    o	outputs: {"completed_orders": [{"order_id": ?, "order_status": ?}, {"order_id": ?, "order_status": ?}]}
    o	checkpoint: Confirm that both identified orders are marked as complete.
3.	Retrieve the total payment amounts for each of the last 2 completed orders.
    o	inputs: {"completed_orders": [{"order_id": ?}, {"order_id": ?}]}
    o	outputs: {"total_payments": [{"order_id": ?, "total_amount": ?}, {"order_id": ?, "total_amount": ?}]}
    o	checkpoint: Confirm that you have retrieved the total payment amounts for both orders.
4.	Calculate the total payment amount of the last 2 completed orders.
    o	inputs: {"total_payments": [{"total_amount": ?}, {"total_amount": ?}]}
    o	outputs: {"total_payment_amount": ?}
    o	checkpoint: Confirm that the total payment amount has been calculated.
5.	ANSWER: "total_payment_amount $"


# Your task
* **intent**: 'Given the following locations, ['Carnegie Mellon University', 'apple store shadyside', 'starbucks on craig street'], what would be the optimal route to travel through them all in order to minimize total travel time? Please note the journey begins at the first place listed.
'
* **start url**: Maps home page

# Your task
* **intent**: 'How much I spent on food-related shopping during March 2023'
* **start url**: Shopping home page

# Your task
* **intent**: 'Buy the best rating product from "Men's shoe" category with at least 5 reviews and the product is least expensive
'
* **start url**: Shopping home page

# Your task
* **intent**: 'Follow ['Jakub Klinkovsk', 'convexegg', 'Vinta Chen', 'yjlou', 'Abishek S'] on Gitlab'
* **start url**: Gitlab home page

# Your task
* **intent**: 'create a repository named Awesome_DIY_ideas that includes a README file with the links to the most active 6 DIY ideas on DIY subreddit?
'
* **start url**: Gitlab home page
 