Notes
@michaelfreedman says pg_textsearch is now GA on TigerData Cloud and open source: a BM25 search engine implemented directly inside Postgres in C, with tokenization, indexing, and query execution all staying in the database instead of living in a sidecar service.
@lucaslovexoxo's Amore handles everything needed to self-publish macOS apps outside the App Store: Sparkle updates, code signing, notarization, DMG creation, and hosting. It includes a CLI for CI/CD pipelines and AI-assisted releases, S3-compatible storage, phased rollouts, and beta channels — removing days of manual Sparkle setup.
@helloitsaustin shares his setup for managing Google Ads with Claude Cowork — a custom plugin connecting to the Google Ads API via MCP, encoding common paid search workflows into skills. Works on desktop and Dispatch. He has moved 90% of his growth marketing work from chat to Cowork.
@mynameistito built a terminal-native tool for creating Cloudflare API tokens — no more clicking through dashboard dropdowns. Select accounts, choose services, set read/write permissions, and generate tokens in seconds. Run it with npx directly from the command line.
Ollama now uses Apple's MLX framework under the hood on macOS, unlocking significantly faster performance on Apple Silicon. This accelerates local AI workflows from personal assistants to coding agents — a major win for developers running LLMs on M-series Macs without needing cloud APIs.
Cloudflare published a best practices guide for Durable Objects — especially useful for feeding to agents during early design stages and code review. Covers how to design around single-threaded, globally-unique instances with persistent storage.
@Jnatanh's pi-autoresearch-studio adds granular experiment-to-PR selection with auto-resolved dependencies to the Pi Coding Agent workflow. Built as a Pi extension, it lets you cherry-pick which experimental runs become pull requests instead of committing everything automatically.
@bcherny's tip for power users: Claude Code has deep git worktree support for running multiple agent sessions in parallel on the same repo. Use claude -w to start in a new worktree, or check the worktree option in Claude Desktop. Essential when you have dozens of agents working simultaneously.
@marcelpociot's Polyscope uses copy-on-write clones instead of complicated worktrees for managing multiple project checkouts. Way faster, uses less disk space, and includes all dependencies without complex setup scripts.
@_chenglou's new TypeScript library brings fast, accurate text measurement to the browser without touching the DOM. The pure userland algorithm can lay out entire web pages bypassing CSS and reflows — foundational work for the next generation of high-performance UI tooling.
@penberg from Turso clarifies their SQLite compatibility promise: databases are fully compatible with SQLite's file and WAL formats, you can always migrate back, and any incompatible features (like concurrent writes via BEGIN CONCURRENT) require explicit opt-in. When Turso falls short of compatibility, they treat it as a bug to fix rather than a feature difference to document.
@micLivs makes the case against vector search for most memory use cases. Their pi napkin tool uses BM25 and TF-IDF on plain Obsidian markdown files—no embeddings, no vector DB. On HotpotQA multi-hop questions it hit 99.8% recall and 79.6% F1 versus 90%/41% for the original and 29%/19% for Mem0. Sometimes a good map beats a complex pipeline.
Cloudflare Workers now lets you declare required secrets in wrangler.jsonc or TOML — Wrangler validates them locally, generates TypeScript types, and blocks deploys if any are missing. Small DX win that catches config drift before it hits production.
@M1Astra archived Anthropic's Claude Mythos blog post before it was taken down — a rare look at internal documentation about Claude's character, values, and the philosophical foundations behind how it was trained to engage with the world.
@appfactory's Agent-CI brings GitHub Actions workflows to local execution with a twist: when a step fails, it pauses and lets your AI agent fix the issue before retrying just that step. Uses the standard GH Actions Docker image but with near-zero caching latency, designed for the tight feedback loops agents need without burning through CI minutes.
Claude Code now supports .worktreeinclude files — drop one in your project root to automatically copy gitignored files like .env, .env.local, or config/secrets.json when Claude creates a worktree. Handy for keeping your agent's isolated branches functional without manual setup.
pi-lab lets you A/B test tools in the pi coding agent by intercepting calls, forking into isolated lanes, comparing outputs, and merging the winner back. Still experimental, but a promising approach for iterating on agent tooling without flying blind.
@jerryjliu0 on LiteParse — a fast document parser that lets agents read any PDF on the internet. No VLM under the hood, so it runs anywhere. Latest update adds URL parsing and buffer/stream support. Designed to plug into 40+ different agents.
Gemini in Google Calendar now handles meeting scheduling by analyzing availability and time zones across busy calendars. Small quality-of-life improvement for anyone who's played scheduling Tetris across multiple participants.
@FabianHiller makes the case for Valibot over Zod: 88% smaller bundles (1.91 kB vs 16.57 kB), 16× faster initialization (54 μs vs 735 μs), plus cleaner pipelines and precise TypeScript inference. If you ship to web, edge, or serverless, the numbers are hard to ignore.