escribano
v0.5.0
Published
AI-powered session intelligence tool — turn screen recordings into structured work summaries
Maintainers
Readme
Escribano
Record your screen. Get a structured summary of what you did.
Platform: macOS (Apple Silicon) required. Linux/Windows on the roadmap. Minimum: 16GB unified memory (32GB recommended for best quality)
What you put in
A screen recording. Could be 20 minutes, could be 3 hours. You didn't take notes.
What you get back (~9 minutes later)
# Session Card - Feb 25, 2026
## Escribano Pipeline Optimization
**1h 53m** | coding 22m, debugging 30m, terminal 24m, review 58m, planning 6m
- Optimized the video processing pipeline by evaluating skip-frame strategies
and removing scene detection for 180-minute videos.
- Resolved persistent VLM parsing failures and truncation errors by implementing
raw response logging and fallback mechanisms.
- Executed database migrations to add the new observations table schema.
- Benchmarked the performance of the GLM-5 and Qwen-VL models.
## Frame Extraction & Scene Detection
**19m** | coding 11m, debugging 4m, terminal 4m
- Developed TypeScript scripts for video frame extraction using FFmpeg.
- Debugged a critical parsing failure at Frame 3.
- Monitored terminal logs to track progress of a 792-second video file.
## Research & System Analysis
**22m** | review 3m, research 2m, coding 7m, terminal 6m
- Reviewed GitHub Copilot pricing and Screenpipe repository architecture.
- Investigated the database schema in TablePlus.
---
*Personal time: 2h 38m (WhatsApp, Instagram, Email)*That's the card format. Two others:
Standup format
## Standup - Feb 25, 2026
**What I did:**
- Debugged VLM parsing failures by implementing raw response logging
- Optimized video frame extraction pipeline using FFmpeg
- Analyzed GLM-5 and Qwen-VL model performance
- Implemented database schema migrations
**Key outcomes:**
- Resolved truncated response issues with fallback parsing
- Identified scene detection as a latency bottleneck
- Validated new batch extraction strategy
**Next:**
- Merge scene detection optimization branch
- Benchmark qwen3_next model
- Add unit tests for fallback parsingPaste straight into Slack.
Narrative format
# Session Summary: Sunday, February 22, 2026
## Overview
I spent nearly three hours optimizing the VLM inference pipeline. The main focus
was resolving JSON parsing errors during batch processing and benchmarking the
qwen3-vl:4b model against InternVL-14B. By the end, I'd identified the truncation
root cause, adjusted MAX_TOKENS, and validated the fix against 342 frames —
resulting in a 4x speedup with continuous batching.
## Timeline
* **0:00** (45m): Terminal work, running benchmark scripts
* **45:00** (60m): Debugging JSON parsing in VS Code
* **1:45:00** (40m): Researching model quantization
* **2:25:00** (34m): Documenting performance metrics
...Good for retrospectives or blog drafts.
Benchmarks
Architecture Benefits (MLX Migration)
| Improvement | Impact | |-------------|--------| | Zero dependencies | No external daemons required | | Unified backend | VLM + LLM use same MLX infrastructure | | Native Metal | Optimized for Apple Silicon | | Memory efficient | Sequential model loading (no OOM) | | Auto-detection | RAM-based model selection |
Production Run (March 2026)
Processed 17 real screen recordings with MLX backend:
| Metric | Result | |--------|--------| | Videos processed | 17 | | Successful | 15 (88%) | | Total video duration | 25.6 hours | | Artifacts generated | 45 (3 formats × 15 videos) | | LLM generation | ~2.2 min per video | | Subject grouping | 78.7s avg | | Artifact generation | 53.6s avg | | LLM success rate | 100% (92 calls) | | Hardware | MacBook Pro M4 Max, 128GB | | Backend | MLX (Qwen3-VL-2B + Qwen3.5-27B) |
Everything runs locally. No API keys. Nothing leaves your machine.
Hardware Tiers (March 2026)
Performance varies by hardware:
| Hardware | RAM | VLM Speed | LLM Model | LLM Speed | Total (1min video) | |----------|-----|-----------|-----------|-----------|-------------------| | M4 Max | 128GB | 0.7s/frame | Qwen3.5-27B | 53s avg | ~2.2 min | | M1/M2/M3 Pro | 16-32GB | 1.5-3s/frame | Qwen3.5-9B | 80-120s | ~5-8 min | | M1/M2 Air | 16GB | 7-9s/frame | Qwen3.5-9B | 150-250s | ~12-15 min |
Minimum viable: 16GB unified memory (slower but functional)
Recommended: 32GB+ for comfortable use, 64GB+ for best quality
Why this exists
Most screen recording tools just give you a video file. If you want to remember what you did, you have to watch it back.
Escribano watches it for you. It extracts frames, runs them through a vision-language model, transcribes any audio, and writes up what happened — broken into topics, with timestamps and time per activity.
Built for developers: understands the difference between debugging, coding, reading docs, and scrolling Slack. Doesn't just OCR text (which produces garbage when every screen has "function" and "const" on it).
How it works
Screen recording
│
├──► Audio: Silero VAD → Whisper → transcripts
│
└──► Video: FFmpeg frames → scene detection → adaptive sampling
│
▼
VLM inference (MLX-VLM, Qwen3-VL-2B)
│
▼
"Debugging in terminal"
"Reading docs in Chrome"
"Coding in VS Code"
│
▼
Activity segmentation → temporal audio alignment → TopicBlocks
│
▼
LLM summary (MLX-LM, auto-detected) → Markdown artifactUses VLM-first visual understanding, not OCR + text clustering. OCR fails for developer work because all code screens produce similar tokens. VLMs understand the activity, not just the text.
Quick Start
Prerequisites
# macOS (Homebrew)
brew install whisper-cpp ffmpeg
# MLX for inference (Apple Silicon) - auto-installed on first run
# Or pre-install with:
pip install mlx-vlm mlx-lmThat's it. No external daemons required. MLX-VLM and MLX-LM run in-process.
(Optional) Ollama Backend
If you prefer Ollama, set ESCRIBANO_LLM_BACKEND=ollama:
brew install ollama
ollama pull qwen3:8b # or qwen3.5:27b for 64GB+ RAMRun
# Check prerequisites
npx escribano doctor
# Process a recording
npx escribano --file "~/Desktop/Screen Recording.mov"Local Development
git clone https://github.com/eduardosanzb/escribano.git
cd escribano
pnpm install
pnpm escribano --file "~/Desktop/Screen Recording.mov"Output: ~/.escribano/artifacts/
CLI
Flags
| Flag | What it does |
|------|--------------|
| --file <path> | Process a video file |
| --latest <dir> | Find and process latest video in directory |
| --mic-audio <path> | External mic audio |
| --system-audio <path> | External system audio |
| --format <format> | card, standup, or narrative (default: card) |
| --force | Reprocess from scratch |
| --skip-summary | Process frames only, skip artifact |
| --include-personal | Include personal time (filtered by default) |
| --copy | Copy to clipboard |
| --stdout | Print to stdout |
| --help | Show all options |
Subcommands
| Command | What it does |
|---------|--------------|
| doctor | Check prerequisites and system requirements |
| config | Show current configuration (merged from all sources) |
| config --path | Show path to config file (~/.escribano/.env) |
Formats
| Format | Use for | Style |
|--------|---------|-------|
| card | Personal review, daily notes | Time breakdowns per subject, bullets |
| standup | Daily standup, async updates | What I did / Outcomes / Next |
| narrative | Retrospectives, blog drafts | Prose with timeline |
Examples
# Process and copy
npx escribano --file "~/Desktop/Screen Recording.mov" --format standup --copy
# Find latest video in a directory
npx escribano --latest "~/Videos"
# Narrative format
npx escribano --file session.mp4 --format narrative --force
# With external audio
npx escribano --file recording.mov --mic-audio mic.wav
# View configuration
npx escribano config
npx escribano config --pathSupported inputs
| Source | Command |
|--------|---------|
| QuickTime recording | --file video.mov |
| Cap recording | Auto-detected in ~/Movies/Cap/ |
| Any MP4/MOV | --file /path/to/video.mp4 |
| External audio | --mic-audio mic.wav --system-audio system.wav |
Configuration
Escribano auto-creates a config file on first run that persists your settings:
# View current configuration
npx escribano config
# Show path to config file
npx escribano config --path
# Edit manually
vim ~/.escribano/.envThe config file (~/.escribano/.env) is organized by category with inline comments:
| Category | Examples | |----------|----------| | Performance | Frame width, batch size, sampling interval | | Quality | Scene detection, token budget | | Models | VLM model, LLM model, subject grouping model | | Debugging | Verbose logging, VLM/Ollama debug output | | Advanced | Socket path, timeouts, Python path |
Environment variables always take priority over the config file. For full reference, see AGENTS.md.
Architecture
Clean architecture: domain entities, pure services, adapter interfaces for external systems (MLX-VLM, Ollama, Whisper, FFmpeg, SQLite).
Deep dives:
Full architecture: docs/architecture.md
Requirements
- macOS (Apple Silicon for MLX-VLM)
- Node.js 20+
- 16GB+ RAM (see model tiers above)
- ~10GB disk for models
Roadmap
- [x] VLM-first visual pipeline
- [x] MLX-VLM migration
- [x] Activity segmentation
- [x] Multiple artifact formats
- [x] Auto-detect best LLM model
- [ ] Auto-detect ffmpeg hardware acceleration
- [ ] OCR on keyframes for code/URLs
- [ ] MCP server for AI assistants
- [ ] Cross-recording queries
License
MIT
Escribano = "The Scribe"
