Skip to content

Instantly share code, notes, and snippets.

View louis030195's full-sized avatar

Louis Beaumont louis030195

View GitHub Profile
@louis030195
louis030195 / install-screenpipe-mcp.ps1
Last active March 27, 2026 21:36
Install screenpipe MCP server for Claude Desktop (Windows)
irm https://github.com/screenpipe/screenpipe/releases/download/mcp-v0.10.0/screenpipe-mcp.mcpb -OutFile "$env:TEMP\screenpipe.mcpb"; $claude = @("$env:LOCALAPPDATA\AnthropicClaude\claude.exe","$env:LOCALAPPDATA\Programs\Claude\Claude.exe","$env:LOCALAPPDATA\Programs\claude-desktop\Claude.exe") | Where-Object { Test-Path $_ } | Select-Object -First 1; if ($claude) { & $claude "$env:TEMP\screenpipe.mcpb" } else { Start-Process "$env:TEMP\screenpipe.mcpb" }
@louis030195
louis030195 / gist:d8a2d1ebe7464212c2c3078a52e796af
Created March 27, 2026 02:06
Fix screenpipe crash: change audio engine from parakeet to whisper-tiny
# Fix screenpipe crash caused by parakeet-mlx on low-memory devices
# Quit screenpipe first, then run:
cd ~/.screenpipe && cp store.bin store.bin.bak && sed -i '' 's/"audioTranscriptionEngine":"parakeet"/"audioTranscriptionEngine":"whisper-tiny"/g' store.bin && echo "done — restart screenpipe"
@louis030195
louis030195 / reddit-brand-monitor.md
Last active March 25, 2026 02:01
Screenpipe pipe: Reddit-only brand monitor — semantic matching via Reddit JSON API, no auth needed

schedule: '*/30 8-23 * * *' enabled: true preset:

  • pi-agent icon: 📡 title: Reddit Brand Monitor featured: true description: Monitor Reddit for conversations where your product matters — semantic matching, not just keywords template: true

Screenpipe 2.2.254 — Parakeet, Native UI, Meeting Detection v3

Hey all,

Louis here. Massive two weeks. New speech engine, full native macOS overhaul, meeting detection on every platform, and 150+ fixes.


Please update the app, it might be outdated.

<mjml>
<mj-head>
<mj-attributes>
<mj-all font-family="-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif" />
<mj-text font-size="15px" line-height="1.6" color="#1a1a1a" />
<mj-section padding="0 20px" />
</mj-attributes>
<mj-style>
a { color: #000; text-decoration: underline; }
h2 { margin-top: 28px; margin-bottom: 8px; }
a { color: #000; text-decoration: underline; } h2 { margin-top: 28px; margin-bottom: 8px; }
@louis030195
louis030195 / screenpipe-playwright-pipe-guide.md
Last active March 23, 2026 20:35
How to create Screenpipe pipes that automate web apps using Playwright CLI

Creating Screenpipe Pipes with Playwright CLI

Pipes are AI agents defined as single .md files. Combined with playwright-cli, they can automate any web app based on what you do on your screen.

How it works

Screenpipe (watches your screen 24/7)
    → Pipe (AI agent, runs on schedule)
 → Reads your screen activity via Screenpipe API
@louis030195
louis030195 / gist:764c1942738b21fe2d7ef6f198c5dcb6
Created March 20, 2026 21:36
Twitter/X DM automation using bbctl web — read & send DMs with zero API keys
#!/bin/bash
# Twitter/X DM Automation using bbctl web
# Reads your DMs, identifies spam, and sends your latest post to spammers
#
# Requirements: bun (https://bun.sh)
# No API keys needed — uses your browser cookies
#
# How it works:
# 1. Extracts cookies from your real browser (Chrome, Arc, Brave, Edge)
# 2. Launches headless Chromium with those cookies (already authenticated)
@louis030195
louis030195 / pi-rpc-first-prompt-bug.sh
Created March 20, 2026 14:29
Reproduction: Pi agent RPC mode first-prompt crash (startsWith error)
#!/bin/bash
# Reproduction: Pi agent v0.60.0 RPC mode first-prompt crash
# Bug: Every first prompt in --mode rpc returns success:false with
# "Cannot read properties of undefined (reading 'startsWith')"
# The second prompt works fine.
#
# This affects ALL models (Claude, Qwen, Gemini, etc.)
# Tested with Pi agent @mariozechner/pi-coding-agent v0.60.0
#
# Setup: npm install @mariozechner/pi-coding-agent

Hey @everyone

v2.2.176 is here

Incredible week. Please update your app ⚠️

🏪 Pipe Store — community marketplace is live! Publish, browse, and install pipes. Share as clickable URLs. "Redact API keys" safety net + "Optimize" button for your pipes.

🤖 Meeting Detection v2 — completely rebuilt. Scans UI elements instead of just checking focused app. Supports 35+ apps (Zoom, Teams, Meet, Slack huddles…) and 30+ browser URL patterns. Works on macOS, Windows, and Linux.