AbstractDevs
Posted on 4/7/2025 by Matt
This post will give an overview of the Librarian project, its goals, and where we see it going from here.
This project is a collection of scripts for the game Blood on the Clocktower, a game in which our Discord server, Abstract Games, has fallen in love with over the last year and change. While sinking ourselves deeper and deeper into the game, our group has had lots of fun creating and testing new and existing scripts for the game. Some have even gone above an beyond making their own “Homebrew” scripts outside of the base game
As a group, it has been difficult to track the ever-changing scripts that have been created. Tracking down different versions to play and seeing the history of changes can often involve cross-referencing convoluted Discord threads or even DMs.
Librarian is a collection of scripts, blog posts, and (eventually) statistics for the Abstract Games Blood on the Clocktower group
Some things on our minds for the future:
To add a script, you will need the following:
Script content is automatically parsed from all entries in script data directory. All you need to do is add the following files to that directory:
src/data
└── scripts
└── your-script-name
├── README.md
├── latest.json
├── your-script-name-1.png
├── your-script-name-2.png
├── CHANGELOG.md (optional)
└── history (optional)
├── v1.json
└── ...
In order to get the images to show up on the site, you must add a frontmatter block to the markdown file that references the images:
---
frontImage: ./your-script-name-1.png
backImage: ./your-script-name-2.png
---
With these changes, the script will automatically appear in both the script table and the script detail page. To add new scripts, please open a pull request with the changes.
Similar to scripts, posts are automatically parsed from all entries in post data directory. To add a post, simply create a new file src/data/posts/your-post-title.md. For the metadata to be correct, add the following frontmatter heading to the markdown file:
---
title: "Your Post Title"
author: "Your Name"
description: "A short description of your post"
pubDate: "Apr 7 2025"
---
To add new scripts, please open a pull request with the changes
Librarian is an open source website built with Astro and React. We will happily consider any contributions for features and bug fixes
For any feature requests or issue reports, please open an issue on the GitHub repository
That’s all for now! More posts and scripts will be added in the future. Until then, see ya in town square!