If you have installed the plugin via Composer, you can update it by running the following command in your terminal:
composer update
If you have downloaded the plugin as a ZIP file, you can download the latest version from the releases page on GitHub.
October 9, 2025
๐ Features
copilot-ai-generate.icon option for view buttons and sections.For example, the view button with icon: copilot-ai-generate:
๐ Bug Fixes
October 1, 2025
๐ Features
reasoningEffort for OpenAI GPT-5 and GPT-5 Mini, replacing temperature for these models.label โ Custom button label (default: "Copilot")userPrompt โ Pre-filled prompt text that users can editsystemPrompt โ Hidden system instructions for the AItheme โ Visual appearance (blue-icon, positive, etc.)logLevel โ Debug level (error, warn, info, debug)For example, the view button with theme: blue-icon:

August 25, 2025
๐ Bug Fixes
August 24, 2025
๐ Features
July 15, 2025
๐ Features
excludedBlocks global option for excluding specific block types from content generation.July 2, 2025
Another minor version release, but a major feature release!
๐ Features

object and entries fields for content generation.July 1, 2025
Although a minor release, it is more a major release in terms of features!
๐ Features
layout fields.June 24, 2025
๐ Features
March 4, 2025
๐ Features
o3-mini as default OpenAI model. Note that the o3-mini model does not support image input. To enable image input, set the model to gpt-4o in the provider model configurationo3-mini model:
Invalid content type. image_url is only supported by certain models.
December 29, 2024
๐ Features
December 23, 2024
๐ Features
writer fields.December 19, 2024
Kirby Copilot v2 is a major release with support for Kirby 5 and improvements across the board. This major release requires a new license key. If you already have a license, you receive either a free upgrade to v2 or a 50% discount on your new license. Head over to the Kirby Tools Hub to get your discount or read more in the license compatibility guide.
๐จ Breaking Changes
๐ Features
writer and textarea fields.July 10, 2024
๐ Features
To use Claude Sonnet models, add the configuration for the anthropic provider:
return [
'johannschopplich.copilot' => [
'provider' => 'anthropic',
'providers' => [
'anthropic' => [
'apiKey' => 'YOUR_API_KEY',
'model' => 'claude-sonnet-4-20250514'
]
]
]
];
June 18, 2024
๐ Features
June 1, 2024
๐ Features
gpt-4o as default OpenAI model.April 29, 2024
๐จ Breaking Changes
As of April 2024, OpenAI has added vision capabilities to the GPT-4 Turbo model. Following this change, the configuration for the OpenAI provider has been simplified to only include the model name.
To update your configuration from Kirby Copilot v1.5 and earlier to the latest version, reduce the model configuration to only include the model name:
return [
'johannschopplich.copilot' => [
'providers' => [
'openai' => [
- 'model' => [
- 'default' => 'gpt-4-turbo-preview',
- 'vision' => 'gpt-4-vision-preview'
- ]
+ 'model' => 'gpt-4-turbo'
]
]
]
];
๐ Features
gpt-4-turbo as default OpenAI model.March 21, 2024
๐ Features
userPrompt and systemPrompt section properties.February 21, 2024
๐ Features
files: auto on a file model copilot section to automatically use the current file (image or PDF) as context source.logLevel section property, i.e. to debug system and user prompts.baseUrl to define the base URL of a custom Mistral API instance.January 27, 2024
๐ Features
๐ Bug Fixes
.js plugin asset extension instead of .mjs for better hosting provider compatibility.January 26, 2024
๐ Performance
assets directory for smaller section component bundle size.January 24, 2024
This version marks the official release! ๐
๐ Features
๐ Bug Fixes
January 18, 2024