toggle

Toggle Overcooked notification sounds by creating or removing a marker file.

Updated Aug 27, 2026
One-click install
npx skills add https://github.com/BaeHenryS/personal-toolkit --skill toggle
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: toggle
Source: https://github.com/BaeHenryS/personal-toolkit/tree/main/plugins/overcooked/skills/toggle
Command: npx skills add https://github.com/BaeHenryS/personal-toolkit --skill toggle

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

This Skill provides a simple, reliable way to enable or disable Overcooked notification sounds, reducing distractions during focused work sessions.

Core Features & Use Cases

  • Deterministic toggle: flips the on/off state by creating or removing a marker file and prints the current status.
  • Local and portable: requires only a POSIX-compatible shell; runs in most Unix-like environments.
  • Use Case: when you want to silence or enable alerts during intense tasks without changing application settings or preferences.

Quick Start

Run the toggle script to enable or disable Overcooked mode: ${CLAUDE_PLUGIN_ROOT}/skills/toggle/scripts/toggle.sh

Frequently Asked Questions about toggle

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I toggle notification sounds on or off from the CLI?

You can toggle notification sounds on or off from the CLI by running a shell script that checks for a marker file, creates or removes it, and prints the resulting state. This provides a deterministic switch for alerts.

What is the best way to mute shell script alerts during focused work?

The best way to mute shell script alerts is using a deterministic toggle that creates or removes a marker file. This silences notifications without changing application settings, reducing distractions during intense tasks.

Can I use this CLI toggle in any local shell environment?

Yes, you can use this CLI toggle in any POSIX-compatible local shell environment. It requires only standard Unix-like tools to run the script and manage the marker file for state tracking.

How to script a deterministic state switch for local notifications?

To script a deterministic state switch for local notifications, create a shell script that checks for a marker file. If the file exists, remove it to disable alerts; if not, create it to enable them, then print the status.

Do I need to change application settings to disable these alerts?

No, you do not need to change application settings to disable these alerts. The toggle script manages the state independently by creating or removing a marker file in your local environment.

Why use a marker file to track notification state in bash?

A marker file is used to track notification state in bash because it provides a portable, deterministic mechanism. The script simply checks for the file's existence to determine whether sounds are on or off.