Managing Prompts
Create and manage prompts for your toolkit.
What are Toolkit Prompts?
Prompts are reusable instructions that can include arguments (variables). When triggered, the AI follows the prompt instructions using the provided argument values.
Prompts in Webrix follow the MCP Prompts specification, which defines a standardized way for servers to expose prompt templates to clients.
Viewing Prompts
- Open the toolkit editor
- Go to the Prompts tab
Each prompt card shows:
- Prompt name (e.g., "Implement Feature")
- Arguments - Required arguments marked with * (e.g.,
issue*) - Content preview - The prompt text with variable placeholders
- Edit and delete buttons
Creating a Prompt
- Click + Create Prompt
- Fill in the prompt details
- Click Create Prompt
Prompt Fields
Name (required)
The display name for the prompt.
Slug (required)
A unique identifier for the prompt (lowercase letters, numbers, hyphens).
Description (optional)
Describe what the prompt does.
Arguments
Add arguments that users provide when using the prompt:
- Click + Add Argument
- Enter the argument Name (e.g.,
issue) - Enter a Description (e.g.,
WEB-XXX) - Check Required if the argument must be provided
- Click the trash icon to remove an argument
Output Contents (required)
The prompt text that will be sent to the AI. Use {{argument_name}} to insert argument values.
Click + Add Output Content to add content blocks.
Example:
Read issue {{issue}} from linear.
Understand what needs to be done in order to implement it.
When finished create a new branch from main.
Write all the relevant code.
Commit the PR using the commit title guidelines.
Push the changes
Add comment to the linear issue with the implementation.
Create a pull request in Github using the create pull request tool.
Editing a Prompt
- Click the pencil icon on a prompt card
- Update the fields
- Click Update Prompt
Deleting a Prompt
Click the trash icon on a prompt card to delete it.