Notes
@jpschroeder announces sip, an open source WASM image processor for Cloudflare Workers built around streaming resize instead of buffering entire files. The practical win is lower memory pressure, which means even large JPEGs can be transformed inside Durable Objects without immediately running into out-of-memory limits.
@superdoteng introduces Superconductor, a native macOS app for agentic engineering built entirely in Rust. The pitch is straightforward: one fast local control surface for managing multiple coding agents without the Electron or Tauri stack many new AI tools default to. Still in alpha, but interesting as a sign that agent tooling is starting to get its own native desktop layer.
@Dimillian says Codex now includes a Build macOS Apps plugin that bundles skills for UI work, refactoring, and telemetry inside the app. It is a small but telling step toward packaged domain-specific agent workflows, where the IDE ships opinionated capability sets instead of making every user assemble their own prompt stack from scratch.
@jorilallo points to Claude + Linear Agent Bridge, a sample project showing how to wire Anthropic's Managed Agents into Linear's Agents SDK. The demo relays issue context into Claude sessions and streams responses back into Linear, which makes it a useful reference for teams building custom agents directly into their existing ticket workflow.
@msllrs open sourced Relay, a macOS menu bar app that turns voice notes, clipboard captures, screenshots, and files into structured prompts for LLMs. The clever bit is inline assembly while you dictate, so copied context lands exactly where you referenced it instead of becoming one more manual prompt-building chore.
@vercel adds team-wide Zero Data Retention to AI Gateway, which matters more than the feature name suggests: one switch can force requests onto ZDR-compliant providers across a whole team instead of relying on every developer to remember per-request settings. A small but real improvement for companies trying to use multiple models without quietly leaking sensitive prompts.
@linuz90 introduces Cogito, a Mac-native Markdown editor built for a plain-files workflow where your notes, scripts, and agents all operate on the same folder tree. The pitch is less “AI writing app” and more “fast, beautiful local editor for the way people actually work now”: tabs, quick open, wiki links, live external file updates, and no database or lock-in.
@UstunOzgur points to a practical guide on hardening .env.local with dotenvx and the OS keychain. The core idea is simple: keep ordinary local config in plaintext, move actual secrets into a separate encrypted file, and store the decryption key outside the repo and off disk. Good advice for the age of MCP tools, editor extensions, and AI agents that can read your workspace.
@microlinkhq open sourced is-antibot, a library that identifies anti-bot systems and CAPTCHA challenges from raw HTTP responses. It analyzes headers, cookies, HTML, URLs, and status codes to recognize 30+ protection providers, giving scrapers and data pipelines a practical way to understand blocks before wasting money on blind retries or browser fallbacks.
@bu7emba introduces Lobu, an open source platform for running persistent AI agents across Slack, Telegram, WhatsApp, and APIs with sandboxing and per-user isolation built in. The more interesting layer is the organizational substrate around it: shared memory, installable skills, and a model where agents work across contexts without direct access to secrets.
@micLivs introduces pi-psst, a secrets layer for coding agents that injects credentials as environment variables without ever exposing raw values to the model. Secrets live in a local encrypted vault, tool output gets scrubbed automatically, and the agent only knows which secrets exist. A neat pattern for safer autonomous shell access.
@zachmeyer built Locker, an open-source Dropbox/Google Drive alternative that stays storage-provider agnostic. The interesting bit is the architecture: bring your own bucket, mount S3/R2/Vercel Blob/local storage behind a virtual filesystem, and layer search on top instead of treating sync as a monolith. Useful direction for teams that want file collaboration without platform lock-in.
@irushi points to Ares MBL, a prompt-layer guide for making models like GPT-5.4, Gemini, Ollama, and Codex behave more like Claude. The repo names eight recurring failure modes — from sycophancy and verification avoidance to completion theater and context amnesia — and packages the lessons into a drop-in system prompt.
Zero 1.0 — @aboodman and Rocicorp declare Zero stable after two years of work and 50+ releases. Zero is a sync engine for local-first apps that handles real-time collaboration and offline-first data without the complexity of building your own sync layer.
TurboQuant from @GoogleResearch — a compression algorithm that reduces LLM key-value cache memory by at least 6x and delivers up to 8x speedup with zero accuracy loss. The KV cache is often the memory bottleneck in long-context inference, so this could meaningfully extend context windows on existing hardware.
After WIMP — @threepointone explores what happens when users can describe procedures in natural language that compiles to code. The historic split between programmers (who reshape the machine) and everyone else (who use pre-built interfaces) starts to dissolve. Every app becomes directly programmable on demand, not through menus but through conversation.
Playbit — @rsms and team release a new runtime for personal-scale software. A minimal ABI-stable syscall interface that lets you write highly dynamic, collaborative graphical apps once and run them anywhere. Designed for programs by you, for you and the people in your life — filling the gap between web apps and native development.
@connors introduces Sutro — an email client designed for people and their agents. Bring your own Claude, Codex, or OpenClaw agents and have them work with you directly in your inbox. Email is not going anywhere; it is just getting agentic.
@jarredsumner's approach to Bun stability: a JavaScript engine fuzzer runs against Bun and Node APIs, and when it finds bugs, it automatically spawns Claude to fix them. A tight loop where automated testing surfaces issues and AI handles the remediation — no human bottleneck in the bug-fix cycle.
@aidenybai releases Expect — open-source CLI that lets agents test your code in a real browser. Point Claude Code or Codex at your app, get video recordings of every bug found, then fix and repeat until all tests pass. Works as a standalone CLI or agent skill.