Tag: Claude

  • How Claude Cowork Task Scheduling Works

    How Claude Cowork Task Scheduling Works

    Last refreshed: May 15, 2026

    Claude AI · Tygart Media
    How it works in plain terms: Cowork tasks are stored instruction sets that Claude executes on a schedule. You write the prompt once; Claude runs it at the scheduled time using whatever tools and MCP connections you have configured.

    Claude Cowork’s scheduling feature is one of the least-documented parts of the product, but it’s the most powerful. Understanding how it actually works — what triggers tasks, what Claude has access to when running them, and what the limitations are — changes how you design automation with it.

    How Cowork Tasks Are Stored

    Each Cowork task is a named, persistent instruction set saved locally in your Claude Desktop environment. The task contains: a name, a prompt (the full instruction Claude follows each run), a schedule, and optionally a working directory and a set of enabled tools. Tasks are stored in JSON format under your Documents folder at ~/Documents/Claude/Scheduled/ alongside a scheduled-tasks.json index file.

    What Triggers a Scheduled Task

    Tasks run on cron-style schedules configured when you create the task. Common schedules include daily at a specific time, weekly on specific days, or on-demand (manual trigger only). When the scheduled time arrives, Claude Desktop wakes the Cowork runner, loads the task prompt, and executes it with the configured tools and MCP connections active.

    Critical limitation: Claude Desktop must be running and your machine must be awake when the scheduled time fires. Cowork is not a cloud scheduler — it depends on the local process being live. If your machine is asleep or Claude Desktop is closed, the task is skipped for that run with no retry.

    What Claude Has Access to During a Task Run

    When a Cowork task runs, Claude has access to everything configured in your Claude Desktop environment at that moment: all active MCP servers (Notion, Gmail, Google Drive, etc.), the Cowork bash VM for executing scripts and filesystem operations, any skill files mounted in the VM, and the working directory specified in the task config. It does not have access to the interactive chat thread — the task runs in its own isolated context.

    Task Memory: What Carries Over Between Runs

    Nothing carries over automatically. Each task run is stateless — Claude starts fresh with only the task prompt as its context. If your task needs to know what happened last time (what was published, what changed, what errors occurred), you have to build that logging into the task itself. The standard pattern: at the end of each run, write a log entry to a Notion page or local file; at the start of the next run, read that log to pick up context.

    This is why well-designed Cowork tasks always end with a Notion write and start with a Notion read.

    How to Design a Reliable Cowork Task

    Tasks that work well have four components: a clear single objective per task (do one thing, do it well), explicit context loading at the start (read the log, check what already exists), a defined success condition Claude can verify, and a logging step at the end that captures what ran and any errors. Tasks that try to do too many things in one run, or that assume Claude will remember previous runs without explicit context, fail inconsistently.

    When to Move Tasks to GCP Instead

    Cowork scheduling works well for tasks that need to run during your working day when your machine is on. For anything that needs to run at 3 AM, run on a strict schedule with zero missed executions, or process large amounts of data that would exhaust the local VM disk — those belong on GCP Cloud Run or a Compute Engine cron job, not Cowork. The architectural principle: Cowork for interactive-adjacent automation, GCP for always-on production pipelines.

    How do I create a scheduled task in Cowork?

    Open Claude Desktop, navigate to the Cowork section, create a new task, write your prompt, and set the schedule. Tasks are saved locally and run when Claude Desktop is open at the scheduled time.

    Why did my Cowork task not run at the scheduled time?

    Most likely Claude Desktop was closed or your machine was asleep. Cowork tasks require Claude Desktop to be running. Tasks that miss their scheduled time are skipped — there is no retry or catch-up mechanism.

    Can Cowork tasks run while I am using Claude Chat?

    Yes. Cowork tasks run in a separate context from the chat interface. Active Cowork task runs do not interrupt or share context with your current chat sessions.


  • 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.5 and Opus 4.6 Retired June 15, 2026

    Claude 4 Deprecation: Sonnet 4.5 and Opus 4.6 Retired June 15, 2026

    Last refreshed: June 9, 2026

    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
    ⚠ Deprecation Notice (April 2026): Anthropic has announced that claude-sonnet-4-20250514 and claude-opus-4-20250514 — the original Claude 4.0 models — are deprecated. API retirement is scheduled for June 15, 2026. Anthropic recommends migrating to Claude Sonnet 4.6 and Claude Opus 4.6 respectively.

    If you’re 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 will fail on the Anthropic API. Here’s exactly what’s being deprecated, what to migrate to, and what you’ll gain from upgrading.

    Claude Model Deprecation Status (June 2026)

    Model API ID Status Replacement
    Claude Opus 4.6 claude-opus-4-6 Deprecated June 15, 2026 claude-opus-4-8
    Claude Sonnet 4.5 claude-sonnet-4-5 Deprecated June 15, 2026 claude-sonnet-4-6
    Claude Opus 4.8 claude-opus-4-8 ✓ Current flagship
    Claude Sonnet 4.6 claude-sonnet-4-6 ✓ Current
    Claude Haiku 4.5 claude-haiku-4-5-20251001 ✓ Current

    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’ve been on Anthropic’s recommended defaults, you’re likely already on 4.6. This deprecation primarily affects teams that pinned specific model version strings in their API calls rather than using the alias endpoints.

    What to Migrate To

    Anthropic’s recommendation is a direct version bump within the same model 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.6 claude-opus-4-6

    The 4.7/4.6 models are meaningful upgrades — not just version bumps. Claude Sonnet 4.6 ships with near-Opus-level performance on coding and document tasks, dramatically improved computer use capabilities, and a 1 million token context window in beta. Claude Opus 4.6 adds the same 1M context window alongside improvements to long-horizon reasoning and multi-step agentic work.

    Why Anthropic Deprecates Models

    Anthropic follows a predictable model lifecycle: new versions within a generation ship as upgrades, and older version strings are retired on a roughly 12-month timeline after a successor is available. This keeps the API surface clean and pushes users toward better-performing models. The deprecation of the original Claude 4.0 strings follows the same pattern as prior Claude 3 and 3.5 retirements.

    For most API users, the migration is a one-line change — swap the model string. Prompting styles, tool use conventions, and JSON response formats are stable across 4.x generations. Anthropic has not announced breaking changes that would require prompt rewrites when moving from 4.0 to 4.6.

    How This Fits the Claude 4 Generation Timeline

    Model Released Status
    Claude Sonnet 4 (original) May 2025 ⚠ Deprecated — retires June 15, 2026
    Claude Opus 4 (original) May 2025 ⚠ Deprecated — retires June 15, 2026
    Claude Opus 4.6 February 5, 2026 ✅ Current flagship
    Claude Sonnet 4.6 February 17, 2026 ✅ Current production default
    Claude Haiku 4.5 October 2025 ✅ Current speed/cost tier

    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 exposure.

    What Comes After Claude 4.x

    Claude 5 has not been officially announced as of May 2026, based on Anthropic’s release cadence and early signals from Vertex AI deployment logs. As has been the pattern with prior generations, Claude 5’s mid-tier Sonnet model is expected to outperform the current Opus 4.6 on most benchmarks at a lower price point. No official announcement has been made as of April 2026.

    When does Claude 4 deprecate?

    The original Claude Sonnet 4 (claude-sonnet-4-20250514) and Claude Opus 4 (claude-opus-4-20250514) are deprecated and retire on June 15, 2026. Current 4.6 models are not affected.

    What should I migrate to from Claude Sonnet 4?

    Migrate to claude-sonnet-4-6 (Claude Sonnet 4.6). It’s a direct upgrade in the same model tier with significantly improved capabilities and a 1M token context window in beta.

    Will my prompts still work after migrating from 4.0 to 4.6?

    In most cases, yes. Anthropic has maintained API compatibility across the 4.x generation. The 4.6 models are more capable, not differently structured. Most production prompts migrate without changes.

    What’s the difference between Claude 4 and Claude 4.6?

    Claude 4.6 (released Feb 2026) is a meaningful upgrade over the original Claude 4.0 (released May 2025). Key improvements: near-Opus performance at Sonnet pricing, 1M token context window in beta, dramatically better computer use, and improved instruction-following accuracy.

  • 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.

  • Proposal & Scope of Work Builder — Claude AI Skill for Service Businesses

    Proposal & Scope of Work Builder — Claude AI Skill for Service Businesses

    Describe the engagement. Get a professional proposal and scope of work in under ten minutes.

    Who This Is For

    Built for consultants, agencies, freelancers, and service businesses who spend hours writing proposals that should take minutes — and lose deals while their proposal is still being drafted.

    The Problem

    Speed matters in proposal writing. The business that responds with a professional, complete proposal within 24 hours of a conversation has a material advantage over the one that takes a week. Most service businesses take a week because writing proposals is slow, tedious work that requires assembling the same components in slightly different form for every engagement. This skill makes it fast.

    What It Does

    • Executive summary: frames the client’s problem and your solution in the language that wins deals
    • Detailed scope of work: included deliverables, excluded deliverables, and assumptions — the clarity that prevents disputes later
    • Timeline with milestones and key dependencies
    • Investment summary with payment schedule options
    • Terms and conditions framework covering intellectual property, revisions, and termination
    • Professional cover letter you can personalize before sending

    What You Get

    The complete skill file in Claude-compatible format, a prompt library specific to the use case, and a setup guide that gets you running in under five minutes. After purchase, everything downloads instantly.

    Proposal & Scope of Work Builder — Claude AI Skill for Service Businesses

    $47

    Delivered to your inbox within 24 hours — skill file, prompt library, and setup guide

    Buy Now →

    Secure checkout via Square — all major cards accepted

    Want a custom version built specifically for your business? Email will@tygartmedia.com

    Frequently Asked Questions

    Does the skill write the proposal in my voice?

    The output is professional and neutral by default. For a version tuned to your specific voice and positioning, consider The Fitting — the overnight Claude deployment service — which includes voice calibration as part of the setup.

    Can I use this for different engagement types?

    Yes — the skill adapts to the engagement you describe. Fixed-price projects, retainers, hourly engagements, and hybrid models all produce different scope and investment structures.

    How long does a complete proposal take to generate?

    Under ten minutes for a typical engagement. The skill asks clarifying questions for anything that is ambiguous, then generates all six sections in one output.

    How is this delivered?

    Within 24 hours of purchase via email from will@tygartmedia.com. Skill file, prompt library, and setup guide delivered as a ZIP download.

    Does this require a paid Claude subscription?

    A Claude account is required. The free tier works for light use. Claude Pro ($20/mo) is recommended for regular use. The skill works with both.

    Can I get a custom version built for my specific business?

    Yes. Email will@tygartmedia.com with a description of your business and workflows. Custom skill builds are available as part of The Fitting service.

  • Weekly Business Review Builder — Claude AI Skill for Business Owners

    Weekly Business Review Builder — Claude AI Skill for Business Owners

    Your numbers, your wins, your priorities — formatted for a 15-minute CEO review every week.

    Who This Is For

    Built for business owners and operators who want to run a structured weekly review but keep skipping it because assembling the inputs takes longer than the review itself.

    The Problem

    The weekly business review is one of the highest-leverage operating habits a business owner can build. Fifteen minutes with the right data tells you whether you are on track, what is blocked, what decisions need to be made, and what matters most this week. The problem is that most owners skip it because pulling together the numbers, the wins, the issues, and the priorities from wherever they live is itself a 30-minute task. This skill makes it a two-minute input.

    What It Does

    • Weekly revenue and pipeline summary — actual vs. target, current vs. prior period
    • Top wins and completed deliverables — what got done and what it means
    • Open issues and blockers with owner and status — nothing falls through
    • Key decisions needed this week — surfaces them explicitly so they get made
    • Priorities for the coming week, ranked by impact
    • Team pulse check summary — a lightweight read on how the team is doing

    What You Get

    The complete skill file in Claude-compatible format, a prompt library specific to the use case, and a setup guide that gets you running in under five minutes. After purchase, everything downloads instantly.

    Weekly Business Review Builder — Claude AI Skill for Business Owners

    $47

    Delivered to your inbox within 24 hours — skill file, prompt library, and setup guide

    Buy Now →

    Secure checkout via Square — all major cards accepted

    Want a custom version built specifically for your business? Email will@tygartmedia.com

    Frequently Asked Questions

    What inputs do I need to provide?

    Whatever you have — revenue numbers, a list of wins, a brain dump of issues, your priorities. The skill accepts messy input and formats it into a clean review document. The input template guides you through what to include.

    How long does the review document take to generate?

    Under five minutes once you have your weekly inputs. The skill formats and organizes. You review and decide.

    Can I share the review document with my team?

    Yes. The output is a clean document you can copy into Notion, email, or share in Slack. Several owners use it as their weekly team standup agenda.

    How is this delivered?

    Within 24 hours of purchase via email from will@tygartmedia.com. Skill file, prompt library, and setup guide delivered as a ZIP download.

    Does this require a paid Claude subscription?

    A Claude account is required. The free tier works for light use. Claude Pro ($20/mo) is recommended for regular use. The skill works with both.

    Can I get a custom version built for my specific business?

    Yes. Email will@tygartmedia.com with a description of your business and workflows. Custom skill builds are available as part of The Fitting service.

  • Client Onboarding Generator — Claude AI Skill for Service Businesses

    Client Onboarding Generator — Claude AI Skill for Service Businesses

    Notes from the intake call in. Complete client onboarding package out.

    Who This Is For

    Built for consultants, agencies, and service business owners who want every new client to feel like they hired a firm three times their size — starting from the first document they receive.

    The Problem

    Client onboarding is a first impression that most service businesses give too little attention. The engagement is sold. The contract is signed. And then the client waits — sometimes days — for documentation that tells them what happens next, who to contact, what to expect, and when. That wait erodes confidence. A professional, complete onboarding package delivered within hours of signing tells a different story about how you operate.

    What It Does

    • Welcome letter personalized to the client, the engagement, and the first milestone
    • Project brief: scope, goals, success metrics, and how you will measure them
    • Communication preferences document: primary channels, expected response times, escalation path
    • Key contacts and responsibilities matrix — who owns what on both sides
    • Deliverables list with timeline and owner assigned
    • Client first-week checklist: what you need from them and when

    What You Get

    The complete skill file in Claude-compatible format, a prompt library specific to the use case, and a setup guide that gets you running in under five minutes. After purchase, everything downloads instantly.

    Client Onboarding Generator — Claude AI Skill for Service Businesses

    $47

    Delivered to your inbox within 24 hours — skill file, prompt library, and setup guide

    Buy Now →

    Secure checkout via Square — all major cards accepted

    Want a custom version built specifically for your business? Email will@tygartmedia.com

    Frequently Asked Questions

    Can I use this for different types of service engagements?

    Yes — the skill adapts the onboarding package to whatever engagement type you describe. A retainer engagement gets different documentation than a project-based one.

    How long does it take to generate a complete onboarding package?

    Under ten minutes from intake notes to complete package. The skill asks a few clarifying questions if needed, then generates all six documents in one output.

    Can I white-label this for client delivery?

    Yes. The output is yours to use however you like. Add your letterhead, your brand, your signature. The content is generated for your specific engagement.

    How is this delivered?

    Within 24 hours of purchase via email from will@tygartmedia.com. Skill file, prompt library, and setup guide delivered as a ZIP download.

    Does this require a paid Claude subscription?

    A Claude account is required. The free tier works for light use. Claude Pro ($20/mo) is recommended for regular use. The skill works with both.

    Can I get a custom version built for my specific business?

    Yes. Email will@tygartmedia.com with a description of your business and workflows. Custom skill builds are available as part of The Fitting service.