Topic · 55 stories

#developer-tools

Reporting, analysis and practical guides connected to developer-tools.

Latest in #developer-tools

Newest first
AI News

Nemotron 3.5 Lightning: Nvidia's 3B-Active Agent Workhorse

Nvidia released Nemotron 3.5 Lightning on August 11, 2026: an open 30B mixture-of-experts model with 3B active parameters, licensed under OpenMDW-1.1 with weights, training data and recipes included. It targets the execution layer of long-running agents rather than frontier reasoning, reaching 86% accuracy on PinchBench while completing 10,000 tasks 30% faster than Qwen3.6 35B, and up to 4x the output speed of similar-sized models. Speed comes from baked-in multi-token prediction plus DSpark and DFlash draft models, with NVFP4 and BF16 checkpoints. It runs on Jetson, RTX 5090 and DGX Spark via LM Studio, llama.cpp, Ollama and Unsloth, and ships alongside NeMo Switchyard for routing planning to frontier models and execution to Lightning.

Aug 12, 2026 · 6 min read
Tech Tips

Promptfoo: Test Your LLM Prompts Like Unit Tests

Promptfoo is an open-source CLI (24.1k GitHub stars) that treats LLM prompts as testable code using YAML test cases and assertions. OpenAI announced it was acquiring the company on March 9, 2026, committing to continue the open-source project. This guide covers installation (Node.js 22.22.0 or newer, Node 24 recommended), scaffolding a first eval with npx promptfoo@latest init, choosing assertion types by cost tier, guarding cost and latency, RAG and agent evals, CI gating strategy, the red teaming half of the tool, and three honest limits of eval suites.

Aug 10, 2026 · 8 min read
Open Source

SpeakoFlow: The Open-Source Voice Assistant That Stays Local

SpeakoFlow is a free, MIT-licensed local-first voice assistant for Windows, macOS and Linux, built by solo developer Abhishek Barali as a fork of CJ Pais's Handy. It combines hotkey dictation, a 'Hey Flow' generative writing mode, an assistant panel with screen vision, live translation and AI cleanup. Speech-to-text always runs on-device via whisper.cpp and Parakeet; the assistant can run fully offline through a built-in llama.cpp engine, through Ollama or LM Studio, or through any OpenAI-compatible cloud provider with your own key. There is no account and no telemetry. The trade-offs are real: the binaries are not code-signed on Windows or macOS, requiring a manual quarantine-clearing step on Mac, and the project is at v1.0.1 with 126 commits, six GitHub stars and one maintainer.

Aug 7, 2026 · 8 min read
Reviews

Atlaso: Does One Memory Layer Fix Every AI Tool in 2026?

Atlaso is a cross-tool AI memory layer from Atlaso Labs that installs into Claude Code, Cursor, Codex, Claude Desktop, OpenCode and Antigravity via a single shell command, capturing decisions after each turn and injecting the top five relevant memories before the next one. Its published four-judge study on LongMemEval-S (n=500, shared Qwen 3.5-9B reader) shows Atlaso beating mem0 by 9.8 to 14.8 percentage points, and also documents an 11.5-point loss to mem0 on the adversarial LoCoMo subset plus a failure to reproduce mem0's headline 93.4 percent figure. The shipped product lags the research: supersede logic is not triggered automatically, injected memories are invisible from the terminal, and there is no team memory or self-hosting. Free covers one device and one tool; Pro is 10 dollars a month and Build is 25.

Aug 7, 2026 · 8 min read
AI News

Muse Code: Meta's Terminal Agent Is Cheap If You Pay in Code

Meta Superintelligence Labs released Muse Code, a beta terminal coding agent for macOS and Linux powered by the new Muse Spark 1.2 model, on August 5, 2026. Meta reported 82.9% on Terminal-Bench 2.1 but placed behind Claude Opus 5 on all three coding charts it published, and both figures come from Meta's own harness with no verified leaderboard entry. Meta's previous model published 80.0 and verified at 76.2% when the Terminal-Bench team ran it. The genuinely notable engineering is an append-only event log that makes runs replay-exact and restart-safe, plus persistent async background agents. The most consequential detail is pricing: a contributor tier at $0.10 per million input and $0.20 per million output tokens, 12.5x and 21x cheaper than standard, in exchange for Meta training on your prompts.

Aug 6, 2026 · 8 min read
Reviews

Prelint: The AI Reviewer That Catches Product Drift, Not Bugs

Prelint is a GitHub and GitLab app that reviews every pull request against a team's product specs, ADRs, and prior decisions rather than against the code itself, targeting what it calls product drift: technically correct code that quietly contradicts decisions the team already made. It launched on Product Hunt on July 29, 2026, taking #1 Product of the Day and #1 Product of the Week with 676 points. The core architecture is a decision ledger that weighs the authority of each decision and supersedes rather than deletes entries, exposed to agents through a CLI and MCP server. Prelint's own research across 56,706 public pull requests found that docs context raised the reviewer flag rate from 13.3% to 36.6% at 80.8% precision. Pricing is $1 per completed review with no seats, and public repositories are free.

Aug 6, 2026 · 8 min read
Deep Dives

Speculative Decoding: How LLMs Write Tokens 3x Faster

Speculative decoding accelerates LLM inference by having a cheap drafter propose several tokens that the target model verifies in one parallel forward pass, with a rejection-sampling step that makes the output distribution provably identical to the target model's. The landscape runs from separate draft models through Medusa (2.2-3.6x) and EAGLE-3 (up to 6.5x) to DeepSeek's co-trained MTP heads (85-90% second-token acceptance) and model-free n-gram lookup. The catch: speculation spends surplus compute to save memory bandwidth, so gains shrink as batch size rises and can go negative once the GPU becomes compute-bound.

Aug 5, 2026 · 10 min read
Reviews

Google Antigravity: Is the Agent-First IDE Worth It in 2026?

Google Antigravity is a VS Code fork built around autonomous agents, with a Manager View that dispatches up to five parallel agents and a built-in Chrome browser for front-end verification. Gemini is the default model, with Claude and GPT supported. Strengths are parallel-agent workflow and browser verification; weaknesses are shifting credit-based pricing, a five-agent cap, and a closed-source core. The verdict: a strong secondary tool, especially for front-end and Gemini-centric workflows.

Aug 4, 2026 · 5 min read
Deep Dives

FlashAttention: The IO-Aware Trick That Made Long Context Cheap

FlashAttention is an IO-aware, exact attention algorithm from 2022 that avoids writing the full N-by-N attention matrix to slow GPU HBM. Using tiling, an online-softmax running-statistics trick, kernel fusion, and recomputation, it cuts memory from O(N^2) to O(N) and delivered up to 7.6x speedups. FlashAttention-2 reached ~70% of A100 peak FLOPs; FlashAttention-3 (2024) exploits Hopper asynchrony and FP8 to hit ~840 TFLOPs BF16 (~75% H100 utilization). It now powers PyTorch, vLLM, and long-context serving.

Aug 1, 2026 · 9 min read
Reviews

Cursor: Is the AI Code Editor Worth Its Credit Bill in 2026?

Cursor, the VS Code-based AI editor from Anysphere, crossed $2B ARR and 1M+ paying users by February 2026 and is used in 64% of Fortune 500 firms. Its June 2025 shift to credit-based billing sparked backlash and a public apology. Auto mode is unlimited on paid plans; manually pinning frontier models like Opus is what drives surprise overages. Six tiers run from free Hobby to $200 Ultra.

Jul 31, 2026 · 6 min read
Open Source

Meetily: The Open-Source AI Notetaker That Runs 100% Local

Meetily is a privacy-first, open-source AI meeting assistant with 27.4K GitHub stars and an MIT license. Built on Rust and Tauri, it runs Whisper or Parakeet transcription and Ollama summarization entirely on your own device, so meeting audio never touches the cloud. It supports macOS and Windows, with flexible summary providers and a commercial PRO tier.

Jul 30, 2026 · 5 min read
Open Source

Bumblebee: Perplexity's Read-Only Dev Endpoint Scanner

Bumblebee is Perplexity's open-source, read-only supply-chain scanner for macOS and Linux developer endpoints, written in Go with zero non-stdlib dependencies under Apache 2.0. It inventories npm, PyPI, Go, RubyGems, Composer and other package managers plus MCP configs, editor extensions, and browser extensions, emitting NDJSON findings against operator-supplied exposure catalogs. Its read-only design never invokes package managers, so it cannot trigger malicious postinstall scripts during a scan.

Jul 28, 2026 · 6 min read
Open Source

Grok Build: xAI Open-Sources Its Rust Terminal Coding Agent

On July 15, 2026, xAI open-sourced Grok Build, the Rust terminal coding agent behind its grok CLI, under Apache 2.0. The release covers the agent loop, tools, TUI, and extension system, and supports a fully local-first config.toml path pointing at self-hosted inference. External PRs aren't accepted and the model stays closed, so it's a source-transparency release, not a community project.

Jul 27, 2026 · 6 min read
Tech Tips

LangGraph: Build Durable, Stateful AI Agents in Python

A practical guide to LangGraph, the durable agent framework that hit 1.0 in October 2025 and the 1.2 line by mid-2026. It covers the three core primitives (state, nodes, edges), conditional edges for branching and loops, and checkpointer-based persistence for crash recovery and memory. It also explains the deprecation of create_react_agent in favor of LangChain's create_agent, and the rule of thumb for choosing between the high-level agent builder and low-level StateGraph.

Jul 26, 2026 · 6 min read
Reviews

Glaze: Can Raycast's AI Really Build You a Native Mac App?

Glaze by Raycast lets users build real native macOS apps by chatting with AI - apps that run locally, work offline, and support keyboard shortcuts, menu bar integration, and file access. It launched publicly on July 1, 2026 and topped Product Hunt. Free credits let you try it; Pro is $20/month for 200 credits, Team $30/seat. It is Mac only and the credit model is the main caveat.

Jul 25, 2026 · 5 min read
Open Source

Strix: The Open-Source AI Pentester That Writes Exploits

Strix is an open-source (Apache-2.0) AI penetration-testing tool with ~39,000 GitHub stars. Its autonomous agents dynamically run your app, exploit OWASP Top 10 vulnerabilities, and validate each finding with a working proof-of-concept, cutting the false positives of static scanners. It installs via a single curl command, needs Docker plus an LLM API key, is model-agnostic through LiteLLM, and drops into CI/CD with a non-interactive mode that fails builds on findings.

Jul 24, 2026 · 5 min read
Open Source

OpenClaw: The 383K-Star AI Agent With a Security Problem

OpenClaw is a free, self-hosted, model-agnostic AI agent that runs as a persistent background daemon and acts across WhatsApp, Telegram, Slack, and Discord. It became the fastest-growing repo in GitHub history (383K+ stars) but carries serious security flaws: authentication off by default, plaintext credential storage, tens of thousands of internet-exposed instances, and fake installers spreading infostealer malware. Run it only from the official repo, behind a VPN, with auth on and scoped credentials.

Jul 22, 2026 · 6 min read
Reviews

Zed 1.0: Is the Rust-Powered AI Editor Worth Switching To?

Zed 1.0, released April 29, 2026, is an open-source code editor written in Rust with a custom GPU-accelerated framework, positioned as both a fast traditional editor and an AI workbench. It offers agentic editing, Zeta edit prediction, parallel agents, and the open Agent Client Protocol, plus a generous free tier. Its main drawbacks are a small extension library and uneven language support compared with VS Code.

Jul 21, 2026 · 5 min read
Tech Tips

LiteLLM: One Unified API for Every LLM Provider in 2026

LiteLLM is an open-source gateway that gives developers a single OpenAI-format interface to call 100+ LLM providers. This tutorial covers installing the SDK and Proxy Server, switching providers by changing a model string, unified exception handling, streaming, and adding cost tracking, observability, virtual keys, and budgets.

Jul 17, 2026 · 7 min read
Tech Tips

Langfuse: LLM Observability That Debugs Your AI Agents

Langfuse is an open-source, MIT-licensed LLM observability platform acquired by ClickHouse in January 2026. It provides hierarchical tracing, prompt management, evaluations, and datasets. Its OpenTelemetry-based Python SDK v3 uses the @observe decorator and integrates with LangChain, the OpenAI SDK, Anthropic, and LiteLLM.

Jul 16, 2026 · 6 min read
AI News

Cognition SWE-1.7: Near-Frontier Coding at $2 a Task

Cognition released SWE-1.7 on July 8, 2026, a software-engineering model built by reinforcement-learning on top of Moonshot AI's Kimi K2.7 base and served through Cerebras at ~1,000 tokens/second inside the Devin agent. It scores 42.3% on FrontierCode 1.1 and 81.5% on Terminal-Bench 2.1, trailing Opus 4.8 by a few points at roughly $1.97 per task, positioning it as a near-frontier option at a fraction of frontier cost.

Jul 14, 2026 · 5 min read
Reviews

Wispr Flow: Is Voice Dictation Faster Than Typing in 2026?

Wispr Flow is a system-wide AI voice dictation tool for Mac, Windows, iPhone, and Android that cleans up speech into polished text in any app. It's free up to 2,000 words/week on desktop; Pro is $15/month ($12 billed annually) for unlimited use, Command Mode voice editing, and team features. It supports 100+ languages with a Privacy Mode and HIPAA-ready controls. Value scales directly with how much you write.

Jul 14, 2026 · 6 min read
AI News

Grok 4.5: xAI's Opus-Class Coder at a Third of the Price

Grok 4.5, released July 8, 2026, is xAI's coding-focused model. It ranks 4th on the Artificial Analysis Intelligence Index (score 54), wins SWE Marathon (29%), and prices at $2/$6 per million tokens with 4.2x better token efficiency than Opus 4.8. Not yet available in the EU.

Jul 12, 2026 · 5 min read
Reviews

Warp: Is the Agentic Development Environment Worth It in 2026?

Warp is an Agentic Development Environment that folds a terminal, coding agents, and shared context into one app centered on prompting rather than typing. It scores 71% on SWE-bench Verified and #1 on Terminal-Bench (52%), and its standout feature is running multiple agents in parallel. Warp went open-source in April 2026. Pricing settled at a $20/mo Build plan with 1,500 credits plus BYOK, after volatility that hurt early-adopter trust.

Jul 11, 2026 · 6 min read
Tech Tips

Unsloth: Fine-Tune LLMs 2x Faster on a Single GPU

Unsloth is an open-source library that fine-tunes open LLMs (Llama, Qwen, Mistral, Gemma, gpt-oss) roughly 2x faster and with up to 70% less VRAM than a stock Hugging Face setup, without sacrificing accuracy. It achieves this with custom OpenAI Triton kernels and a manual backpropagation engine, and fuses LoRA with 4-bit quantization. It runs on any NVIDIA GPU with CUDA Capability 7.0+, including the free Colab T4. Install with 'pip install unsloth' and use FastLanguageModel.from_pretrained plus get_peft_model to attach LoRA adapters before training with trl's SFTTrainer.

Jul 10, 2026 · 6 min read
Reviews

Bolt.new: Does the AI App Builder Justify the Token Bill?

Bolt.new, built by StackBlitz on WebContainers, turns plain-English prompts into deployed full-stack apps entirely in the browser with zero setup. It excels at fast prototyping across React, Next.js, Vue, Svelte and Express. The main drawback is token-based pricing: usage scales with project size because the file system re-syncs to the AI each message. Plans: Free, Pro at $25/mo, Teams at $30/member/mo.

Jul 8, 2026 · 5 min read
Reviews

Lovable: Does the AI App Builder Ship Real Products in 2026?

Lovable is an AI full-stack app builder that turns plain-language prompts into deployed web apps with frontend, backend, database, and auth via Lovable Cloud. Pricing starts free, with Pro at $25/month (100 monthly plus 5 daily credits, shared across unlimited users) and Business at $50/month; students get up to 50% off. The credit system means real SaaS costs run nearer $65-75/month once Cloud usage is counted. Strengths are speed to a live prototype, owned exportable code, and pre-wired full-stack integration. Weaknesses are complex logic that trips the AI and metered limits for heavy users. Best as a launchpad, not a production finish line.

Jul 6, 2026 · 6 min read
Deep Dives

LoRA and QLoRA: Fine-Tune Massive LLMs on a Single GPU

LoRA (2021) freezes a model's weights and trains tiny low-rank matrices, cutting GPT-3's trainable parameters 10,000x with no inference latency. QLoRA (2023) quantizes the frozen base to 4-bit NF4, fitting a 65B model on one 48GB GPU at ~33% less memory but ~39% more training time. Rank sets capacity; alpha (via alpha/r) sets scale. Adapt attention projections first and raise rank only when quality demands it.

Jul 3, 2026 · 8 min read
Tech Tips

DSPy: Program Your LLMs Instead of Prompting Them

DSPy is a Stanford NLP Python framework (v3.3, MIT-licensed, 6.4M+ monthly downloads) for programming LLMs instead of hand-writing prompts. You declare tasks as typed signatures, compose them as modules like Predict/ChainOfThought/ReAct, define a metric, then run optimizers such as GEPA or MIPROv2 to auto-tune prompts — often lifting a baseline from ~62% to ~89% on the same model. Used in production by Shopify, Databricks, Dropbox, and Replit.

Jul 2, 2026 · 7 min read
Tech Tips

vLLM: Serve LLMs 24x Faster Than Hugging Face Transformers

vLLM is the default open-source LLM serving engine in 2026. PagedAttention cuts KV-cache memory waste from 60-80% to under 4%, and continuous batching keeps the GPU full, together delivering 14-24x the throughput of Hugging Face Transformers. Install with pip, launch an OpenAI-compatible server via 'vllm serve', then tune --gpu-memory-utilization, --max-num-batched-tokens, --tensor-parallel-size, and chunked prefill against real traffic.

Jul 1, 2026 · 7 min read
Deep Dives

LLM Quantization: GGUF vs AWQ vs GPTQ in 2026

A practical breakdown of the three dominant LLM quantization formats in 2026. GGUF is the portable, CPU-friendly default (use Q4_K_M); AWQ wins on 4-bit quality for GPU serving via activation-aware precision; GPTQ remains a solid NVIDIA-focused option. Quantization is lossy, so test on your real workload.

Jun 25, 2026 · 7 min read
Tech Tips

Ollama: Run Local LLMs Like a Pro in 2026

A hands-on guide to Ollama, the default local-LLM runner in 2026 (v0.30.10). Covers install, pulling and running models, calling them from the OpenAI SDK at localhost:11434, structured JSON outputs, tool calling, and Modelfiles, plus how to size a model to your hardware.

Jun 25, 2026 · 6 min read
Reviews

OpenCode: The Open-Source AI Coding Agent at 178K Stars

OpenCode is an open-source (MIT), terminal-native AI coding agent with 178K GitHub stars. It is model-agnostic, connecting to 75+ providers (Anthropic, OpenAI, Google, Ollama) with bring-your-own keys. LSP integration feeds compiler diagnostics back to the model; built-in build and plan agents plus a general subagent. Runs locally/air-gapped, ships frequently (v1.17.9, 826 releases), and now has a desktop beta. Trade-offs: a terminal learning curve, you pay your own API bills, and quality depends on the model you plug in.

Jun 24, 2026 · 5 min read
Reviews

CodeRabbit: The AI Code Reviewer That Reads Your Whole Repo

CodeRabbit is an AI code reviewer that posts line-by-line PR feedback across GitHub, GitLab, Azure DevOps and Bitbucket. Plans run Free, Pro (4/user/mo), Pro Plus (8) and Enterprise, billed only for developers who open PRs. Strengths: context via MCP, one-click autofix, deep static analysis. Watch the 5/10/12 review rate limits.

Jun 23, 2026 · 6 min read
Deep Dives

Speculative Decoding: How a Tiny Draft Model Doubles LLM Speed

Speculative decoding speeds up LLM inference 2-6x by having a small draft model propose tokens that the target model verifies in parallel via rejection sampling, guaranteeing lossless output. EAGLE-3 and Medusa reduce or remove the separate draft model. Gains are largest at low batch sizes.

Jun 15, 2026 · 7 min read
Tech Tips

Prompt Caching: How to Cut LLM API Costs by Up to 90%

Prompt caching stores the computed KV attention tensors for a repeated prompt prefix so the model skips recomputation, cutting input cost and latency. Anthropic (explicit cache_control, ~90% read discount), OpenAI (automatic, 50% off, 1,024-token minimum), and Google Gemini (implicit plus explicit cache objects, up to 90%) all support it. The one rule that determines hit rate: put all static content at the front of the prompt and all dynamic content at the back.

Jun 12, 2026 · 7 min read
Tech Tips

Firecrawl: Turn Any Website Into Agent-Ready Markdown

Firecrawl converts messy, JavaScript-rendered websites into clean, LLM-ready markdown for RAG and AI agents. Install with 'pip install firecrawl' and use the Firecrawl class: scrape for known URLs (1 credit), crawl for discovery (1 credit per page, always set a limit), and schema-based extraction for typed JSON. Watch Enhanced/Stealth Mode, which costs 5 credits per page on Cloudflare-protected sites, and note that credits do not roll over.

Jun 10, 2026 · 5 min read
Tech Tips

RAG Grounding: 7 Ways to Stop LLM Hallucinations in Production

A practitioner's guide to grounding retrieval-augmented generation systems. Covers fixing retrieval first, hybrid dense-plus-keyword search, cross-encoder reranking, contextual compression, refusal prompting, verified citations, Chain-of-Verification, confidence-threshold abstention, and measuring faithfulness with RAGAS.

Jun 9, 2026 · 6 min read
AI News

MAI-Code-1-Flash: Microsoft's Lean Coding Model Hits Copilot

Microsoft launched MAI-Code-1-Flash on June 2, 2026, a lightweight, agentic coding model built end-to-end in-house and rolling out to GitHub Copilot users in VS Code. It outperforms Claude Haiku 4.5 across four coding benchmarks (including 51.2% vs 35.2% on SWE-Bench Pro) while using up to 60% fewer tokens, signaling Microsoft's push for AI independence from OpenAI.

Jun 6, 2026 · 5 min read
Tech Tips

MCP Security: A 2026 Hardening Playbook After CVE-2025-6514

A practical 2026 security playbook for Model Context Protocol agents. It explains MCP-specific threats (prompt injection, tool poisoning, rug pulls, confused-deputy), dissects the critical CVE-2025-6514 mcp-remote RCE, and gives concrete hardening steps: patch to 0.1.16, enforce OAuth 2.1 over HTTPS, isolate servers, gate destructive actions, and audit agent activity.

Jun 2, 2026 · 7 min read
AI News

DeepSeek V4-Pro: 75% Price Cut Becomes Permanent

On May 22, 2026, DeepSeek made its 75% promotional discount on V4-Pro permanent rather than letting it expire May 31. New permanent rates: $0.435/M input, $0.87/M output, $0.003625/M cache hit. That puts V4-Pro output roughly 34x cheaper than GPT-5.5 and 17x cheaper than Claude Opus 4.7, while landing within 3-7 points on coding and reasoning benchmarks. The underrated detail is the cache-hit price, which can cut input cost ~88% for agents with stable prefixes. Teams should re-run their build math and route the easy majority of traffic to V4-Pro.

Jun 1, 2026 · 5 min read
Tech Tips

AGENTS.md: Configure AI Coding Agents That Actually Obey

AGENTS.md is a Linux Foundation-stewarded open standard, adopted by 60,000+ repositories and read natively by 20+ tools including Codex, Cursor, and Copilot. This guide covers the eight core sections, the phrasing patterns that change agent behavior, monorepo nesting, and how it differs from CLAUDE.md, .cursorrules, MCP, and SKILL.md.

May 31, 2026 · 9 min read
Tech Tips

Prompt Injection: A 2026 Defense Playbook for AI Agents

A defense playbook for prompt injection in AI agents. It explains why the attack is unsolvable at the model layer, frames the threat with Simon Willison's lethal trifecta (private data, untrusted content, external communication), and prescribes layered controls: architectural separation, least-privilege tools, input filtering, egress allowlisting, circuit breakers, and hardened models, which can cut attack success from 73.2% to 8.7%.

May 30, 2026 · 6 min read
Search TeqVolt

Find an article

Type a keyword or browse a section.