Pair Programmer Plugin Adds Live Screen, Voice, and Audio Context to Claude Code

A developer has released Pair Programmer, a plugin that addresses Claude Code's lack of real-time context by providing live desktop perception. The tool captures three data streams: screen content (with visual indexing generating short scene descriptions), microphone input (transcription plus lightweight intent classification for questions, explanations, or commands), and system audio (indexing meetings, tutorials, or other audio playing on the machine).
Architecture and Implementation
The system uses a multi-agent pipeline rather than a single model approach. It runs specialized agents in parallel:
- Screen reader for visual context
- Voice processor for microphone transcription and intent classification
- Audio classifier for system audio
- Orchestrator that correlates all inputs and synthesizes a single response
The plugin is built on VideoDB infrastructure. While indexing currently uses cloud models, the design is model-agnostic—the Index layer can swap in any VLM or LLM. The developer mentions interest in wiring local models for visual description and transcription layers.
Current Status and Installation
The plugin is currently macOS only. Installation requires three commands. The GitHub repository is available at https://github.com/video-db/claude-code/tree/main.
The developer is seeking feedback on architectural approaches, specifically whether developers prefer the multi-agent pipeline with specialized models and orchestration or pushing toward a single model end-to-end solution for desktop perception systems.
📖 Read the full source: r/ClaudeAI
👀 See Also

Claude Skills Silently Override Instructions: Undocumented Pitfalls Exposed
User discovers Claude skills silently enforce hard limits on user input via `ask_user_input_v0` (max 3 questions, 4 options each), `Write` overwrites files while `create_file` refuses on Claude.ai, and relative paths in `references/` don't resolve. A community repo catalogs findings.
Almanac: An AI Agent with a Self-Updating Company Wiki
Almanac (YC S26) is an always-on AI agent that compiles your company's tools into a wiki, enabling proactive task completion and long-horizon follow-ups. It runs on its own computer, connects to Gmail, Slack, and more, and is now live with a 7-day trial.

Fixing OpenClaw Browser CAPTCHAs with Camoufox and CLI Wrapper
OpenClaw's built-in Chromium browser triggers bot detection through Chrome DevTools Protocol, JavaScript injection artifacts, and hardware fingerprinting inconsistencies. The solution uses Camoufox (a Firefox fork) modified at the C++ level and wrapped in a CLI that returns accessibility-tree snapshots to reduce token usage.

Lightfeed Extractor: TypeScript Library for Robust Web Data Extraction with LLMs
Lightfeed Extractor is a TypeScript library that handles the full pipeline from raw HTML to validated structured data using LLMs, with features like HTML-to-markdown conversion, Zod schema validation, JSON recovery, and built-in Playwright browser automation.