| Public | A repository of step templates and other community-contributed extensions to Octopus Deploy
181
stars
4,260
commits
PowerShell
primary language
Sep 1, 2026
updated
A repository of step templates and other community-contributed extensions to Octopus Deploy. The website to download step templates from is https://library.octopus.com.
/step-templates as raw JSON exports direct from Octopus Deploy/app, with build artifacts at the root of the repository/tools folder contains utilities to help with editing step templates/pr-review folder contains a browser-only PR review tool (Hyponome) deployed to GitHub PagesRead our contributing guidelines for information about contributing step templates and to the website.
The easiest way to review a PR is in the browser using Hyponome, our PR review microsite:
https://octopusdeploy.github.io/Library/pr-review/
Hyponome lists open pull requests on this repository and, for each changed file, shows a true side-by-side diff in a Monaco editor. For step-template JSONs it surfaces a separate tab per embedded script that actually changed in the PR — Octopus.Action.Script.ScriptBody, Octopus.Action.Terraform.Template, custom PreDeploy/Deploy/PostDeploy scripts, and so on — each with syntax highlighting matching the script's language. This makes script changes readable without having to mentally unescape the JSON.
It runs entirely in your browser against the public GitHub API (no sign-in, no setup). Source lives in /pr-review; changes there auto-deploy via GitHub Pages.
If you'd rather review offline, or you're hitting the unauthenticated GitHub rate limit, the _diff.ps1 tool extracts old and new scripts into separate files you can compare in your local diff tool:
# Compare ScriptBody against previous commit
.\tools\_diff.ps1 -SearchPattern "template-name"
# Compare against a specific commit or branch
.\tools\_diff.ps1 -SearchPattern "template-name" -CompareWith "master"
This outputs readable files to diff-output/:
template-name.ScriptBody.old.ps1template-name.ScriptBody.new.ps1Also handles PreDeploy, Deploy, and PostDeploy custom scripts if present.
When reviewing a PR, keep the following things in mind:
Id should be a GUID that is not 00000000-0000-0000-0000-000000000000Version should be incremented, otherwise the integration with Octopus won't update the step template correctly$DefaultValues of Parameters should be either a string or null.LastModifiedBy field must be present, and (optionally) updated with the correct authorCategory has been created:
{categoryname}.png must be present under the step-templates/logos folderswitch in the humanize function in gulpfile.babel.js must have a case statement corresponding to it(top 30 of 330)
PowerShell
39.9%
JavaScript
27.4%
TypeScript
16.0%
CSS
5.6%
SCSS
5.5%
Shell
2.2%
C#
1.4%
Pug
1.2%
| Public | A repository of step templates and other community-contributed extensions to Octopus Deploy
181
stars
4,260
commits
PowerShell
primary language
Sep 1, 2026
updated
A repository of step templates and other community-contributed extensions to Octopus Deploy. The website to download step templates from is https://library.octopus.com.
/step-templates as raw JSON exports direct from Octopus Deploy/app, with build artifacts at the root of the repository/tools folder contains utilities to help with editing step templates/pr-review folder contains a browser-only PR review tool (Hyponome) deployed to GitHub PagesRead our contributing guidelines for information about contributing step templates and to the website.
The easiest way to review a PR is in the browser using Hyponome, our PR review microsite:
https://octopusdeploy.github.io/Library/pr-review/
Hyponome lists open pull requests on this repository and, for each changed file, shows a true side-by-side diff in a Monaco editor. For step-template JSONs it surfaces a separate tab per embedded script that actually changed in the PR — Octopus.Action.Script.ScriptBody, Octopus.Action.Terraform.Template, custom PreDeploy/Deploy/PostDeploy scripts, and so on — each with syntax highlighting matching the script's language. This makes script changes readable without having to mentally unescape the JSON.
It runs entirely in your browser against the public GitHub API (no sign-in, no setup). Source lives in /pr-review; changes there auto-deploy via GitHub Pages.
If you'd rather review offline, or you're hitting the unauthenticated GitHub rate limit, the _diff.ps1 tool extracts old and new scripts into separate files you can compare in your local diff tool:
# Compare ScriptBody against previous commit
.\tools\_diff.ps1 -SearchPattern "template-name"
# Compare against a specific commit or branch
.\tools\_diff.ps1 -SearchPattern "template-name" -CompareWith "master"
This outputs readable files to diff-output/:
template-name.ScriptBody.old.ps1template-name.ScriptBody.new.ps1Also handles PreDeploy, Deploy, and PostDeploy custom scripts if present.
When reviewing a PR, keep the following things in mind:
Id should be a GUID that is not 00000000-0000-0000-0000-000000000000Version should be incremented, otherwise the integration with Octopus won't update the step template correctly$DefaultValues of Parameters should be either a string or null.LastModifiedBy field must be present, and (optionally) updated with the correct authorCategory has been created:
{categoryname}.png must be present under the step-templates/logos folderswitch in the humanize function in gulpfile.babel.js must have a case statement corresponding to it(top 30 of 330)
PowerShell
39.9%
JavaScript
27.4%
TypeScript
16.0%
CSS
5.6%
SCSS
5.5%
Shell
2.2%
C#
1.4%
Pug
1.2%