Yulu (语录, yǔ lù) is the Chinese word for "recorded sayings" — the genre that gave us The Analects of Confucius 2,500 years ago. It is the oldest answer to a problem we still have today: someone said something important in a room, and nobody wrote it down well enough to remember it.
Yulu is a native macOS meeting recorder that listens to your meetings, transcribes them locally with MLX Whisper or whisper.cpp, and hands the transcript to any coding agent (Claude Code, Codex, OpenClaw…) to produce a clean meeting note. No virtual audio device. No cloud transcription. No account. The audio never leaves your laptop unless you tell it to.
Compared to Otter / Granola / Fireflies:
- System audio is captured natively through
ScreenCaptureKit, not through BlackHole or a multi-output device. - Transcription is fully local — MLX Whisper on Apple Silicon, or
whisper-cli(whisper.cpp) with your own model file. Chinese works as well as English. - The summary step is bring-your-own-agent. Yulu writes a
summary_requestinto a JSON queue; whichever agent you trust reads the transcript and the template, and writes back a polishedsummary.md. Nothing is hard-coded to one vendor. - Half-duplex mixing keeps remote speakers crisp: system audio leads while others speak, microphone takes over during system silence.
- Local web UI at
http://127.0.0.1:7777/— meetings, search, settings, prompts, glossary, daemon health. See docs/yulu_ui.md.
Latest stable release:
curl -fsSL https://raw.githubusercontent.com/Nowhitestar/Yulu/main/install.sh | bashSpecific version:
curl -fsSL https://raw.githubusercontent.com/Nowhitestar/Yulu/main/install.sh | bash -s -- --version v0.5.0Dev channel from main:
curl -fsSL https://raw.githubusercontent.com/Nowhitestar/Yulu/main/install.sh | bash -s -- --devBy default, the installer downloads the latest stable GitHub Release assets into ~/.yulu; it does not clone main. The --version flag pins only that install operation, and --dev opts into the development channel.
The installer:
- Checks macOS 13+, Xcode CLI Tools, Homebrew, Python 3.
- Installs the selected Yulu runtime into
~/.yulu/(a stable path — don't move it around). - Installs Homebrew packages:
sox,ffmpeg,whisper-cpp,terminal-notifier,gogcli,cloudflared. - Writes per-user config to
~/.config/yulu/config.jsonand creates~/Movies/Yulu/for recordings. - Compiles the window scanner; walks you through Accessibility permission.
- Builds and signs
Yulu.app; walks you through Microphone + Screen & System Audio Recording permissions. - Lets you choose the transcription profile: MLX
large-v3, MLXlarge-v3-turbo, or awhisper.cppGGML model. - Lets you choose the stop-time pipeline: realtime transcript → polish → summary, or full final transcription → summary.
- Lets you choose how summaries are finalized: agent queue, Claude CLI, Codex CLI, custom command, or local fallback only.
- (Optional) configures Google Calendar via
gog. - Installs LaunchAgents for background services.
- Installs the
yuluCLI to~/.local/bin/yulu. - (Optional) registers Yulu as an agent skill so Claude Code / OpenClaw / Codex etc. can drive it from natural language.
- Runs a smoke test.
After install, add ~/.local/bin to your PATH if it isn't already, so yulu is on your shell:
echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.zshrc && exec zshLatest stable release:
yulu updateSpecific version:
yulu update --version v0.5.0Dev channel from main:
yulu update --devStable and specific-version updates download GitHub Release assets into ~/.yulu/; --dev installs or updates from main. Either way, setup re-runs in idempotent upgrade mode. Already-granted TCC permissions are not re-prompted; OAuth is not redone; the whisper model isn't re-downloaded.
--version affects only that one operation. The next plain yulu update returns to the latest stable release.
yulu uninstallStops services, removes LaunchAgents and the CLI, and asks before deleting recordings / config / agent skills. macOS TCC entries and Homebrew packages are deliberately left alone (other apps may use them) — see the final summary printed by the script for the manual cleanup steps.
| Command | What |
|---|---|
yulu setup |
Re-run the installer interactively (fresh install) |
yulu update [--version vX.Y.Z | --dev] |
Update from latest stable release assets, a specific version, or the dev channel |
yulu start / stop / restart |
Control the four LaunchAgents |
yulu version |
Print Yulu version, git commit, tag, and dirty state |
yulu status |
Service health, audio_daemon socket, recent recordings |
yulu doctor |
Config, daemon, model, queue, calendar health check |
yulu logs [name] |
Tail logs (default: audio_daemon) |
yulu record start "<title>" / yulu record stop |
Manual recording with the same stop → transcribe → summarize flow as the floating window |
yulu transcription status |
Show transcription engine and post-recording mode |
yulu transcription mode fast|full |
Switch between realtime transcript → polish → summary and full final transcription → summary |
yulu transcription engine mlx <model> |
Use MLX Whisper, e.g. mlx-community/whisper-large-v3-mlx |
yulu transcription engine whisper <path> |
Use a local whisper.cpp GGML model |
yulu where |
Print all the relevant paths on disk |
yulu uninstall |
See above |
Yulu ships with a SKILL.md under skills/yulu/ that teaches Claude Code, OpenClaw, Codex, Cursor, and the 50+ other agents supported by vercel-labs/skills how to drive it. Once installed, you can say things like:
- "Start recording, call it Yulu weekly"
- "Stop the recording and summarize it"
- "What did we talk about in last Tuesday's standup?"
setup.sh asks whether to install it and which agents to target. To install or reinstall it later, from anywhere:
# Install globally to the agents you choose
npx skills add Nowhitestar/Yulu -g -a claude-code -y
npx skills add Nowhitestar/Yulu -g -a codex -y
# Or install from your local clone
npx skills add . -g -a claude-code -yThe skill is a thin contract — it tells the agent what verbs Yulu exposes (start, stop, status, summary fulfillment) and how to find past meetings on disk. Yulu's macOS app, launchd services, and local transcription dependencies still come from setup.sh. Installing the skill alone does not capture audio.
Google Calendar / Window Detector
↓
schedule.json ──► scheduler_daemon.py
↓
meeting_daemon.py ──► notify.py prompt: "Start recording?"
↓
record_audio.py ──► Yulu.app (Unix socket)
↓
ScreenCaptureKit (system audio) + AVFoundation (microphone)
↓
WAV ──► realtime_transcribe.py / transcribe.py ──► MLX Whisper or whisper-cli
↓
transcript.txt + summary_request ──► agent-queue.json
↓
Any agent (Claude Code / Codex / OpenClaw…) ──► summary.md
Six numbers worth knowing:
- WAV is 16-bit stereo 48 kHz.
- ScreenCaptureKit Float32 planar → interleaved stereo Int16.
- Half-duplex crossfade kicks in below
silence_threshold(default 0.01). - Default quality profile: MLX
mlx-community/whisper-large-v3-mlxon Apple Silicon; whisper.cppggml-large-v3.binis the non-MLX quality profile. - Bundle id:
com.yulu.audiodaemon(signed; falls back to ad-hoc). - Agent queue:
~/.config/yulu/agent-queue.json.
| Component | Permission | Why |
|---|---|---|
Yulu.app |
Microphone | Record your local microphone |
Yulu.app |
Screen & System Audio Recording | Capture system audio with ScreenCaptureKit |
window_scanner |
Accessibility | Read window titles to detect meetings |
If system audio is missing: System Settings → Privacy & Security → Screen & System Audio Recording → enable Yulu.app, then restart it.
Path: ~/.config/yulu/config.json
{
"audio": {
"backend": "daemon",
"silence_threshold": 0.01,
"silence_duration_sec": 300,
"half_duplex": true
},
"transcription": {
"post_recording_mode": "fast_summary",
"final_engine": "mlx",
"mlx": {
"python": "~/.config/yulu/venv-mlx-whisper/bin/python",
"model": "mlx-community/whisper-large-v3-mlx"
},
"realtime": {
"engine": "mlx",
"mlx_model": "mlx-community/whisper-large-v3-mlx",
"chunk_sec": 60
},
"whisper_cli": "whisper-cli",
"local_model_path": "~/.config/yulu/models/ggml-large-v3.bin",
"language": "zh"
},
"llm": {
"enabled": true
}
}audio.backend = "daemon"is the default.mic_device/system_audio_deviceonly apply to the legacy SoX fallback.transcription.post_recording_mode = "fast_summary"uses the realtime transcript generated during the meeting, then polishes and summarizes it. Useyulu transcription mode fullwhen you want a slower full-audio final transcription before summarization.transcription.final_engine = "mlx"is best on Apple Silicon. Usemlx-community/whisper-large-v3-mlxfor highest quality,mlx-community/whisper-large-v3-turbofor speed. Usefinal_engine = "whisper"withlocal_model_pathfor the simpler non-MLX route.- Leave
llm.commandempty to delegate summarization to your agent throughagent-queue.json. To call an external LLM directly, setllm.commandto any CLI that accepts a prompt on stdin and writes Markdown to stdout (e.g.["claude", "--print", "--model", "claude-opus-4-7"]). Setllm.enabled=falseonly when the local fallback summary should be final.
Full config reference: docs/configuration.md.
Manual commands and troubleshooting: docs/operations.md.
A few decisions are load-bearing and worth understanding before contributing:
- No virtual audio device. ScreenCaptureKit was added in macOS 13 specifically so apps could capture system audio without driver hacks. Yulu refuses to fall back to BlackHole even when it would be easier — the install friction is the whole point.
- Recording always asks first. Detection is best-effort, but consent is not. Every recording goes through
notify.pywith a real prompt. - The LLM is a plug-in, not a dependency.
transcribe.pyruns all the way to a usable Markdown summary even if no agent ever shows up —fallback_summary()uses regex bucketing on the transcript so you never see "TODO: agent will fill this in". - State lives in JSON files, not RAM.
agent-queue.json,schedule.json, recordings on disk. Queue writes are locked and atomic; a power outage mid-meeting loses the audio after the last flush, nothing else. - One-binary security boundary. Only
Yulu.appholds the TCC permissions. The Python side talks to it through a Unix socket and cannot bypass macOS privacy on its own.
I take a lot of meetings — internal reviews, customer calls, recordings of talks I want to revisit a month later. Granola does not record system audio. Otter is cloud-only and weak in Chinese. Every "just install BlackHole" guide ended with two output devices, no Bluetooth headphones, and a confused friend on the other end.
So I wrote my own. The first version was 200 lines of sox and a prayer. The version you are looking at uses ScreenCaptureKit, mixes half-duplex audio inline, and lets a local Claude Code agent finish the meeting note while I am already in the next one. The name Yulu (语录) is the promise: every conversation deserves to land somewhere you can re-read it later.
Yulu/
├── install.sh # one-line installer entry
├── README.md
├── LICENSE
├── CONTRIBUTING.md
├── CHANGELOG.md
├── docs/
│ ├── configuration.md
│ └── operations.md
├── assets/
│ ├── logo.svg
│ └── demos/
├── skills/
│ └── yulu/SKILL.md # agent contract installed by `npx skills add`
└── yulu/
├── SKILL.md # internal architecture / developer doc
└── scripts/
├── setup.sh # interactive installer (--upgrade for re-runs)
├── uninstall.sh # invoked by `yulu uninstall`
├── yulu # CLI dispatcher (symlinked to ~/.local/bin/yulu)
├── Yulu.app/ # signed (or ad-hoc) audio daemon bundle
├── audio_daemon.swift # ScreenCaptureKit + AVFoundation
├── build_audio_daemon.sh # build & sign Yulu.app
├── record_audio.py # recording control
├── meeting_daemon.py # workflow orchestration
├── scheduler_daemon.py # calendar-based scheduler
├── meeting_detector.py # window-based detector
├── window_scanner.swift # Accessibility window scanner
├── recorder_status.swift # floating status window
├── transcribe.py # MLX / whisper transcription + agent queue writer
├── agent_notify.py # agent queue helper
├── notify.py # macOS notifications & prompts
├── send_summary.py # experimental Telegram / Notion / Zulip adapters
├── summary_template.md # default meeting note template
└── com.yulu.*.plist # LaunchAgent definitions
After installing, the on-disk layout looks like:
| Path | Contents |
|---|---|
~/.yulu/ |
Installed runtime from release assets or the dev channel |
~/.config/yulu/config.json |
User configuration |
~/.config/yulu/models/ggml-*.bin |
Downloaded whisper.cpp models |
~/.config/yulu/audio_daemon.sock |
Unix socket exposed by the daemon |
~/.config/yulu/agent-queue.json |
Pending events for your agent |
~/Movies/Yulu/ |
Your meeting recordings + transcripts + summaries |
~/Library/LaunchAgents/com.yulu.*.plist |
Background services (4 LaunchAgents) |
~/.local/bin/yulu |
The CLI symlink |
- If Yulu helped you, star the repo or share it.
- Ideas, bugs, edge-case meetings: open an issue or PR. See CONTRIBUTING.md.
- Security disclosures: please email rather than open a public issue.
MIT. See LICENSE.
whisper.cpp, ScreenCaptureKit, AVFoundation, terminal-notifier, cloudflared, and gog retain their own licenses.



