Author: Will Tygart

  • Claude Cowork Not Working: 5 Common Errors and Fixes

    Claude Cowork Not Working: 5 Common Errors and Fixes

    Last refreshed: June 9, 2026

    Claude AI · Tygart Media
    Most common cause: The Cowork VM disk is full (sessiondata.img). Second most common: a scheduled task depends on a local process that stops when your machine sleeps. Both are fixable in minutes.

    Claude Cowork stops working for a small set of predictable reasons. This page covers the five most common failures, how to diagnose which one you’re hitting, and the exact fix for each.

    Claude Cowork Error Quick-Reference

    Claude Cowork issues: quick diagnosis

    Symptom Most likely cause Fix
    Cowork won’t launch App update pending Quit Claude desktop app, reopen — auto-updates on restart
    MCP tools not showing MCP server not running or config error Check claude_desktop_config.json syntax; restart app
    “Not connected” in Cowork panel Plugin not loaded or credentials expired Re-authenticate the plugin from Settings > Capabilities
    Skills not triggering Skill description doesn’t match your prompt Use the exact trigger phrase from the skill description
    File tools not working No folder selected Select a working folder via the folder icon in Cowork
    Scheduled tasks not running Claude desktop app not running at scheduled time Keep app running in background; check task log for errors
    Computer use not responding Permission not granted for target app Claude will prompt for permission — approve in the dialog
    Symptom Most Likely Cause Fix
    Cowork won’t start / hangs on launch Cowork VM disk full (sessiondata.img) Clear sessiondata.img or expand VM disk allocation
    Scheduled tasks stop running overnight Local process killed when machine sleeps Use GCP Cloud Run cron instead of local scheduler
    Tool calls return empty responses MCP server disconnected Restart Claude Desktop; re-authenticate MCP servers
    File edits not saving Workspace folder not mounted Reconnect folder via Cowork settings
    Browser automation stops mid-task Chrome extension lost connection Reload extension; check tab is in allowed group

    Claude Cowork Error Quick-Reference

    Symptom Most Likely Cause Fix
    Cowork won’t start / hangs on launch Cowork VM disk full (sessiondata.img) Clear sessiondata.img or expand VM disk allocation
    Scheduled tasks stop running overnight Local process killed when machine sleeps Use GCP Cloud Run cron instead of local scheduler
    Tool calls return empty responses MCP server disconnected Restart Claude Desktop; re-authenticate MCP servers
    File edits not saving Workspace folder not mounted Reconnect folder via Cowork settings
    Browser automation stops mid-task Chrome extension lost connection Reload extension; check tab is in allowed group

    Claude Cowork Error Quick-Reference

    Symptom Most Likely Cause Fix
    Cowork won’t start / hangs on launch Cowork VM disk full (sessiondata.img) Clear sessiondata.img or expand VM disk allocation
    Scheduled tasks stop running overnight Local process killed when machine sleeps Use GCP Cloud Run cron instead of local scheduler
    Tool calls return empty responses MCP server disconnected Restart Claude Desktop; re-authenticate MCP servers
    File edits not saving Workspace folder not mounted Reconnect folder via Cowork settings
    Browser automation stops mid-task Chrome extension lost connection Reload extension; check tab is in allowed group

    Error 1: “useradd failed: exit status 12”

    What it means: The Cowork VM’s internal disk (sessiondata.img) is full. No new sessions can be provisioned.

    Fix: Quit Claude Desktop. Move sessiondata.img from %APPDATA%\Claude\vm_bundles\claudevm.bundle\ (Windows) or ~/Library/Application Support/Claude/vm_bundles/claudevm.bundle/ (macOS) to your Desktop. Relaunch Claude Desktop — it recreates a fresh image. Full walkthrough: Claude Cowork useradd Failed Error Fix.

    Error 2: Scheduled Tasks Stop Running

    What it means: Tasks that were running on schedule suddenly stop firing. Often appears as tasks last running a few days ago with no new entries.

    Causes: Machine went to sleep, Claude Desktop was quit, or the local runner process died. Cowork tasks require Claude Desktop to be open and running on an active machine. They are not fully cloud-hosted — they depend on the local Cowork environment being live.

    Fix: Reopen Claude Desktop and manually trigger one task to verify it runs. For tasks that need to run reliably without the machine being awake, move them to a GCP Cloud Run cron job or a cloud VM instead of Cowork’s local scheduler.

    Error 3: MCP Tools Not Available in Cowork

    What it means: Cowork tasks can’t access Notion, Gmail, or other connected services that work fine in Chat.

    Fix: MCP servers must be configured in claude_desktop_config.json — the same config file Claude Desktop uses. If an MCP server appears in Chat but not in Cowork, verify it’s listed in the desktop config, not just the web interface. Restart Claude Desktop after any config changes.

    Error 4: File Access Denied or Path Not Found

    What it means: A Cowork task fails trying to read or write a file that should be accessible.

    Fix: Cowork’s VM mounts specific directories from your machine. If the file is outside a mounted path, Cowork can’t reach it. Check that the file path is within your configured working directories. On Windows, path separator issues (\ vs /) inside the Linux VM can also cause this — use forward slashes or escape backslashes in task prompts.

    Error 5: Tasks Run but Produce Wrong Output

    What it means: Cowork is running but the results are stale, wrong, or missing context from previous runs.

    Fix: Cowork tasks don’t have memory of previous runs by default. If your task depends on knowing what happened last time — what was published, what changed — you need to build that context explicitly into the task prompt, typically by reading a log from Notion or a local file at the start of each run. The task prompt is the only persistent instruction; Claude doesn’t remember prior task outputs.

    Why did Cowork tasks stop running overnight?

    Cowork requires Claude Desktop to be running on an active machine. If your computer slept, hibernated, or Claude Desktop was closed, scheduled tasks won’t fire. For always-on reliability, route tasks through a cloud runner instead.

    Why can Cowork not find my files?

    Cowork’s Linux VM only has access to directories you’ve configured as mount points. Files outside those paths are invisible to the VM. Verify your working directory configuration in Claude Desktop settings.

    Does Cowork work on Windows?

    Yes, Cowork is available on both Windows and macOS via Claude Desktop. The VM behavior and file paths differ slightly between platforms but the core functionality is the same.



    Frequently Asked Questions

    Why does Claude Cowork stop working when my computer sleeps?

    Claude Cowork scheduled tasks depend on a local process that gets killed when your machine sleeps or the lid closes. The fix is to run scheduled tasks via GCP Cloud Run or another always-on host rather than relying on the local Cowork scheduler.

    How do I fix the Cowork VM disk full error?

    The most common Cowork failure is a full sessiondata.img file on the Cowork VM. Open the VM settings, clear sessiondata.img or increase the disk allocation. This resolves the majority of ‘Cowork won’t start’ issues.

    Why are my Claude Cowork MCP tools returning empty responses?

    Empty MCP tool responses usually mean the MCP server has disconnected. Restart Claude Desktop and re-authenticate the affected MCP servers through Settings > Capabilities. If the issue persists, check that the MCP server process is still running.

    Is Claude Cowork the same as Claude in Chrome?

    No. Claude Cowork is a desktop agent for file management and task automation. Claude in Chrome is a browser extension that gives Claude control of your active Chrome tab. They are separate tools that can be used together but serve different purposes.

    What should I do if Claude Cowork file edits aren’t saving?

    If file edits aren’t saving, the workspace folder is likely not properly mounted. Go to Cowork settings and reconnect the folder. Make sure you’ve granted Cowork write access to the directory, not just read access.

    Frequently Asked Questions

    Why is Claude Cowork not working?

    The most common reasons Claude Cowork stops working are: (1) a pending app update — quit and reopen the Claude desktop app to apply updates; (2) an MCP server configuration error — check your claude_desktop_config.json for syntax issues; (3) expired plugin credentials — re-authenticate from Settings > Capabilities; (4) no working folder selected — click the folder icon in the Cowork panel to select one. Most Cowork issues resolve with an app restart.

    How do I fix MCP tools not showing in Claude Cowork?

    If MCP tools are not appearing in Cowork, check three things: (1) your claude_desktop_config.json file has valid JSON syntax — a single missing comma breaks the entire config; (2) the MCP server command is correct and the binary or package is installed; (3) you restarted the Claude desktop app after editing the config. Use ‘claude mcp list’ in your terminal to verify which servers are loaded. If a server shows as loaded but tools don’t appear, the server may be failing silently — check its logs.

    Why are my Cowork skills not triggering?

    Skills trigger based on the description and trigger phrases in their SKILL.md. If a skill isn’t firing, check that your prompt closely matches the trigger language in the skill description. Skills are loaded by Claude based on semantic matching — if your prompt is ambiguous, Claude may not recognize which skill to invoke. Try using the exact trigger phrase listed in the skill’s description. You can view installed skills in Settings > Capabilities > Skills.

    Why did Claude Cowork stop working after an update?

    App updates occasionally reset plugin configurations or require re-authentication. After a Claude desktop app update: (1) re-open the Cowork panel; (2) check if any plugins show ‘reconnect’ prompts in Settings > Capabilities; (3) verify your MCP servers are still listed in claude_desktop_config.json — updates don’t modify this file, but a fresh install might. If a plugin stopped working, re-authorize it from Settings.

    How do I select a working folder in Claude Cowork?

    Click the folder icon in the Cowork panel header to open the folder picker. Select the directory you want Claude to read from and write to. Without a selected folder, file tools (Read, Write, Edit) won’t have access to your files. The selected folder path persists across sessions. You can change it at any time by clicking the folder icon again.

    What should I do if Claude Cowork computer use isn’t responding?

    Computer use in Cowork requires explicit permission for each application. When Claude needs to control an app, it will show a permission dialog — you must approve it before Claude can interact with that app. If the permission dialog doesn’t appear, try re-stating your request. If computer use worked before but stopped, check that the target application hasn’t been updated or moved. Browsers (Chrome, Edge, Safari) are read-only in computer use — for browser automation, use the Claude in Chrome extension instead.


  • Claude Cowork vs Claude Chat: When to Use Which

    Claude Cowork vs Claude Chat: When to Use Which

    Last refreshed: May 15, 2026

    Model Accuracy Note — Updated May 2026

    Current flagship: Claude Opus 4.7 (claude-opus-4-7). Current models: Opus 4.7 · Sonnet 4.6 · Haiku 4.5. Claude Opus 4.7 (claude-opus-4-7) is the current flagship as of April 16, 2026. Where this article references Opus 4.6 or earlier models, those references are historical. See current model tracker →. See current model tracker →

    Claude AI · Tygart Media
    Quick answer: Use Cowork for scheduled, recurring, or multi-step tasks that need to persist and run on their own. Use Claude Chat for interactive work, analysis, writing, and one-off tasks you’re doing right now.

    Anthropic now offers two distinct modes of working with Claude — the familiar chat interface and Cowork, a persistent task and agent environment. They look similar but serve fundamentally different purposes. Using the wrong one creates friction; knowing which to reach for first saves significant time.

    What Cowork Actually Is

    Cowork is a persistent agent environment inside Claude Desktop. It gives Claude access to your local filesystem, a sandboxed Linux VM with bash execution, your installed MCP servers, and a scheduler. Tasks you set up in Cowork can run on a schedule — daily, weekly, whenever you trigger them — without you being in the conversation. Claude operates autonomously against your instructions until the task is done.

    What Claude Chat Actually Is

    Claude Chat (claude.ai or the Claude app) is a stateless, interactive conversation interface. Each session is fresh. Claude has no persistent memory across sessions beyond what you’ve configured in memory settings. It’s optimized for real-time back-and-forth: you ask, Claude responds, you refine. The bash environment in Chat (used for file operations and code execution) is sandboxed and resets between sessions.

    Side-by-Side Comparison

    Factor Claude Chat Claude Cowork
    Runs without you No Yes — scheduled tasks
    Access to your files Upload only Direct filesystem access
    Persistent across sessions No (memory only) Yes — tasks and state persist
    Best for Interactive work, writing, analysis Recurring automation, pipelines
    MCP tool access Yes (if configured) Yes + local filesystem tools
    Runs on Anthropic’s cloud Your local machine
    Resource competition None (cloud-side) Shares your CPU/disk
    Skill files Yes (/mnt/skills/) Yes (same mount)

    When to Use Claude Chat

    Chat is the right tool when you’re actively involved in the work — drafting, editing, analyzing, strategizing. If you need to go back and forth, refine an output, or make judgment calls mid-task, Chat’s interactive model is faster and more natural. It’s also better for any task that’s genuinely one-off: you do it once, you’re done, there’s nothing to schedule or automate.

    Chat also runs in the cloud, meaning it doesn’t compete with your machine’s other processes and doesn’t run into the local VM disk limitations that Cowork can hit with heavy workloads.

    When to Use Cowork

    Cowork shines for work that should happen without you: daily newsroom publishing, weekly SEO reports, nightly data syncs, any pipeline that follows the same steps every run. If you find yourself doing the same Claude Chat session more than twice a week, it’s a candidate for a Cowork task.

    Cowork also makes sense for tasks that need direct access to files on your machine — reading from a local folder, processing downloads, interacting with local applications — since Chat requires you to explicitly upload files each session.

    Known Cowork Limitation to Be Aware Of

    Cowork runs on a local VM (the sessiondata.img file) with a fixed 8.5GB disk. Heavy users with many skills installed will periodically hit a disk-full error that prevents new sessions from launching. This is a known bug (GitHub #30751) with a manual workaround. See Claude Cowork useradd Failed Error: How to Fix It for the fix.

    Is Claude Cowork better than Claude Chat?

    Neither is better — they serve different purposes. Chat is optimized for interactive, real-time work. Cowork is for persistent, scheduled, autonomous tasks. Most power users use both regularly for different types of work.

    Can Claude Cowork access the internet?

    Yes, through MCP server integrations and web search tools. Cowork tasks can call APIs, search the web, read from connected services like Notion or Gmail, and interact with any MCP-connected tool you’ve configured.

    Does Claude Cowork use the same AI model as Chat?

    Yes — Cowork uses the same underlying Claude models (currently Opus 4.6 and Sonnet 4.6). The difference is the execution environment, not the model.


  • Claude Cowork ‘useradd Failed’ Error: How to Fix the sessiondata.img Full Bug

    Claude Cowork ‘useradd Failed’ Error: How to Fix the sessiondata.img Full Bug

    Last refreshed: May 15, 2026

    Claude AI · Tygart Media
    ⚠ Known Bug: This is GitHub issue #30751 — still open as of April 2026. Anthropic has not shipped a permanent fix. The workaround below is the only reliable solution.

    If every Cowork task is failing with useradd: cannot create directory /sessions/friendly-youthful-thompson or a similar error, your Cowork VM’s internal disk is full. This is not something you broke — it’s a known Anthropic bug that affects power users consistently. Here’s exactly what’s happening and how to fix it in under two minutes.

    What’s Causing the Error

    Cowork runs on a local VM with a fixed 8.5GB disk image called sessiondata.img. Every Cowork conversation creates a new directory under /sessions/<name>/ inside that VM and caches all your installed plugins and skills there. Those directories are never cleaned up automatically. Once the disk fills — roughly 80 sessions for light users, 40–50 sessions for users with many skills installed — every new task fails immediately with a useradd error. The session simply can’t be provisioned.

    If you have 20+ skills installed (the Tygart Media stack runs 40+), you’ll hit the cap significantly faster than the average user.

    The Fix: Move the Image File

    The fix is the same on macOS and Windows: move sessiondata.img out of its location so Claude Desktop rebuilds it fresh on next launch.

    Windows

    Quit Claude Desktop completely. Open Run (Win + R), paste this path and press Enter:

    %APPDATA%\Claude m_bundles\claudevm.bundle\

    Find sessiondata.img and move it to your Desktop as a backup. Relaunch Claude Desktop — it will recreate a fresh image automatically. Your first Cowork session after the reset may take slightly longer while plugins reinstall.

    macOS

    Quit Claude Desktop. In Finder, press Cmd + Shift + G and go to:

    ~/Library/Application Support/Claude/vm_bundles/claudevm.bundle/

    Move sessiondata.img to your Desktop. Relaunch Claude Desktop.

    What Gets Wiped vs What’s Preserved

    Data Location Wiped?
    Sidebar task list Electron IndexedDB ✅ Preserved
    Scheduled task definitions Documents/Claude/Scheduled/ ✅ Preserved
    MCP server config claude_desktop_config.json ✅ Preserved
    Chat conversation history Electron LevelDB ✅ Preserved
    VM plugin/skill cache Inside sessiondata.img ⚠ Wiped (auto re-downloads)
    VM session working dirs /sessions/<n>/ inside VM ⚠ Wiped (this is the fix)

    How Often Will You Need to Do This?

    Until Anthropic ships automatic session cleanup, this is a recurring task. With a heavy skill load, plan on running the fix every 4–6 weeks or whenever you see the useradd error return. Setting a calendar reminder is the most reliable approach.

    The Longer-Term Fix: Move Heavy Operations Off Cowork

    The root cause is that Cowork was designed for lighter, conversational task automation — not running dozens of skills across many parallel sessions. If you’re running content pipelines, batch WordPress operations, or multi-step automation workflows, moving those operations to a GCP Cloud Run cron job or Compute Engine VM eliminates the local VM bottleneck entirely. Cowork’s local sandbox competes for your machine’s resources; GCP runs isolated, always-on, and never fills up your laptop’s disk.

    Why does Cowork say “useradd failed: exit status 12”?

    The Cowork VM’s internal disk (sessiondata.img) is full. It can no longer create new session user directories. Moving the image file out and letting Claude Desktop recreate it clears the disk and resolves the error.

    Will I lose my Cowork tasks if I move sessiondata.img?

    No. Your task definitions, scheduled tasks, MCP config, and conversation history are all stored outside the VM image. Only the internal plugin/skill cache is wiped — it re-downloads automatically on the next session.

    How do I prevent Cowork from filling up again?

    Until Anthropic ships a permanent fix (GitHub issue #30751), the options are: run the reset script periodically, reduce your installed skill count, or route heavy operations to GCP instead of Cowork.


  • Claude 5 Release Date 2026: Leak Signals, Expected Features & Anthropic’s Timeline

    Claude 5 Release Date 2026: Leak Signals, Expected Features & Anthropic’s Timeline

    Updated June 10, 2026

    The “Claude 5” question now has an answer: Anthropic’s next-generation model shipped as Claude Fable 5, a new tier above Opus rather than a “Claude 5” rename. As of June 10, 2026, Anthropic’s current lineup is Claude Fable 5 (the new top tier above Opus, $10 input / $50 output per MTok), Opus 4.8 ($5/$25), Sonnet 4.6 ($3/$15), and Haiku 4.5 ($1/$5). Full details: the Claude Fable 5 Complete Guide.

    Last refreshed: June 9, 2026

    Verified vs. reported — May 15, 2026 standard: This article tracks third-party reporting on Claude 5’s expected release window and features. As of May 15, 2026, Anthropic has not, to our review of anthropic.com/news and docs.claude.com, published an official Claude 5 launch announcement. The Q2 2026 timeline, ~90%+ SWE-bench Verified figure, 500K context window claim, and “Sonnet 5 / Fennec” codename references all trace to third-party reporting (TechCrunch interview citations, Claude5.com, Fello AI, WaveSpeed Blog) that we could not independently confirm against an Anthropic-published primary source. The information may still be accurate; the verified-vs-reported distinction means it has not been confirmed by Anthropic on the record.

    For the full current model lineup that is officially documented — Opus 4.8 (knowledge cutoff January 2026, 1M context, $5/$25 MTok), Sonnet 4.6, Haiku 4.5 — see Claude Models Roadmap May 2026. That article maintains the verified-vs-reported standard throughout.

    Model Accuracy Note — Updated June 9, 2026

    Current flagship: Claude Opus 4.8 (claude-opus-4-8). Current models: Opus 4.8 · Sonnet 4.6 · Haiku 4.5. Claude Opus 4.6 referenced in this article has been superseded. See current model tracker →

    Claude AI · Tygart Media · Updated April 2026
    Current status (April 16, 2026): Claude 5 has not been officially announced by Anthropic. The current latest models are Claude Opus 4.6 and Claude Sonnet 4.6, released in February 2026. Based on Anthropic’s release cadence and early signals, Claude 5 is expected Q2–Q3 2026.

    Every few months, a new wave of “Claude 5 release date” searches spikes — and it makes sense. Anthropic moves fast, the gaps between major generations have been shortening, and early signals like Vertex AI log leaks have given the community something to speculate on. Here’s an honest breakdown of what’s confirmed, what’s leaked, and what the pattern suggests.

    Claude 5 Expected Specs vs Current Models (June 2026)

    Attribute Claude Opus 4.8 (Current) Claude 5 (Rumored)
    Release window Available now Late 2026 (unconfirmed)
    Context window 1M tokens 2M+ tokens (speculated)
    Multimodal Text + vision Text + vision + audio (rumored)
    Flagship API price $5 input / $25 output per MTok Unannounced
    Reasoning Strong Improved extended thinking (speculated)

    Claude 5 specs are unconfirmed as of June 9, 2026. All information is based on industry signals and Anthropic research publications — not official announcements.

    What’s Confirmed About Claude 5

    As of April 2026, Anthropic has not officially announced Claude 5 by name in any public release notes, API documentation, or blog post. The company’s official model table shows the Claude 4.x family as current. No countdown page exists. No API model string beginning with claude-5 has appeared in public documentation.

    What is confirmed: Anthropic is actively deprecating the original Claude 4.0 models (retiring June 15, 2026), recommending migration to Claude Sonnet 4.6 and Opus 4.6. This is a routine generational housekeeping move, not a Claude 5 announcement.

    The Evidence For a Q2–Q3 2026 Release

    The strongest early signal came in early February 2026, when a model identifier — claude-sonnet-5@20260203 — appeared briefly in Google Vertex AI error logs. Independent sources cross-verified the leak, and the codename “Fennec” circulated alongside claimed benchmark scores of around 80.9% on SWE-bench Verified, compared to Opus 4.6’s current scores.

    Beyond the leak, the pattern is consistent: Anthropic has released a new major model generation roughly every 12–14 months since Claude 3. Claude 4.5 (the highest-capability 4.x model) reached 77.2% on SWE-bench Verified. A Claude 5 release that clearly exceeds that — not just marginally — would justify a major version bump and align with Anthropic’s stated commitment to releasing models that represent genuine capability leaps, not incremental updates.

    Anthropic’s Release Pattern

    Generation Initial Release Gap to Next Major
    Claude 2 July 2023 ~8 months
    Claude 3 March 2024 ~14 months
    Claude 4 May 2025 ~12–14 months → Q2–Q3 2026

    A 12-month gap from the Claude 4 launch (May 2025) points to May–July 2026 as the earliest likely window. Anthropic has been explicit that they won’t rush a release — Claude 5 would need to clearly establish a new capability tier to justify the version number.

    What Claude 5 Is Expected to Improve

    Based on leaked benchmark data and Anthropic’s public research direction, the Claude 5 generation is expected to push forward on: extended thinking and multi-step reasoning (building on the chain-of-thought work in Claude 3.5+), larger context handling, improved agentic reliability for long-horizon tasks, and faster inference at the Sonnet tier. Pricing is expected to follow the established pattern — Claude 5 Sonnet likely priced at or below current Opus 4.6 rates while outperforming it on most tasks.

    The Current Models Are Excellent — Don’t Wait

    If you’re evaluating whether to build on Claude now or wait for Claude 5, the answer is build now. Claude Sonnet 4.6 and Opus 4.6 are capable, stable, and well-documented. The 4.x API will remain live well after Claude 5 launches — Anthropic maintains parallel model availability for enterprise predictability. Waiting costs you months of production time for a model that may arrive on an uncertain schedule.

    For current model specs and API strings, see Claude API Model Strings — Complete Reference. For pricing on current models, see Claude AI Pricing: Every Plan Explained.

    When is Claude 5 coming out?

    Claude 5 has not been officially announced. Based on Anthropic’s release cadence and early Vertex AI log leaks, Q2–Q3 2026 (roughly May–September) is the most cited window. No confirmed date exists as of April 2026.

    Is Claude 5 confirmed?

    No. Anthropic has not officially announced Claude 5 by name. The “Fennec” codename and claude-sonnet-5@20260203 model string surfaced in third-party Vertex AI logs, but Anthropic has not confirmed a Claude 5 release.

    What is the latest Claude model right now (April 2026)?

    The current latest Claude models are Claude Opus 4.6 (claude-opus-4-8) and Claude Sonnet 4.6 (claude-sonnet-4-6), both released in February 2026. Claude Haiku 4.5 is the current speed/cost tier.

    Will Claude 5 Sonnet beat Claude Opus 4.6?

    That’s the expected pattern. With every prior generation, the mid-tier Sonnet model of the new generation outperformed the previous generation’s Opus on most benchmarks, at lower cost. Leaked benchmark data suggests Claude 5 Sonnet (“Fennec”) scores around 80.9% on SWE-bench Verified versus Opus 4.6’s current scores.

    When will Claude 5 be released?

    Anthropic has not officially announced a Claude 5 release date as of June 2026. Industry analysts and leak signals suggest a potential release in late 2026, but Anthropic typically announces model releases a few weeks before availability. The current flagship is Claude Opus 4.8 (claude-opus-4-8), released in 2026.

    What features will Claude 5 have?

    No official feature list exists for Claude 5. Based on Anthropic’s research publications and the pattern of Claude 4 improvements, Claude 5 is expected to improve reasoning, extended context handling, and multimodal capabilities. Any specific feature claims circulating online are speculation unless sourced directly from Anthropic.

    Should I wait for Claude 5 or use Claude Opus 4.8 now?

    Use Claude Opus 4.8 now. It is the current flagship with 1M token context, strong reasoning, and available today at $5/$25 per million tokens. Waiting for an unannounced model means missing months of productivity. When Claude 5 launches, upgrading is straightforward — just swap the model ID in your API calls.


  • Claude 4 Deprecation: Sonnet 4 and Opus 4 Retire June 15, 2026

    Claude 4 Deprecation: Sonnet 4 and Opus 4 Retire June 15, 2026

    Last verified: June 13, 2026

    Model Accuracy Note — Verified June 13, 2026

    Retiring June 15, 2026: the original Claude Opus 4 (claude-opus-4-20250514) and Claude Sonnet 4 (claude-sonnet-4-20250514) — the May 2025 models. These are not Opus 4.6 or Sonnet 4.5, which remain active. Current models: Fable 5 · Opus 4.8 · Sonnet 4.6 · Haiku 4.5. Current model tracker →

    Claude AI · Tygart Media
    ⚠ Deprecation Notice: Anthropic is retiring claude-sonnet-4-20250514 and claude-opus-4-20250514 — the original Claude 4.0 models from May 2025. API retirement is June 15, 2026. Migrate to Claude Sonnet 4.6 (claude-sonnet-4-6) and Claude Opus 4.8 (claude-opus-4-8).

    If you are still running the original Claude Sonnet 4 or Opus 4 model strings in production, you have a hard deadline: June 15, 2026. After that date, calls to claude-sonnet-4-20250514 and claude-opus-4-20250514 return an error — there is no automatic failover to a newer model. Here is exactly what is retiring, what to migrate to, and the breaking changes to plan for.

    Claude Model Lifecycle Status (June 2026)

    Model API ID Status Replacement
    Claude Opus 4 (original) claude-opus-4-20250514 ⚠ Retires June 15, 2026 claude-opus-4-8
    Claude Sonnet 4 (original) claude-sonnet-4-20250514 ⚠ Retires June 15, 2026 claude-sonnet-4-6
    Claude Fable 5 claude-fable-5 ✓ Current — top tier
    Claude Opus 4.8 claude-opus-4-8 ✓ Current Opus flagship
    Claude Sonnet 4.6 claude-sonnet-4-6 ✓ Current
    Claude Haiku 4.5 claude-haiku-4-5 ✓ Current

    Alias trap: the dateless aliases claude-opus-4-0 and claude-sonnet-4-0 resolve to the retiring ...-20250514 snapshots — they go offline too. Claude Opus 4.6, Opus 4.7, Opus 4.5, and Sonnet 4.5 are separate, still-active models and are not affected by this retirement.

    What’s Being Deprecated

    Anthropic is retiring the original Claude 4.0 model versions — the ones that shipped in May 2025. These are distinct from the 4.x versions released since. The specific API strings going offline:

    Model API String (retiring) Retirement Date
    Claude Sonnet 4 (original) claude-sonnet-4-20250514 June 15, 2026
    Claude Opus 4 (original) claude-opus-4-20250514 June 15, 2026

    These are not the latest Claude 4 models. If you have been on Anthropic’s recommended alias endpoints, you are likely already on a current model. This deprecation primarily affects teams that pinned the specific 20250514 version strings in their API calls.

    What to Migrate To

    Anthropic’s recommended replacement within the same tier:

    Retiring Migrate To API String
    claude-sonnet-4-20250514 Claude Sonnet 4.6 claude-sonnet-4-6
    claude-opus-4-20250514 Claude Opus 4.8 claude-opus-4-8

    These are major upgrades, not just version bumps. Both current models ship a 1 million token context window at standard API pricing (no long-context premium), and the Opus line has advanced two full generations — 4.6, then 4.7, then 4.8 — since the original 4.0. For the most capable tier overall, Anthropic now offers Claude Fable 5 (claude-fable-5), a new tier that sits above Opus.

    Breaking Changes When You Migrate

    Moving off the original 4.0 strings is usually a model-ID swap, but the current models removed several request parameters. If you are jumping to Opus 4.8 or Fable 5, plan for these — each returns a 400 if left in:

    Removed parameter Replacement
    thinking: {type:"enabled", budget_tokens:N} Adaptive thinking — thinking: {type:"adaptive"} + output_config.effort (low/medium/high/xhigh/max)
    temperature / top_p / top_k Removed — steer behavior with prompting instead
    Assistant-turn prefills (request ending on an assistant message) Structured outputs — output_config.format

    On Sonnet 4.6 and Opus 4.6 the fixed thinking budget is deprecated but still functional; on Fable 5, Opus 4.7, and Opus 4.8 it is fully removed. A global search for 20250514 in your codebase is the fastest way to find every call that needs changing.

    How This Fits the Claude Model Timeline

    Model Released Status
    Claude Sonnet 4 / Opus 4 (original) May 2025 ⚠ Retire June 15, 2026
    Claude Haiku 4.5 October 2025 ✅ Current speed/cost tier
    Claude Opus 4.6 February 2026 ✅ Active (superseded by 4.8)
    Claude Sonnet 4.6 February 2026 ✅ Current production default
    Claude Opus 4.8 2026 ✅ Current Opus flagship
    Claude Fable 5 2026 ✅ Current top tier (above Opus)

    What If You Don’t Migrate Before June 15?

    API calls to claude-sonnet-4-20250514 or claude-opus-4-20250514 after June 15, 2026 will return errors. There is no automatic failover to a newer model — the call simply fails. If you have any production systems, scheduled jobs, or automated pipelines using these version strings, audit them now. A global search for 20250514 in your codebase is the fastest way to find your exposure.

    What Comes After Claude 4.x

    The “after” is already here. Since the original Claude 4.0 launched in May 2025, the Opus line has shipped 4.5, 4.6, 4.7, and now 4.8, and Anthropic introduced Claude Fable 5 as a new top tier above Opus. As of June 2026 there is no separately branded “Claude 5” generation; the cadence has been steady point releases within the 4.x Opus, Sonnet, and Haiku families, plus the new Fable tier. The practical takeaway: migrating off the retiring 4.0 strings puts you on models that are materially more capable, with a 1M-token context window as the new baseline.

    Which Claude models retire on June 15, 2026?

    The original Claude Sonnet 4 (claude-sonnet-4-20250514) and Claude Opus 4 (claude-opus-4-20250514), plus their dateless aliases claude-sonnet-4-0 and claude-opus-4-0. Opus 4.6, Opus 4.7, and Sonnet 4.5 are separate, still-active models and are not affected.

    What should I migrate to from Claude Sonnet 4 and Opus 4?

    Sonnet 4 migrates to claude-sonnet-4-6 (Claude Sonnet 4.6); Opus 4 migrates to claude-opus-4-8 (Claude Opus 4.8). Both ship a 1M token context window at standard pricing. For the most capable tier overall, Anthropic also offers Claude Fable 5 (claude-fable-5).

    Is migrating just a one-line model-string change?

    Often, but not always. The current models removed temperature, top_p, top_k, the fixed budget_tokens thinking budget, and assistant-turn prefills — each returns a 400 if left in. Replace budget_tokens with adaptive thinking plus output_config.effort, and replace prefills with structured outputs.

    What happens if I call the retired model after June 15?

    The API returns an error — there is no silent failover to a newer model. Audit for the string 20250514 in your codebase before the deadline.

  • Replace Your SEO Agency Kit — SpyFu + Claude + DataForSEO

    Replace Your SEO Agency Kit — SpyFu + Claude + DataForSEO

    $130/month of tools doing $2,000/month of agency work. This kit documents and delivers the complete stack — configured, connected, and ready to run.

    What Small SEO Agencies Actually Do

    A $2,000/month SEO retainer typically covers: weekly competitive keyword monitoring, monthly rank tracking, keyword gap analysis against 3-5 competitors, content brief creation, and a monthly report. That’s the job. SpyFu handles the data layer. Claude handles the interpretation and content strategy. DataForSEO handles rank tracking. This kit wires them together into a system you run yourself in about 45 minutes per week.

    The Stack

    • SpyFu Pro ($79/mo) — competitor keyword intelligence, PPC ad history, 10+ years of historical data, API access
    • Claude Pro ($20/mo) — interprets the data, writes content briefs, identifies opportunities, generates competitive analysis narratives
    • DataForSEO (~$30/mo) — automated weekly rank tracking for your target keywords, stored in Notion

    Total: ~$130/month. Everything a boutique SEO agency provides, run by you.

    What’s Included

    • Complete stack setup guide — SpyFu + Claude + DataForSEO configured, authenticated, and connected to Notion
    • Weekly competitive audit workflow — 45-minute documented process from SpyFu data pull to prioritized action list
    • Keyword gap analysis workflow — identify and prioritize the keywords your top 3 competitors rank for that you don’t. Includes SpyFu Kombat tool tutorial and Claude prompt for interpreting the gap list
    • Content brief generator — SpyFu competitor data → Claude → a complete, publishable content brief in 10 minutes
    • Rank tracking setup — DataForSEO automated weekly rank pulls stored in Notion with trend visualization
    • Monthly competitive report template — client-ready or internal presentation format, auto-populated from Notion data
    • Python scripts for all automated data pulls — SpyFu domain overview, keyword rankings, DataForSEO rank checks

    Who This Is For

    Business owners who are paying $1,500-$3,000/month for SEO services and want to understand whether they’re getting value — and potentially do it themselves. In-house marketers who want a structured competitive intelligence system that doesn’t require an agency. Agencies who want to build this workflow into their own client delivery at scale.

    Replace Your SEO Agency Kit

    $97

    Delivered to your inbox within 24 hours

    Buy Now →

    Secure checkout via Square — all major cards

    Want this customized for your stack? Email will@tygartmedia.com

    FAQ

    Is this actually a replacement for a good SEO agency?

    For most small businesses: yes. A good boutique SEO agency at $2,000/month is doing exactly what this kit documents. For enterprise sites with complex technical SEO needs, active link building campaigns, and large content programs — no, you need dedicated resources. But for a local business, a growing ecommerce store, or a service business with 5-50 pages, this stack covers the core work.

    How much time does the weekly workflow take?

    About 45 minutes once set up. Data pulls are automated. The human time is reviewing the Notion dashboard, running the Claude keyword gap analysis, and deciding which actions to take.

    Do I need technical skills to set this up?

    Basic comfort with running Python scripts and following a setup guide. The initial setup takes 3-4 hours. After that it runs automatically and the weekly workflow is mostly reviewing dashboards and running Claude prompts.

    How is this delivered?

    To your inbox within 24 hours. ZIP file with all Python scripts, the Notion template duplicate link, Claude prompt library, and the complete setup guide.

  • SpyFu Competitor Intelligence Dashboard — Notion Template & Automation

    SpyFu Competitor Intelligence Dashboard — Notion Template & Automation

    Wake up Monday morning with a fresh competitive intelligence snapshot already in your Notion workspace. No logging in. No pulling data manually. Just the information you need, already organized.

    The Problem With Manual Competitive Research

    You know you should be monitoring competitors regularly. You rarely do, because it takes 45 minutes to log into SpyFu, run the searches, note the changes, and put them somewhere useful. This system does all of that automatically and deposits a structured report in Notion every Monday before you start your week.

    What You Get

    • Notion database template with competitor profiles, tracked keyword rankings, weekly change logs, and ad activity sections — pre-structured and ready to populate
    • Google Apps Script automation (completely free) that authenticates with the SpyFu API, pulls weekly data for your tracked domains, and writes results to your Notion database automatically
    • Competitor profile pages with historical ranking trend views — see which direction each competitor is moving
    • Alert rules that flag competitors who gained 10 or more positions on your tracked keywords — the moves worth paying attention to
    • Client-ready report templates that pull from the Notion database and format into a presentation-ready competitive summary
    • Setup guide — running end-to-end in under 2 hours, no developer required

    How It Works

    You set up the Google Apps Script once (the setup guide takes you through it step by step). You add your competitor domains and target keywords to the Notion database. Every Sunday night, the script runs automatically, pulls the latest SpyFu data, and writes structured records to Notion. Monday morning, your competitive dashboard is already updated.

    Requires SpyFu Pro plan ($79/mo) for API access. Requires a free Notion account and a free Google account for Apps Script. No ongoing fees beyond your SpyFu subscription.

    SpyFu Competitor Intelligence Dashboard

    $67

    Delivered to your inbox within 24 hours

    Buy Now →

    Secure checkout via Square — all major cards

    Want this customized for your stack? Email will@tygartmedia.com

    FAQ

    How hard is the setup?

    Under 2 hours following the guide. The hardest part is getting your SpyFu API key, which takes 5 minutes. The Google Apps Script setup has screenshots for every step. The Notion template is pre-built — you duplicate it and add your domains.

    Do I need a paid Notion account?

    No. The template works on Notion’s free tier. If you have a lot of competitor domains and keyword history, a Notion Plus account ($10/mo) gives you more block space, but it’s not required to get started.

    What happens if SpyFu changes their API?

    The kit includes plain-English documentation of how each query works, so you can update the endpoint calls if needed. SpyFu’s API has been stable for years, but if something breaks, email will@tygartmedia.com and we’ll send you an updated version.

  • SpyFu API Starter Kit — Python, JavaScript & Notion Template

    SpyFu API Starter Kit — Python, JavaScript & Notion Template

    The SpyFu API is one of the best-kept secrets in SEO tooling. $79/month buys you programmatic access to 10+ years of competitor data. This kit gives you the code to use it immediately.

    The Problem With API Documentation

    SpyFu’s API documentation tells you what’s available. It doesn’t tell you which endpoints actually matter, how to authenticate correctly, what the response objects look like, or how to store and act on the data. Most developers spend a full day getting their first working query. Most marketers never get there at all. This kit skips all of that.

    What You Get

    • Python code for 5 core endpoints: domain overview, organic keyword rankings, competitor keywords, PPC ad history, and keyword metrics — with authentication, error handling, and sample output
    • JavaScript (Node.js) equivalents for all 5 — same endpoints, same structure, same comments
    • Authenticated query templates ready to run against any domain — swap in the domain, run the script, get data
    • Notion database template for storing and organizing results — competitor profiles, keyword tracking, ad history logs
    • Weekly competitive audit automation guide — schedule pulls, store results incrementally, track ranking changes over time using Google Apps Script (free)
    • DataForSEO integration example — combining SpyFu competitor data with DataForSEO rank tracking for a complete picture
    • Plain-English explanation of every endpoint, every field, and what the data actually means

    Who This Is For

    Marketers who want to pull SpyFu data into spreadsheets, Notion, or custom dashboards without building from scratch. Developers who want working code instead of documentation. Operators who want to automate weekly competitive pulls without hiring anyone to build it.

    Requires SpyFu Pro plan ($79/mo) for API access. Works with Python 3.8+ and Node.js 16+. No prior API experience required — the setup guide assumes you’re starting from zero.

    SpyFu API Starter Kit

    $47

    Delivered to your inbox within 24 hours

    Buy Now →

    Secure checkout via Square — all major cards

    Want this customized for your stack? Email will@tygartmedia.com

    FAQ

    Do I need to know how to code?

    Basic familiarity with running a Python or JavaScript script is helpful. The setup guide walks through installing dependencies and running your first query from zero. If you can open a terminal and run a command, you can use this kit.

    Which SpyFu plan do I need?

    SpyFu Pro at $79/month. The Basic plan ($39/mo) doesn’t include API access. Pro includes $100 in API credits per month — more than enough for weekly competitive pulls on multiple domains.

    Can I use this without Notion?

    Yes. The Python and JavaScript code outputs JSON that you can send anywhere — a spreadsheet, a database, a Slack webhook. The Notion template is the recommended storage layer but not required.

    How is this delivered?

    To your inbox within 24 hours of purchase. ZIP file containing all code files, the Notion template duplicate link, and the setup guide PDF.

  • SpyFu vs Ahrefs vs Semrush vs Moz — Complete 2026 SEO Tool Comparison

    SpyFu vs Ahrefs vs Semrush vs Moz — Complete 2026 SEO Tool Comparison

    You don’t need a $250/month SEO platform. You need the right $79/month tool, a $20 Claude subscription, and a workflow that connects them.

    2026 Pricing — Full Matrix

    Tool Entry Mid Pro Key Limitation
    SpyFu Basic $39/mo Best for: competitor keyword + PPC research
    SpyFu Pro $79/mo Adds API, unlimited exports, 10+ yr history
    Ahrefs Lite $129/mo Best for: backlink monitoring
    Ahrefs Standard $249/mo Most popular — adds Content Explorer
    Semrush Pro $139.95/mo 5 projects, 500 keywords, no historical data
    Semrush Guru $249.95/mo Historical data + content toolkit
    Semrush Business $499.95/mo API access — required for data integration
    Moz Pro Starter $49/mo Best for: site health + DA tracking
    Moz Pro Medium $179/mo 1,500 keywords, 2M pages, API access

    Feature Matrix by Use Case

    Use Case SpyFu Ahrefs Semrush Moz
    Competitor keyword research Best Good Good Adequate
    PPC competitor intelligence Best Limited Good Minimal
    Backlink analysis Adequate Best Good Good
    Technical site auditing Limited Best Best Good
    Content strategy tools Limited Good Best Adequate
    Historical data depth Best Good Adequate Adequate
    Value per dollar Best Adequate Poor Good

    Recommended Stacks by Budget

    Under $100/mo: SpyFu Pro ($79) + Claude Pro ($20) = $99/mo. Best competitor intelligence at this price combined with an AI layer that interprets the data. Beats any single tool under $250/mo for daily operational intelligence.

    Under $200/mo: SpyFu Basic ($39) + Moz Pro Standard ($99) + Claude Pro ($20) = $158/mo. Competitor research + domain authority tracking + site health + AI. Covers 90% of small agency workflows.

    Under $300/mo: SpyFu Pro ($79) + Ahrefs Lite ($129) + Claude Pro ($20) = $228/mo. Full stack: competitor intelligence, backlink analysis, and AI interpretation. Covers everything except content toolkit.

    The Honest Verdict

    Semrush and Ahrefs are excellent tools. The question is whether the premium is justified for your specific workflow. Most small businesses use 20% of features on a $249/month plan. SpyFu covers the 20% that matters most — competitor intelligence — at a third of the price. Claude covers the interpretation layer none of the traditional tools provide. That combination beats any single tool at any price for operators who don’t have time to become full-time SEO analysts.

    Want This Stack Set Up For You?

    We configure the SpyFu + Claude competitive intelligence stack for your specific business overnight.

    will@tygartmedia.com

    Email only. We respond within 24 hours.

  • SpyFu vs Moz Pro 2026 — Pricing, Features & Honest Verdict

    SpyFu vs Moz Pro 2026 — Pricing, Features & Honest Verdict

    SpyFu and Moz Pro start at similar prices but do different things. Here’s which one — or which combination — you actually need.

    Bottom Line

    SpyFu is built for competitor intelligence. Moz Pro is built for site health management. If you only have budget for one, choose based on your primary need. If you have budget for both: SpyFu Basic ($39) + Moz Pro Standard ($99) = $138/mo — roughly the same as Semrush Pro alone, which does both less well.

    2026 Pricing

    Tool Entry Mid Pro Key Limitation
    SpyFu Basic $39/mo Competitor keywords, 6-month history
    SpyFu Pro $79/mo API, unlimited, 10+ year history
    Moz Pro Starter $49/mo 50 keywords, 20K pages, 1 site
    Moz Pro Standard $99/mo 300 keywords, 400K pages crawled
    Moz Pro Medium $179/mo 1,500 keywords, 2M pages, API
    Moz Pro Large $299/mo 3,000 keywords, 5M pages crawled

    SpyFu Wins On

    • Competitor research — SpyFu was built for this. Moz’s competitor tools are secondary features.
    • PPC and paid search intelligence — SpyFu tracks competitor ad history and spend estimates. Moz Pro doesn’t.
    • Historical keyword data — A decade-plus of competitor keyword histories with no Moz equivalent.

    Moz Pro Wins On

    • Domain Authority metric — Moz DA is the most widely referenced domain strength metric. If clients, partners, or editorial standards reference DA, you need Moz.
    • Site auditing — Moz Pro’s crawl is excellent. Medium plan crawls 2M pages/month — more than comparable Semrush tiers.
    • On-page optimization scoring — Specific, prioritized recommendations for improving individual pages.

    Best Combined Stack

    SpyFu Basic ($39/mo) + Moz Pro Standard ($99/mo) + Claude Pro ($20/mo) = $158/mo. Competitor intelligence + domain authority tracking + site management + AI interpretation. Better than Semrush Pro at $139.95/mo for most small business workflows.

    Want This Stack Set Up For You?

    We configure the SpyFu + Claude competitive intelligence stack for your specific business overnight.

    will@tygartmedia.com

    Email only. We respond within 24 hours.

    FAQ

    Which is better for a small business just starting with SEO?

    Moz Pro Starter at $49/mo for understanding your own site performance. Add SpyFu Basic when you’re ready to research competitors systematically.

    Is Moz Domain Authority still relevant in 2026?

    Yes. Despite competitor metrics (Ahrefs DR, Semrush Authority Score), Moz DA remains the most commonly referenced metric in link building outreach, client reporting, and editorial standards.

    Does SpyFu track domain authority?

    SpyFu has its own domain strength metrics but does not use Moz DA. If DA is important to your workflow, you need Moz or a tool that pulls Moz data.