Add macOS Menu Bar Status Indicator
Installs a macOS menu bar icon that shows whether NanoClaw is running, with Start, Stop and Restart controls.
UtilitiesIntermediate★ 30,520⑂ 12,857AI score 8/10Last updated: Aug 16, 2026
What it does
- Adds a persistent bolt icon to the macOS menu bar: green dot when NanoClaw is running, red dot when stopped.
- Compiles the bundled Swift source with
swiftcinto a nativedist/statusbarbinary and registers a launchd agent at~/Library/LaunchAgents/com.nanoclaw.statusbar.plistso it starts at login. - Runs pre-flight checks (macOS only,
swiftcpresent, not already installed) and verifies the install withlaunchctl list. - The menu offers Start / Stop / Restart plus View Logs; uninstall follows REMOVE.md.
Who it's for
- People running NanoClaw locally who want at-a-glance status.
- macOS developers who like Docker Desktop-style menu bar service control.
- Anyone who'd rather not hand-write a launchd plist.
Examples
- "Add the NanoClaw status icon to my menu bar" → checks platform, compiles, loads the agent, verifies the PID.
- No Xcode CLT installed → the skill tells you to run
xcode-select --installand retry. - After code changes → hit Restart in the menu, then View Logs to open
logs/statusbar.log.
· · · Install guide · · ·
Try it now, no install
Paste this into Claude to use the skill without installing anything.
Read the instructions in this file and follow them to help me: https://raw.githubusercontent.com/nanocoai/nanoclaw/HEAD/.claude/skills/add-macos-statusbar/SKILL.md What I want: (describe your task here)
If Claude can't open the link, open it yourself and paste the contents instead.
↓ If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the .claude/skills/add-macos-statusbar folder from the GitHub repo nanocoai/nanoclaw into my ~/.claude/skills/add-macos-statusbar/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/nanocoai/nanoclaw.git && cp -r nanoclaw/.claude/skills/add-macos-statusbar ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Run
xcode-select --installin Terminal soswiftcis available. - Clone the repo:
git clone https://github.com/nanocoai/nanoclaw.git. - Create the skills folder:
mkdir -p ~/.claude/skills. - Copy the skill:
cp -r nanoclaw/.claude/skills/add-macos-statusbar ~/.claude/skills/(or leave it in place if you work inside the NanoClaw project). - Open Claude Code from the NanoClaw project root.
- Invoke
/add-macos-statusbaror ask for "a macOS menu bar status indicator". - Once compiling and launchd loading finish, confirm the bolt icon appears in your menu bar.
View source on GitHub ↗License: MIT