moody ๐Ÿซ 

May 26, 2026 ยท View on GitHub

Your MacBook has feelings. And it's not afraid to express them.

Interactive demo

Moody animated dashboard demo

What Is This?

Every hardware event triggers a personality response:

  • ๐Ÿ‘‹ Slap it โ†’ it complains (and remembers)
  • ๐Ÿ”Œ Plug in USB โ†’ it gets curious
  • โšก Connect charger โ†’ it sighs with relief
  • ๐Ÿชซ Battery dying โ†’ it begs for its life
  • ๐Ÿ“ถ WiFi drops โ†’ existential crisis
  • ๐ŸŽง Plug in headphones โ†’ "just the two of us now"
  • ๐Ÿค– AI finishes code โ†’ celebrates your generated code

Your MacBook's mood evolves based on how you treat it. Slap it too much? It gets grumpy. Charge it? It forgives you. Maybe.

Install

Using Homebrew:

brew install dinakars777/tap/moody

Developer build from source:

go install github.com/dinakars777/moody@latest
sudo cp "$(go env GOPATH)/bin/moody" /usr/local/bin/moody

Release builds report the tagged version. Source builds may report dev unless you build with -ldflags "-X main.version=<version>".

Maintainers: see docs/releasing.md for the tag release flow.

Usage

# Start moody (SFW mode)
sudo moody

# NSFW mode ๐Ÿ˜
sudo moody --spicy

# Show live animated mood dashboard
sudo moody --dashboard

# List available sensors
sudo moody --list-sensors

# Explain sensor compatibility and fixes
moody doctor
moody doctor --json

# Adjust slap sensitivity
sudo moody --min-amplitude 0.15

# Fast mode (quicker detection, shorter cooldown)
sudo moody --fast

# Silent mode (disables TTS voice, text only)
sudo moody --silent

# Verbose logging
sudo moody --verbose

Requirements

  • macOS on Apple Silicon (M2+ or M1 Pro)
  • sudo (for accelerometer access)
  • Go 1.26.1+ (if building from source)

See docs/compatibility.md for the sensor support matrix.

How It Works

  1. Reads accelerometer data via IOKit HID to detect physical impacts
  2. Monitors USB, power, battery, and lid state via IOKit
  3. Monitors WiFi and Headphone connections using networksetup and CoreAudio
  4. Monitors external display changes
  5. Monitors AI IDE activity (Kiro) for code generation completion
  6. Maintains a 3-axis mood engine (happiness, energy, trust)
  7. Mood persists to ~/.moody/state.json โ€” your MacBook remembers
  8. Selects personality-appropriate responses based on current mood
  9. Speaks the response aloud using macOS Text-to-Speech (TTS) with mood-specific voices

The Mood System

Your MacBook's mood shifts with every event:

MoodTriggerPersonality
๐Ÿ˜Š HappyCharged, USB inCheerful, friendly
๐Ÿ˜ค GrumpySlapped, charger removedSarcastic, snippy
๐Ÿ˜ฐ AnxiousBattery low, WiFi lostPanicky, desperate
๐ŸŽญ DramaticMultiple negative eventsOver-the-top theatrical
๐Ÿ’€ Dead InsideSustained abuseNihilistic, apathetic

Voice Packs

# List installed packs
moody --packs

# Validate a local community pack
moody pack validate ./my-pack

# Use NSFW pack
sudo moody --spicy

Built-in packs:

  • en_default โ€” Passive-aggressive office coworker (SFW)
  • en_spicy โ€” Your MacBook is... very friendly (NSFW ๐Ÿ”ž)
  • ja_spicy โ€” Anime-inspired Japanese pack (NSFW ๐Ÿ”ž)
  • hi_default โ€” Hindi default pack (SFW)
  • hi_spicy โ€” Hindi spicy pack (NSFW ๐Ÿ”ž)
  • en_pirate โ€” Pirate speak pack (SFW)
  • en_dramatic โ€” Overly Dramatic pack (SFW)

Options

FlagDescription
--spicyEnable NSFW voice pack
--pack <NAME>Use specific voice pack
--dashboardShow live animated TUI mood dashboard
--muteTrack mood without responses
--silentDisable TTS audio (text output only)
--fastFaster polling, shorter cooldown
--min-amplitude <F>Accelerometer sensitivity (default: 0.05)
--cooldown <MS>Min ms between responses (default: 750)
--no-accelDisable accelerometer
--no-usbDisable USB sensor
--no-powerDisable power sensor
--no-lidDisable lid sensor
--no-wifiDisable WiFi sensor
--no-headphonesDisable headphone sensor
--no-displayDisable external display sensor
--no-aiDisable AI IDE monitoring
--verboseLog all events
--list-sensorsShow available sensors
--jsonPrint JSON with --list-sensors
--packsList voice packs
--versionPrint version

Diagnostics

moody doctor
moody doctor --json

doctor reports OS, architecture, root status, and per-sensor support details. If a sensor cannot run, the report includes a reason and suggested fix.

AI IDE Integration

Moody can notify you when your AI coding assistant finishes generating code!

Supported IDEs:

  • Kiro - Automatically detected
  • Cursor - Coming soon
  • Windsurf - Coming soon

When AI finishes generating code, your Mac celebrates (or complains, depending on its mood).

Related Projects:

Contributing

Contributions welcome! Especially:

  • More voice packs (languages, personalities)
  • More AI IDE integrations (Cursor, Windsurf)
  • Gordon Ramsay voice pack
  • HAL 9000 voice pack

When adding a built-in personality, update the interactive demo in docs/ at the same time.

Voice pack authors can start with docs/voice-pack-authoring.md. Please read CONTRIBUTING.md before opening a PR.

Privacy

Moody runs locally and does not send telemetry. See docs/privacy.md.

License

MIT