From 07d4506c337642b0922415dfbe3906979a5aa6ab Mon Sep 17 00:00:00 2001 From: Ademola Arigbabuwo <49918815+AdemolaAri@users.noreply.github.com> Date: Mon, 29 Sep 2025 16:21:38 -0500 Subject: [PATCH] add new prompt to get all available tutorials (#4802) Signed-off-by: AdemolaAri --- .../prompts/get-all-available-tutorials.json | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 documentation/src/pages/prompt-library/data/prompts/get-all-available-tutorials.json diff --git a/documentation/src/pages/prompt-library/data/prompts/get-all-available-tutorials.json b/documentation/src/pages/prompt-library/data/prompts/get-all-available-tutorials.json new file mode 100644 index 00000000..0bd7562f --- /dev/null +++ b/documentation/src/pages/prompt-library/data/prompts/get-all-available-tutorials.json @@ -0,0 +1,19 @@ +{ + "id" : "get-all-available-tutorials", + "title" : "Get All Available Tutorials", + "description" : "Retrieve a list of all tutorials that are currently available in Goose", + "category" : "productivity", + "job" : "engineering", + "example_prompt" : "What type of tutorials are available for me to learn with goose?", + "example_result" : "Goose offers two tutorials to help you learn:\n1. **Building an Extension with MCP (Model Context Protocol)**: This tutorial guides you through creating an extension for Goose using one of the available SDKs (Python, TypeScript, or Kotlin). You'll learn how to set up a server, implement resources, and create tools that the AI agent can use.\n2. **Building Your First Game**: This tutorial provides a framework for building a simple game. The default suggestion is a Flappy Bird clone using Python and Pygame, but it can be adapted based on your preferences and experience. You'll cover environment setup, project structure, the core game loop, and game mechanics.\nWhich tutorial would you like to start with, or would you like more information about one of them?", + "extensions": [ + { + "name": "Tutorial", + "command": "tutorial", + "is_builtin": true, + "environmentVariables": [ + + ] + } + ] +}