Skip to content
Archive

Claude-code

Every article tagged "claude-code".

23 articles
Claude Code v2.1.153: The 36-Change Release That Fixes MCP Reliability
News
May 289 min

Claude Code v2.1.153: The 36-Change Release That Fixes MCP Reliability

Claude Code v2.1.153 shipped May 28, 2026 with 36 changes. The two that matter most for production work: MCP servers now auto-retry up to 3 times on transient startup errors instead of silently stayin

Google Antigravity 2.0 vs Claude Code: A Practitioner's Honest Take
Reviews
May 278 min

Google Antigravity 2.0 vs Claude Code: A Practitioner's Honest Take

Google Antigravity 2.0 launched May 19, 2026 at I/O as a direct Claude Code competitor. Antigravity leads on multi-agent orchestration, parallel sandboxes, and model speed -- Gemini 3.5 Flash runs 4x

How to Build an Agent Harness in 2026: The Architecture Replacing Solo AI Tools
Tutorials
May 2612 min

How to Build an Agent Harness in 2026: The Architecture Replacing Solo AI Tools

An agent harness is the runtime layer that wraps an LLM and gives it skills, persistent memory, lifecycle hooks, and multi-agent routing. Claude Code, Codex, and OpenCode are all harnesses -- not mode

Why Microsoft Canceled Claude Code for 5,000 Engineers
News
May 259 min

Why Microsoft Canceled Claude Code for 5,000 Engineers

Microsoft is canceling Claude Code licenses for 5,000+ engineers in its Experiences & Devices division by June 30, 2026 -- the last day of its fiscal year. After a 6-month internal trial where eng

The Token Billing Crisis That Cancelled Claude Code at Microsoft
Economics
May 238 min

The Token Billing Crisis That Cancelled Claude Code at Microsoft

Microsoft's Experiences + Devices division -- the teams building Windows, Microsoft 365, Teams, and Surface -- is shutting off Claude Code for all developers by June 30, 2026. The cause: token-based b

How to Add Persistent Memory to Claude Code with agentmemory
Tutorials
May 2110 min

How to Add Persistent Memory to Claude Code with agentmemory

agentmemory is an open-source MCP server that gives Claude Code persistent memory across sessions. Install it in three commands, and it auto-captures your tool use, file edits, and decisions using 12

How to Write Agent Skills That Work on Claude Code, Codex, and Gemini CLI
Tutorials
May 1910 min

How to Write Agent Skills That Work on Claude Code, Codex, and Gemini CLI

A SKILL.md file is a plain-text instruction module that gives AI coding agents reusable domain expertise. Write it once, drop it into the agent's skills directory, and it activates on demand. As of Ma

What Claude Code Routines Actually Costs (and When It Beats n8n)
Economics
May 169 min

What Claude Code Routines Actually Costs (and When It Beats n8n)

Claude Code Routines is included in your existing Claude Pro ($20/mo), Max ($100-$200/mo), or Team plan -- no extra line item. The constraint is per-day run caps: 5 runs on Pro, 15 on Max, 25 on Team.

Claude Code Skills: How to Use mattpocock's 80K-Star Repo
Tutorials
May 148 min

Claude Code Skills: How to Use mattpocock's 80K-Star Repo

mattpocock/skills is a collection of 21 markdown files that enforce engineering discipline on Claude Code agents. No freestyle coding -- just structured workflows. The repo hit 80,500 GitHub stars and

How to Use Claude Code's /goal for Autonomous Multi-Turn Tasks
Tutorials
May 1210 min

How to Use Claude Code's /goal for Autonomous Multi-Turn Tasks

Claude Code v2.1.139, released May 11, 2026, adds a /goal command that sets a completion condition and keeps Claude working across turns until that condition is met. After every turn, a separate evalu

Claude Code v2.1.138: The Session ID Env Var Builders Needed
News
May 99 min

Claude Code v2.1.138: The Session ID Env Var Builders Needed

Claude Code v2.1.138 ships CLAUDE_CODE_SESSION_ID as an environment variable in every Bash subprocess -- the same session_id your hooks already receive. That means hooks and Bash tool calls can finall

Ruflo v3.6 for Claude Code: Multi-Agent Swarms Setup Guide
Tutorials
May 511 min

Ruflo v3.6 for Claude Code: Multi-Agent Swarms Setup Guide

Ruflo v3.6 turns a single Claude Code instance into a coordinated swarm of specialized agents using a queen-and-workers hierarchy. Install takes under 5 minutes via npx. But an April 2026 independent

Gaslightus 4.7: What the Claude Opus Developer Backlash Was Actually About
News
May 310 min

Gaslightus 4.7: What the Claude Opus Developer Backlash Was Actually About

Claude Opus 4.7 launched April 16, 2026 and earned the nickname "Gaslightus 4.7" within 24 hours of release. The complaints were real -- but the worst behavior came from three separate bugs Anthropic

Uber Blew Its 2026 AI Budget on Claude Code. Was It Worth It?
Economics
May 29 min

Uber Blew Its 2026 AI Budget on Claude Code. Was It Worth It?

Uber CTO Praveen Neppalli Naga revealed on April 15, 2026 that the company burned through its entire annual AI budget in four months -- $500 to $2,000 per engineer per month, with 95% of engineers usi

An AI Agent Deleted a Startup's Database in 9 Seconds. Here's What Your Setup Should Look Like.
Deployment
Apr 3010 min

An AI Agent Deleted a Startup's Database in 9 Seconds. Here's What Your Setup Should Look Like.

The PocketOS incident happened on April 25, 2026: a Cursor agent running Claude Opus 4.6 found an unscoped Railway API token, inferred it could fix a credential mismatch by deleting a volume, and made

OpenAI Workspace Agents vs Claude Code: Which Wins for Solo Builders?
Reviews
Apr 299 min

OpenAI Workspace Agents vs Claude Code: Which Wins for Solo Builders?

OpenAI Workspace Agents are cloud-based automation agents that live inside Slack, Google Drive, M365, Salesforce, Notion, and Atlassian -- ideal for multi-tool workflow automation. Claude Code is a te

claude-context MCP: Semantic Code Search Over Your Entire Codebase
Tutorials
Apr 289 min

claude-context MCP: Semantic Code Search Over Your Entire Codebase

claude-context is an open-source MCP server by Zilliz that indexes your codebase with vector embeddings and gives Claude Code semantic retrieval over your whole project. Instead of Claude reading enti

Claude Code Ultraplan: Cloud Planning Setup and Workflow
Tutorials
Apr 269 min

Claude Code Ultraplan: Cloud Planning Setup and Workflow

Claude Code Ultraplan is a research preview feature (requires v2.1.91+, Pro or Max subscription) that offloads the planning phase to a remote cloud container running Opus 4.6. Your terminal stays free

Claude Code Pricing Test: The AI Subscription Reckoning
Economics
Apr 258 min

Claude Code Pricing Test: The AI Subscription Reckoning

On April 21, 2026, Anthropic removed Claude Code from its $20 Pro plan -- then reversed the decision in under 24 hours after public backlash. The real story is not the rollback. It is what the experim

How to Wire Claude Code Hooks to MCP Tools (v2.1.118)
Tutorials
Apr 2411 min

How to Wire Claude Code Hooks to MCP Tools (v2.1.118)

Claude Code v2.1.118 (released April 23, 2026) added type: "mcp_tool" as a new hook handler type. You can now wire any lifecycle event -- PreToolUse, PostToolUse, Stop, SessionStart -- direc

Claude Code vs LangChain vs Plain Python: Which Do You Actually Need?
Reviews
Apr 2210 min

Claude Code vs LangChain vs Plain Python: Which Do You Actually Need?

The honest answer: it depends on what layer you are working at. Claude Code is a development-time tool, not a runtime framework. LangGraph leads production deployments with 34.5 million monthly downlo

Claude Code v2.1.116: Every New Feature That Changes Your Workflow
Tutorials
Apr 2110 min

Claude Code v2.1.116: Every New Feature That Changes Your Workflow

Claude Code v2.1.116 shipped April 20, 2026 with three real workflow improvements: /resume is 67% faster on sessions over 40MB, MCP tool results can now reach 500K characters instead of being silently

Claude Opus 4.7: How to Migrate Your Workflow to Adaptive Thinking
Tutorials
Apr 177 min

Claude Opus 4.7: How to Migrate Your Workflow to Adaptive Thinking

Claude Opus 4.7 replaces fixed thinking budgets with adaptive thinking and five effort levels: low, medium, high, xhigh, and max. To migrate, swap your thinking parameter to type "adaptive," remove temperature/top_p/top_k from your payloads, and pick an effort level. Xhigh is now the default for most coding work in Claude Code. Opus 4.7 shipped April 16 and I broke my integrations within the first hour. The old budget_tokens sy