Ai#342
Open
dragonmantank wants to merge 4 commits into
Open
Conversation
conshus
reviewed
May 21, 2026
| await generateVSCodeConfig(tutorialName); | ||
|
|
||
| // 10. Generate README | ||
| const codespaceLink = `https://codespaces.new/${REPO_OWNER}/${REPO_NAME}?devcontainer_path=.devcontainer/${tutorialName}/devcontainer.json`; |
Contributor
There was a problem hiding this comment.
Suggested change
| const codespaceLink = `https://codespaces.new/${REPO_OWNER}/${REPO_NAME}?devcontainer_path=.devcontainer/${tutorialName}/devcontainer.json`; | |
| const codespaceLink = `https://codespaces.new/${REPO_OWNER}/${REPO_NAME}?devcontainer_path=.devcontainer/${tutorialName}/devcontainer.json`; | |
| const stackblitzLink = `https://stackblitz.com/github/${REPO_OWNER}/${REPO_NAME}/tree/main/sources/${tutorialName}`; |
conshus
reviewed
May 21, 2026
| ## 🛠️ Edit this Tutorial | ||
| Want to make changes to the lesson, add steps, or update starter files? | ||
| [](${stackblitzLink}) | ||
|
|
Contributor
There was a problem hiding this comment.
Suggested change
| [](${stackblitzLink}) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
A set of changes to help better facilitate a more automated process where we can potentially use AI to help with rough drafts for new tutorials.
This adds a few new NPM commands:
npm run create-tutorial- Starts an interactive session to create a new tutorial and configure some basic options like external repos, files to open, etc.npm run edit-tutorial- Initiates everything someone needs to edit a tutorial, like opening a VS Code window, starting the dev server, and opening their browser automatically.This also ships a new
AGENTS.mdfile that can help LLMS know how to quickly skeleton out a tutorial. For example, the following prompt can be used to generate the steps needed to create a tutorial to show how to send an SMS:This should create the correct files in the correct folder, and the output can be verified by a human.
Expected workflow
npm installnpm run create-tutorial -- redact_api-node-some_meangingful_nameYto open everything that's neededYou can then package and build the tutorial like before using the toolbar.