A tribute and log of initiatives, tools, and programmes discontinued by Scrum.org.
To add a discontinued Scrum.org initiative, gather the following information:
- Name (
title
) – Name of the initiative, programme, or tool - Launch Date (
birth_date
) – Approximate or exact launch date (YYYY-MM-DD) - Discontinued Date (
death_date
) – Date it was discontinued or de-emphasised (YYYY-MM-DD) - Description (
description
) – One-sentence summary of what it was - Link (
url
) – Relevant source confirming its launch or discontinuation
If you are not familiar with or do not want to use git
, submit a new issue requesting the change. If you are comfortable with git
, follow these steps:
- Fork this repository.
- Create a new branch named after the initiative you're adding.
- Open the
site\data\register.json
file and add the new entry manually. - Commit your changes and open a Pull Request (PR) using the new branch.
Note: GitHub discussions will be automatically created for new obituaries during the next deployment.
For contributions beyond site\data\register.json
, see the Contributing Guide.
- Production
- Preview
- Canary - There can be 2 canary environments at once that are built from Pull Requests. They are in the form https://lemon-stone-0045b7f10-{PullRequestId}.centralus.6.azurestaticapps.net/
Pull Requests automatically spawn environments. However, PR's from forks require approval to run.
Use a single sentence starting with the name of the initiative. For example:
"Agility Path was a continuous improvement framework based on the Evidence-Based Management approach."
This will be shown as:
“Killed in 2024, Agility Path was a continuous improvement framework based on the Evidence-Based Management approach.”
Write in the past tense. Be respectful and accurate.
Link to a source confirming its existence and end-of-life, ideally from Scrum.org or a credible archive (e.g., archive.org, news, or training partners). Avoid internal marketing links or dead product pages.
Help us document the evolution of the Scrum.org ecosystem by capturing its discontinued efforts with clarity and respect.
- Interactive Obituaries: Each discontinued initiative is displayed with tombstone or guillotine imagery
- GitHub Discussions: Community discussions are automatically created for each obituary
- Hugo-Powered: Fast, static site generation with responsive design
- Automated Workflow: PowerShell script manages GitHub discussions integration
For technical contributors working on the site itself:
- Fork this repository
- Make your changes to the appropriate files
- Test locally using the development workflow below
- Submit a Pull Request
See the Contributing Guide for detailed guidelines.
hugo serve --source site --config hugo.yaml,hugo.local.yaml
hugo --source site --config hugo.yaml
Run the development server and access the site at http://localhost:1313
for live reload during development.
This site automatically creates GitHub discussions for each obituary. The integration is managed via a PowerShell script:
.\.powershell\Create-GitHubDiscussions.ps1
Requirements:
- Set the
HUGO_GITHUB_TOKEN
environment variable with a GitHub Personal Access Token - Token needs
public_repo
orrepo
scope (not justwrite:discussion
) - GitHub Discussions must be enabled on the repository
- An "Obituary" category must exist in GitHub Discussions
How it works:
- Scans
site/data/register.json
for obituaries withoutdiscussionId
- Creates GitHub discussions in the "Obituary" category
- Updates the JSON file with
discussionId
anddiscussionUrl
fields - Hugo templates automatically display discussion buttons for linked obituaries
The script is idempotent - you can run it multiple times safely. It will skip obituaries that already have discussions.