🎯

terminal-changelog

🎯Skill

from frizzle-chan/mudd

VibeIndex|
What it does

terminal-changelog skill from frizzle-chan/mudd

terminal-changelog

Installation

Install skill:
npx skills add https://github.com/frizzle-chan/mudd --skill terminal-changelog
1
Last UpdatedJan 29, 2026

Skill Details

SKILL.md

>-

Overview

# Terminal Changelog

Add user-facing changelog entries as terminal documents in data/worlds/mansion.rec.

Workflow

  1. Find the latest terminal document with a commit reference

```bash

grep -n "update as of" data/worlds/mansion.rec

```

Extract the commit hash from the most recent entry.

  1. Fetch origin/master and get commits since that reference

```bash

git fetch origin master

git log ..origin/master --oneline --reverse

```

  1. Analyze feature commits - Skip dependabot/CI bumps. For significant commits:

```bash

git show --stat --format="%B" | head -50

```

  1. Write the terminal document following the format below
  1. Validate

```bash

just entities

```

Terminal Document Format

```rec

Id: terminal_inbox_

Name: INBOX -

Prototype: terminal_document

Room: office

Container: office_terminal

DescriptionLong: ```

+ FROM: frizzle@mudd.local

+ TO: team@mudd.local

+ SUBJECT:

+ DATE:

+ ----------------------------------------

+

+ (update as of )

+

+

+

+ -Frizzle

+ ```

```

Insert after the previous terminal_inbox entry, before # Gallery entities.

Content Guidelines

Focus on user-facing changes:

  • New commands (/pay, /use, etc.)
  • New items players can find or interact with
  • New locations or entities
  • Changes to game mechanics

Include gameplay tips:

  • Where to find new things ("Check the lounge for the slot machine")
  • How to use new features ("Use /pay to send yen to nearby players")
  • Fun interactions ("Pull the handle to win prizes!")

Tone: Casual dev update from Frizzle. Excited about new features, hints at what's coming.

Skip: Internal refactors, CI updates, dependency bumps, bug fixes unless player-visible.