Personal CLI note-taker for turning meeting audio into cleaned meeting manuscripts.
Project description
Fly on the Wall
Fly on the Wall is a personal CLI note-taker for meeting audio.
It takes local audio recordings, transcribes them, identifies recurring speakers where possible, cleans the transcript, analyzes the meeting, exports durable Markdown artifacts, and can publish readable notes into an Obsidian vault.
The tool is designed for one person running it locally. There is no hosted service, login system, team workspace, or multi-tenant data model.
Project Status
This is early alpha software. It is usable as a local personal CLI, but command behavior, storage schema, and output formats may still change between releases.
Until 1.0, minor releases may include breaking changes. Back up ~/.local/share/fly-on-the-wall/ before upgrading if you depend on stored meeting data.
Issues and suggestions are welcome via GitHub Issues, but the project is provided as-is with no support guarantee.
Audio is sent to configured transcription/AI providers during processing. Optional speaker identity embeddings run locally when installed with the identity extra. External providers may charge usage-based fees depending on your provider account, pricing plan, and processing volume.
Development Transparency
This project was developed as an agentic coding project using OpenCode with OpenAI GPT-5.5. Code quality checks were supported by CodeScene's CodeHealth analysis.
What It Does
fow process <audio> runs the main pipeline:
- Imports the audio into local app storage.
- Extracts audio metadata and recording timestamps where possible.
- Sends the raw audio to ElevenLabs for transcription and diarization.
- Stores the raw provider response for auditability.
- Normalizes provider output into internal segments and meeting-local speakers.
- Matches meeting-local speakers to known people using local voice embeddings.
- Renders a named transcript.
- Runs deterministic cleanup.
- Optionally runs OpenAI light cleanup, meeting analysis, and title generation.
- Exports immutable Markdown artifacts.
- Publishes to configured Obsidian targets if auto-publish is enabled.
Final user-facing exports include:
transcript.md: cleaned readable manuscript.analysis.md: summary, decisions, action items, open questions, and important details.manifest.json: internal metadata about the export.
Current Provider Setup
The current transcription provider is ElevenLabs Scribe v2.
OpenAI is used for optional transcript cleanup, meeting analysis, and generated meeting titles when an OpenAI API key is available.
Speaker identity matching uses local embeddings via pyannote.audio / pyannote/wespeaker-voxceleb-resnet34-LM. Audio used for identity matching is processed locally. The first model load may contact Hugging Face to download model weights unless they are already cached locally.
Installation
Install the CLI with uv tool:
uv tool install fow-cli
fow setup
Speaker identity matching is optional and adds heavier local ML dependencies:
uv tool install "fow-cli[identity]"
If you already installed the base CLI with uv tool, upgrade it with the optional extra:
uv tool upgrade --reinstall "fow-cli[identity]"
Development from a source checkout also uses uv:
uv sync
uv run fow
Include speaker identity dependencies during local development with:
uv sync --extra identity
You can point fow at uv run fow with a shell alias:
alias fow="uv run fow"
Configuration And Secrets
Configuration lives under:
~/.config/fly-on-the-wall/
Application data lives under:
~/.local/share/fly-on-the-wall/
API keys are read from environment variables first, then from the OS keyring.
Useful secret commands:
fow secrets status
fow secrets set elevenlabs
fow secrets set openai
fow secrets remove openai
Expected environment variables:
ELEVENLABS_API_KEY
OPENAI_API_KEY
Basic Usage
Run the interactive setup wizard:
fow setup
It checks required dependencies, helps store API keys, sets your user identity, and can configure Obsidian publishing and watched folders.
Process one recording:
fow process path/to/meeting.m4a
Optionally provide a manual title and context:
fow process path/to/meeting.m4a --title "Board prep" --description "Monthly board preparation call"
List meetings:
fow meetings list
Show one meeting:
fow meetings show <meeting>
Show pipeline status:
fow meetings status <meeting>
Refresh derived outputs for one meeting without retranscribing:
fow refresh meeting <meeting>
Refresh every meeting with stale derived outputs:
fow refresh stale-meetings
People And Speakers
The CLI uses two related concepts:
- A person is a stable real-world identity, such as
Person AorPerson B. - A meeting speaker is a local diarization label inside one provider run, such as
speaker_0.
Manage known people:
fow people list
fow people create "Person A"
fow people show "Person A"
Review unknown meeting speakers interactively:
fow meetings speakers review
fow meetings speakers review --include-uncertain
fow meetings speakers review --only-uncertain
Review speakers for one meeting:
fow meetings speakers review --meeting <meeting>
List meeting speakers that are not assigned to known people:
fow meetings speakers unknown
fow meetings speakers unknown --meeting <meeting>
Assign a meeting speaker to a known person, creating the person if needed:
fow meetings speakers assign <local-speaker-id> "Person A"
Ignore a meeting speaker so it does not appear in future reviews:
fow meetings speakers ignore <local-speaker-id>
Refresh speaker matching after adding voice samples or changing identities:
fow refresh speakers
fow refresh speakers <meeting>
fow refresh speakers --include-known-speakers
Backfill missing known-person voice embeddings:
fow people embeddings status
fow people embeddings backfill
Watched Folders
Fly on the Wall can watch local folders, mounted Dropbox/rclone folders, and removable recorder folders.
Add a folder:
fow watch folders add /path/to/recordings --name recordings
List watched folders:
fow watch folders list
Run one scan:
fow watch scan
Watch continuously:
fow watch run
The watcher tolerates missing/remounted folders and uses periodic scans because cloud/removable mounts may not emit reliable filesystem events.
Publishing To Obsidian
Publishing is separate from internal exports.
Internal exports are immutable. Obsidian notes are mutable and idempotent, so republishing updates the existing note rather than creating duplicate notes.
Add an Obsidian target:
fow publish targets add obsidian "/path/to/Obsidian Vault/Fly on the Wall" --name obsidian --auto-publish
Publish one meeting:
fow publish meeting <meeting> --target obsidian
Publish all exported meetings:
fow publish all --target obsidian
Example Personal Setup
One practical setup is to combine several recording sources with watched folders and Obsidian publishing:
- A Philips DVT 4110 voice recorder is automounted when connected, exposing recordings as a local folder.
- A dedicated Dropbox recording folder is synced locally with rclone.
- On iPhone, RecUp can upload recordings directly to Dropbox. Assigning RecUp to the iPhone Action Button makes quick capture a one-button workflow.
fow watch runwatches both the recorder mount and the local Dropbox/rclone folder.- Processed notes are published into an Obsidian vault. If the vault is already synced with Remotely Save, notes can then appear on other devices through Obsidian sync tooling.
In that setup, recordings can enter from either the hardware recorder or phone uploads, fow processes them locally, and Obsidian becomes the final reading and review surface.
Cost Tracking
The app records estimated external service usage and costs for future live provider calls.
It tracks:
- ElevenLabs transcription usage via
audio_duration_secs. - OpenAI cleanup, analysis, and title-generation usage via provider token usage.
- Pricing snapshots used for each estimate.
Show total estimated costs:
fow costs summary
Show estimated costs for one meeting:
fow costs meeting <meeting>
Historical ElevenLabs usage can be backfilled accurately from stored raw responses. Historical OpenAI usage can only be approximated unless raw OpenAI response usage was stored.
Local Storage
The app stores operational state in SQLite and large artifacts on disk:
~/.local/share/fly-on-the-wall/
fly.db
audio/
artifacts/
voice-samples/
exports/
Raw provider responses are intentionally preserved. They are useful for debugging, normalization changes, speaker review, cost tracking, and future reprocessing.
Uninstalling
Remove the installed CLI:
uv tool uninstall fow-cli
Remove local configuration and app data if you no longer need stored meetings, exports, raw provider responses, voice samples, or settings:
rm -rf ~/.config/fly-on-the-wall ~/.local/share/fly-on-the-wall
This does not remove original recordings that were processed from outside the app storage directory.
Development
Install development dependencies:
uv sync --dev
Install pre-commit hooks:
uv run pre-commit install
Run all pre-commit hooks manually:
uv run pre-commit run --all-files
Run tests:
uv run pytest
Run lint and formatting checks:
uv run ruff check .
uv run ruff format --check .
Build distribution artifacts:
uv build
Test a built wheel locally:
uv tool install dist/fly_on_the_wall-0.1.0-py3-none-any.whl
fow setup
Publish to PyPI after verifying the build, package name, and license metadata:
uv publish
Support
If Fly on the Wall is useful to you, and you have the spare cash, buying me a coffee would be lovely. Absolutely no pressure.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file fow_cli-0.1.0.tar.gz.
File metadata
- Download URL: fow_cli-0.1.0.tar.gz
- Upload date:
- Size: 54.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.16 {"installer":{"name":"uv","version":"0.11.16","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"KDE neon","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c62ba7a7b2528d2169be89941589940195cccc78c288d61fba8d34984e7715d3
|
|
| MD5 |
35a408bbf246a7e04b08709775136769
|
|
| BLAKE2b-256 |
cf7de360671014b311205426ae79ed33a1c080d43665f372f615ae1de5dda4f8
|
File details
Details for the file fow_cli-0.1.0-py3-none-any.whl.
File metadata
- Download URL: fow_cli-0.1.0-py3-none-any.whl
- Upload date:
- Size: 75.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.16 {"installer":{"name":"uv","version":"0.11.16","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"KDE neon","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ec50c749002707db72b56122ec85ea0d5b509cf0e2f56bf02cbba13ffb80d7dc
|
|
| MD5 |
6c233d51cd7470ca98dc5179c8803c64
|
|
| BLAKE2b-256 |
523f16f56902d3ac9735c9418f4c859b99a24b0cde508db7bc51df279085a220
|