add-macos-statusbar

仓库创建 2026年1月31日最近提交 19 小时前SkillHot 收录 20 天前
▸ 精选理由

便捷管理本地服务状态,适合 macOS 桌面用户。

▸ 风险提示

仅限 macOS,需 Xcode Command Line Tools(swiftc)。

这个 Skill 做什么

为 NanoClaw 增加 macOS 菜单栏图标并提供启动/停止/重启控制。

在 macOS 菜单栏为 NanoClaw 增加一个常驻状态图标,显示运行状态(绿/红点)并提供 Start、Stop、Restart 控制。需要在 macOS 下使用,有 Xcode 命令行工具支持,适合想要图形化管理服务而不想开终端的人。特色是像 Docker Desktop 那样直观可控,把服务管理放在菜单栏里随手可达。

▸ 展开 SKILL.md 英文原文

Add a macOS menu bar status indicator for NanoClaw. Shows a bolt icon with a green/red dot indicating whether NanoClaw is running, with Start, Stop, and Restart controls. macOS only.

Skill 开发管理macOS状态栏本地工具Claude Code
3.0w
Stars
1.3w
Forks
40
仓库内 Skill
+241
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/nanocoai/nanoclaw/main/.claude/skills/add-macos-statusbar/SKILL.md
或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/nanocoai/nanoclaw/main/.claude/skills/add-macos-statusbar/SKILL.md"
SKILL.MD 节选查看完整文件 ↗
# Add macOS Menu Bar Status Indicator

Adds a persistent menu bar icon that shows NanoClaw's running status and lets the user
start, stop, or restart the service — similar to how Docker Desktop appears in the menu bar.

**macOS only.** Requires Xcode Command Line Tools (`swiftc`).

## Phase 1: Pre-flight

### Check platform

If not on macOS, stop and tell the user:

> This skill is macOS only. The menu bar status indicator uses AppKit and requires `swiftc` (Xcode Command Line Tools).

### Check for swiftc

```bash
which swiftc
```

If not found, tell the user:

> Xcode Command Line Tools are required. Install them by running:
>
> ```bash
> xcode-select --install
> ```
>
> Then re-run `/add-m
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有