Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR reorganizes the documentation by moving slash commands content from the Recipes section into a standalone topic under Context Engineering. The change makes slash commands more discoverable as a general context engineering technique rather than being buried within recipe documentation.
- Creates a new dedicated page for custom slash commands in the Context Engineering section
- Updates all internal links to point to the new location
- Adds navigation cards to both Recipes and Context Engineering index pages
Reviewed changes
Copilot reviewed 7 out of 7 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
documentation/docs/guides/context-engineering/slash-commands.md |
New standalone documentation page for custom slash commands with setup instructions, usage examples, and limitations |
documentation/docs/guides/context-engineering/index.mdx |
Adds navigation card linking to the new slash commands topic |
documentation/docs/guides/recipes/index.mdx |
Adds navigation card linking to the new slash commands topic (cross-reference from Recipes) |
documentation/docs/guides/recipes/session-recipes.md |
Removes the "Custom Recipe Commands" section and updates "Use Recipes" section to link to new location |
documentation/docs/guides/config-files.md |
Updates link to slash commands documentation |
documentation/docs/guides/goose-cli-commands.md |
Updates link to slash commands documentation |
documentation/docs/tutorials/rpi.md |
Updates link to slash commands documentation |
Contributor
|
angiejones
reviewed
Jan 5, 2026
documentation/docs/guides/context-engineering/slash-commands.md
Outdated
Show resolved
Hide resolved
angiejones
reviewed
Jan 5, 2026
documentation/docs/guides/context-engineering/slash-commands.md
Outdated
Show resolved
Hide resolved
angiejones
reviewed
Jan 5, 2026
documentation/docs/guides/context-engineering/slash-commands.md
Outdated
Show resolved
Hide resolved
angiejones
reviewed
Jan 5, 2026
documentation/docs/guides/context-engineering/slash-commands.md
Outdated
Show resolved
Hide resolved
angiejones
reviewed
Jan 5, 2026
angiejones
reviewed
Jan 5, 2026
angiejones
reviewed
Jan 5, 2026
angiejones
requested changes
Jan 5, 2026
Collaborator
angiejones
left a comment
There was a problem hiding this comment.
couple of small comments
Co-authored-by: Angie Jones <jones.angie@gmail.com>
Co-authored-by: Angie Jones <jones.angie@gmail.com>
Co-authored-by: Angie Jones <jones.angie@gmail.com>
| import TabItem from '@theme/TabItem'; | ||
| import { PanelLeft, Terminal } from 'lucide-react'; | ||
|
|
||
| Custom slash commands are personalized shortcuts to run [recipes](/docs/guides/recipes). Given you have a recipe that runs a daily report, you can create a custom slash command to invoke that recipe from within a session: |
There was a problem hiding this comment.
The phrase "Given you have a recipe" uses non-standard grammar. Consider changing to "If you have a recipe" or "When you have a recipe" for clearer, more natural phrasing.
Suggested change
| Custom slash commands are personalized shortcuts to run [recipes](/docs/guides/recipes). Given you have a recipe that runs a daily report, you can create a custom slash command to invoke that recipe from within a session: | |
| Custom slash commands are personalized shortcuts to run [recipes](/docs/guides/recipes). If you have a recipe that runs a daily report, you can create a custom slash command to invoke that recipe from within a session: |
angiejones
approved these changes
Jan 6, 2026
zanesq
added a commit
that referenced
this pull request
Jan 6, 2026
* 'main' of github.com:block/goose: refactor: when changing provider/model,load existing provider/model (#6334) chore: refactor configure_extensions_dialog to reduce line count (#6277) chore: refactor handle_configure to reduce line count (#6276) chore: refactor interactive session to reduce line count (#6274) chore: refactor docx_tool to reduce function size (#6273) chore: refactor cli() function to reduce line count (#6272) make sure the models are using streaming properly (#6331) feat: add a max tokens env var (#6264) docs: slash commands topic (#6333) fix(ci): prevent gh-pages branch bloat (#6340) chore(deps): bump qs and body-parser in /documentation (#6338) Skip the smoke tests for dependabot PRs (#6337)
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.
Summary
This PR moves the recipe slash commands content into a standalone topic under Context Engineering.
Documentation updates:
documentation/docs/guides/context-engineering/index.mdxanddocumentation/docs/guides/recipes/index.mdx:documentation/docs/guides/context-engineering/slash-commands.md:documentation/docs/guides/recipes/session-recipes.md:Updated links:
documentation/docs/guides/config-files.mddocumentation/docs/guides/goose-cli-commands.mddocumentation/docs/tutorials/rpi.mdType of Change
AI Assistance