> For the complete documentation index, see [llms.txt](https://devworkshops.gitbook.io/masteringvuejs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://devworkshops.gitbook.io/masteringvuejs/getting-started/challenges.md).

# Challenges

## RSS Feed App

* User is able to add a new RSS feed to the list
* User is able to edit an RSS feed
* User is able to remove RSS feeds from the list
* User clicks on the fetch button to load all the RSS posts and render it.
  * You can use this to get the RSS in JSON <https://rss2json.com>
  * Example: <https://api.rss2json.com/v1/api.json?rss_url=https%3A%2F%2Fpassos.com.au%2Frss%2F>
* Post list should be sorted by most recent and fields to display are:
  * Title with a link to the post
  * Which feed is coming from, ideally including the color
  * Summary
* User can disable an RSS feed which will automatically filter out all posts from the list
* **Gold Plating**: Color code each feed automatically

Note: The data does not need to be saved into a database<br>

## Trivia App

* There should be 20 questions in the question pool
* Only 1 item will be shown at a time (e.g.: Who wants to be a millionaire style show)
* Only 10 questions will be used, randomly picked from the question pool
* The user can only go forward, not backward
* At the end of the trivia, give a score to the user in “X out of 10” format
* Let the user start a new game without refreshing the page

Note: The data does not need to be saved into a database<br>


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://devworkshops.gitbook.io/masteringvuejs/getting-started/challenges.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
