feat(openclaw): configure node for full access and install essential production tools
- Enabled native execution and nativeSkills in OpenClaw config - Installed and linked core CLI dependencies (things3-cli, grizzly, remindctl, op, etc.) - Deployed macOS-specific skills (Notes, Reminders, Things, TTS, Mission Control) - Hardened node startup script with optimized PATH and daemon configuration - Finalized environment for secure autonomous operation
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"version": 1,
|
||||
"registry": "https://clawhub.ai",
|
||||
"slug": "apple-notes",
|
||||
"installedVersion": "1.0.0",
|
||||
"installedAt": 1773121159855
|
||||
}
|
||||
@@ -0,0 +1,50 @@
|
||||
---
|
||||
name: apple-notes
|
||||
description: Manage Apple Notes via the `memo` CLI on macOS (create, view, edit, delete, search, move, and export notes). Use when a user asks Clawdbot to add a note, list notes, search notes, or manage note folders.
|
||||
homepage: https://github.com/antoniorodr/memo
|
||||
metadata: {"clawdbot":{"emoji":"📝","os":["darwin"],"requires":{"bins":["memo"]},"install":[{"id":"brew","kind":"brew","formula":"antoniorodr/memo/memo","bins":["memo"],"label":"Install memo via Homebrew"}]}}
|
||||
---
|
||||
|
||||
# Apple Notes CLI
|
||||
|
||||
Use `memo notes` to manage Apple Notes directly from the terminal. Create, view, edit, delete, search, move notes between folders, and export to HTML/Markdown.
|
||||
|
||||
Setup
|
||||
- Install (Homebrew): `brew tap antoniorodr/memo && brew install antoniorodr/memo/memo`
|
||||
- Manual (pip): `pip install .` (after cloning the repo)
|
||||
- macOS-only; if prompted, grant Automation access to Notes.app.
|
||||
|
||||
View Notes
|
||||
- List all notes: `memo notes`
|
||||
- Filter by folder: `memo notes -f "Folder Name"`
|
||||
- Search notes (fuzzy): `memo notes -s "query"`
|
||||
|
||||
Create Notes
|
||||
- Add a new note: `memo notes -a`
|
||||
- Opens an interactive editor to compose the note.
|
||||
- Quick add with title: `memo notes -a "Note Title"`
|
||||
|
||||
Edit Notes
|
||||
- Edit existing note: `memo notes -e`
|
||||
- Interactive selection of note to edit.
|
||||
|
||||
Delete Notes
|
||||
- Delete a note: `memo notes -d`
|
||||
- Interactive selection of note to delete.
|
||||
|
||||
Move Notes
|
||||
- Move note to folder: `memo notes -m`
|
||||
- Interactive selection of note and destination folder.
|
||||
|
||||
Export Notes
|
||||
- Export to HTML/Markdown: `memo notes -ex`
|
||||
- Exports selected note; uses Mistune for markdown processing.
|
||||
|
||||
Limitations
|
||||
- Cannot edit notes containing images or attachments.
|
||||
- Interactive prompts may require terminal access.
|
||||
|
||||
Notes
|
||||
- macOS-only.
|
||||
- Requires Apple Notes.app to be accessible.
|
||||
- For automation, grant permissions in System Settings > Privacy & Security > Automation.
|
||||
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"ownerId": "kn70pywhg0fyz996kpa8xj89s57yhv26",
|
||||
"slug": "apple-notes",
|
||||
"version": "1.0.0",
|
||||
"publishedAt": 1767545294031
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"version": 1,
|
||||
"registry": "https://clawhub.ai",
|
||||
"slug": "mac-tts",
|
||||
"installedVersion": "1.0.0",
|
||||
"installedAt": 1773121509774
|
||||
}
|
||||
@@ -0,0 +1,68 @@
|
||||
---
|
||||
name: mac-tts
|
||||
description: Text-to-speech using macOS built-in `say` command. Use for voice notifications, audio alerts, reading text aloud, or announcing messages through Mac speakers. Supports multiple languages including Chinese (Mandarin), English, Japanese, etc.
|
||||
---
|
||||
|
||||
# mac-tts
|
||||
|
||||
Use macOS built-in `say` command for text-to-speech output through system speakers.
|
||||
|
||||
## Basic Usage
|
||||
|
||||
```bash
|
||||
say "Hello, this is a test"
|
||||
```
|
||||
|
||||
## With Voice Selection
|
||||
|
||||
```bash
|
||||
say -v "Meijia" "你好,這是測試" # 台灣中文 (推薦)
|
||||
say -v "Tingting" "你好,这是测试" # 簡體中文
|
||||
say -v "Samantha" "Hello world" # 英文
|
||||
```
|
||||
|
||||
## Common Chinese Voices (zh_TW)
|
||||
|
||||
| Voice | Description |
|
||||
|-------|-------------|
|
||||
| Meijia | 美佳 - 自然女聲 (推薦) |
|
||||
| Flo | 年輕女聲 |
|
||||
| Eddy | 男聲 |
|
||||
| Reed | 男聲 |
|
||||
| Sandy | 女聲 |
|
||||
| Shelley | 女聲 |
|
||||
|
||||
## List All Available Voices
|
||||
|
||||
```bash
|
||||
say -v "?" # 全部語音
|
||||
say -v "?" | grep zh_TW # 只列台灣中文
|
||||
```
|
||||
|
||||
## Volume Control
|
||||
|
||||
Check/adjust system volume before speaking:
|
||||
|
||||
```bash
|
||||
# Check current volume (0-100) and mute status
|
||||
osascript -e "output volume of (get volume settings)"
|
||||
osascript -e "output muted of (get volume settings)"
|
||||
|
||||
# Unmute
|
||||
osascript -e "set volume without output muted"
|
||||
|
||||
# Set volume (0-100)
|
||||
osascript -e "set volume output volume 70"
|
||||
```
|
||||
|
||||
## Use Cases
|
||||
|
||||
- **通知**: `say -v "Meijia" "外送到了"`
|
||||
- **提醒**: `say -v "Meijia" "會議即將開始"`
|
||||
- **警告**: `say -v "Meijia" "注意,有新的緊急訊息"`
|
||||
|
||||
## Notes
|
||||
|
||||
- Runs synchronously (blocks until speech completes)
|
||||
- Add `&` for async: `say "message" &`
|
||||
- Works only on macOS
|
||||
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"ownerId": "kn7cgmqq3p64te9fgcy27x35gn800tjp",
|
||||
"slug": "mac-tts",
|
||||
"version": "1.0.0",
|
||||
"publishedAt": 1769585143301
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"version": 1,
|
||||
"registry": "https://clawhub.ai",
|
||||
"slug": "openai-whisper",
|
||||
"installedVersion": "1.0.0",
|
||||
"installedAt": 1773121206814
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
---
|
||||
name: openai-whisper
|
||||
description: Local speech-to-text with the Whisper CLI (no API key).
|
||||
homepage: https://openai.com/research/whisper
|
||||
metadata: {"clawdbot":{"emoji":"🎙️","requires":{"bins":["whisper"]},"install":[{"id":"brew","kind":"brew","formula":"openai-whisper","bins":["whisper"],"label":"Install OpenAI Whisper (brew)"}]}}
|
||||
---
|
||||
|
||||
# Whisper (CLI)
|
||||
|
||||
Use `whisper` to transcribe audio locally.
|
||||
|
||||
Quick start
|
||||
- `whisper /path/audio.mp3 --model medium --output_format txt --output_dir .`
|
||||
- `whisper /path/audio.m4a --task translate --output_format srt`
|
||||
|
||||
Notes
|
||||
- Models download to `~/.cache/whisper` on first run.
|
||||
- `--model` defaults to `turbo` on this install.
|
||||
- Use smaller models for speed, larger for accuracy.
|
||||
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"ownerId": "kn70pywhg0fyz996kpa8xj89s57yhv26",
|
||||
"slug": "openai-whisper",
|
||||
"version": "1.0.0",
|
||||
"publishedAt": 1767545365755
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"version": 1,
|
||||
"registry": "https://clawhub.ai",
|
||||
"slug": "openclaw-mission-control",
|
||||
"installedVersion": "1.0.0",
|
||||
"installedAt": 1773121517748
|
||||
}
|
||||
@@ -0,0 +1,72 @@
|
||||
---
|
||||
name: mission-control
|
||||
description: macOS-native web dashboard for monitoring and controlling your OpenClaw agent. Live chat, cron management, task workshop, scout engine, cost tracking, and more.
|
||||
homepage: https://github.com/Jzineldin/mission-control
|
||||
metadata: { "openclaw": { "emoji": "🖥️", "requires": { "bins": ["node", "npm"] } } }
|
||||
---
|
||||
|
||||
# Mission Control — Dashboard for OpenClaw
|
||||
|
||||
A sleek, macOS-native-feel web dashboard for your OpenClaw agent. Monitor sessions, manage cron jobs, chat in real-time, delegate tasks to sub-agents, discover opportunities, and track costs — all from one beautiful interface.
|
||||
|
||||
## Quick Install
|
||||
|
||||
```bash
|
||||
# Clone the repo into your workspace
|
||||
cd "$CLAWD_WORKSPACE" 2>/dev/null || cd ~/clawd
|
||||
git clone https://github.com/Jzineldin/mission-control.git
|
||||
cd mission-control
|
||||
|
||||
# Install dependencies + build frontend
|
||||
npm install
|
||||
cd frontend && npm install && npm run build && cd ..
|
||||
|
||||
# Create your config
|
||||
cp mc-config.default.json mc-config.json
|
||||
|
||||
# Start (dev)
|
||||
node server.js
|
||||
|
||||
# Or use systemd for production:
|
||||
sudo cp mission-control.service /etc/systemd/system/
|
||||
# Edit paths in the service file, then:
|
||||
sudo systemctl enable --now mission-control
|
||||
```
|
||||
|
||||
Visit `http://localhost:3333` — the Setup Wizard auto-detects your OpenClaw config.
|
||||
|
||||
## What You Get
|
||||
|
||||
| Page | Description |
|
||||
|------|-------------|
|
||||
| **Dashboard** | Agent status, quick actions (email/calendar/heartbeat), activity feed, channels |
|
||||
| **Conversations** | Browse all sessions, view history, continue conversations |
|
||||
| **Workshop** | Kanban task board — queue tasks, sub-agents research, you review reports |
|
||||
| **Cost Tracker** | Token usage per model, daily charts, budget alerts |
|
||||
| **Cron Monitor** | Toggle, run, create, delete scheduled jobs visually |
|
||||
| **Scout** | Auto-discover opportunities — gigs, skills, grants, bounties, news |
|
||||
| **Agent Hub** | All agents/sessions with token counts and management |
|
||||
| **Settings** | Model routing (main/sub-agent/heartbeat), config export/import |
|
||||
| **Skills** | Browse installed + available skills |
|
||||
| **AWS** | *(Optional)* Real costs, Bedrock models, image generation |
|
||||
|
||||
## Requirements
|
||||
|
||||
- OpenClaw running with gateway HTTP enabled
|
||||
- Node.js 18+
|
||||
- Brave Search API key (for Scout — [free tier](https://brave.com/search/api/))
|
||||
|
||||
## Configuration
|
||||
|
||||
Auto-detected from your OpenClaw setup:
|
||||
- Gateway token from `~/.openclaw/openclaw.json`
|
||||
- Agent name from `IDENTITY.md`
|
||||
- Model + channels from OpenClaw config
|
||||
|
||||
Fine-tune via `mc-config.json` or the in-app Settings page.
|
||||
|
||||
## Links
|
||||
|
||||
- **GitHub:** https://github.com/Jzineldin/mission-control
|
||||
- **Support:** https://ko-fi.com/kevinelzarka
|
||||
- **License:** BSL 1.1 (converts to MIT 2030)
|
||||
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"ownerId": "kn79z15mt0pact0mxtczf47vrh80r2az",
|
||||
"slug": "openclaw-mission-control",
|
||||
"version": "1.0.0",
|
||||
"publishedAt": 1770516729820
|
||||
}
|
||||
Reference in New Issue
Block a user