Statically-hosted Breadrich Engels debrief slideshows, served via GitHub
Pages at https://breadchaincoop.github.io/decks/<name>.html.
Decks are password-gated with StatiCrypt (client-side AES; no server). Never commit an unencrypted deck — the live Pages URL is public, so an un-encrypted file would be readable by anyone with the link.
The viewing password is shared with the team out-of-band (pinned in
#breadrich-engels) — do not commit the password to this repo, that would
defeat the encryption.
- Build the slideshow as a single self-contained
deck.html(inline CSS/JS, keyboard + click nav — see the existing decks for the house format). - Encrypt it:
npx staticrypt deck.html -p '<team-password>' --short -d out # → out/deck.html (this is the file you publish)
- Rename to a descriptive slug and commit only the encrypted file:
mv out/deck.html my-topic.html git add my-topic.html && git commit -m "Add <topic> deck" && git push
- Share
https://breadchaincoop.github.io/decks/my-topic.html+ the password in the channel.
- Encrypted files only. If a plaintext deck ever lands here, rewrite history
(
git checkout --orphan→ fresh commit → force-push) so it isn't recoverable. - One self-contained
.htmlper deck. No build step; Pages serves the file directly. - The
slideshow-deckcontainer skill automates make → encrypt → publish.