Tag: Claude Code

  • Anthropic Launches Claude Code and Claude Cowork in Claude for Government Desktop Public Beta

    Anthropic Launches Claude Code and Claude Cowork in Claude for Government Desktop Public Beta

    Anthropic on July 8, 2026 launched a public beta of Claude Code and Claude Cowork inside Claude for Government Desktop, opening two of its most capable tools to U.S. government agencies for the first time. The release operates entirely within a FedRAMP High authorized environment, meeting the federal government’s most stringent standard for cloud security. For agencies that have been watching commercial AI deployments from the sidelines while waiting for compliant options, this launch marks a direct on-ramp to the same product capabilities commercial users already have.

    What Was Announced

    Anthropic announced that two core Claude products are now available in public beta for government users. Claude Code gives public sector technology teams an AI-powered software development agent for building, modernizing, and maintaining the software systems that support government services. Claude Cowork is a desktop-native AI assistant that works directly with files on agency-managed devices, enabling staff to delegate document-intensive tasks such as memo drafting, request for proposal (RFP) reviews, casework processing, and presentation preparation.

    The platform deploys through standard agency Mobile Device Management (MDM) systems, keeping the installation process within existing IT workflows rather than requiring agencies to adopt new infrastructure. Crucially, Anthropic remains the contracted and billing party for Claude for Government, meaning agencies do not need to establish a separate relationship with a cloud provider before getting started.

    Agencies interested in access can submit requests at claude.com/solutions/government. Security teams can also download penetration-test artifacts through Anthropic’s trust center under a non-disclosure agreement, giving authorizing officials the documentation they need to evaluate the platform.

    Anthropic noted that government agencies on Claude for Government Desktop will receive new capabilities on the same update cadence as commercial users, rather than lagging behind on a slower enterprise release cycle.

    Technical Details

    The security architecture has been designed around the specific requirements of federal information systems. Conversation history is stored locally on agency-managed devices rather than on Anthropic’s servers, limiting the data surface that leaves the agency perimeter. Inference processing runs inside FedRAMP High authorized infrastructure. FedRAMP High is the top tier of the Federal Risk and Authorization Management Program and covers cloud services that process unclassified but highly sensitive government data.

    Audit and compliance tooling is central to the product. Hash-chained audit logs record all administrative actions in a tamper-evident format, and the platform supports a two-person approval workflow for sensitive operations. This documentation structure is designed to support each agency’s Authorization to Operate (ATO) process, the required step before any federal agency can formally adopt a new software system.

    Administrative controls have been built with large, multi-agency deployments in mind. Platform administrators can set department-level user allocations and spending limits, apply SCIM group mapping to enforce rate limits and restrict which Claude models are available to which teams, and configure layered defaults that cascade down to sub-agencies. Per-user and per-model usage tracking, paired with spend caps and burndown alerts, gives compliance teams granular visibility into how and where the platform is being used. Metering data can also be exported for compliance reporting, separate from any sensitive conversation content.

    Industry Impact and Reactions

    The launch places Anthropic in direct competition with Microsoft, Google, and Amazon for the next generation of federal AI contracts. Microsoft has had a multi-year head start with Azure Government and Microsoft 365 Government offerings, and Google has offered Gemini through Google Public Sector for nearly two years. Amazon Web Services operates GovCloud as a long-established government cloud environment. Anthropic’s entry with a FedRAMP High desktop product that bundles both a code generation agent and a general productivity assistant into a single managed offering represents a new configuration in this space.

    The launch builds on existing Anthropic government deployments. The Department of Defense holds a $200 million contract for Claude access, and Lawrence Livermore National Laboratory has approximately 10,000 scientists and researchers using Claude daily. Opening Claude Code and Cowork under FedRAMP High extends Anthropic’s reach beyond research and defense into civilian executive branch agencies, and the company has previously noted its government access program covers all three branches: executive, legislative, and judicial.

    The timing reflects accelerating government interest in frontier AI tools. As agencies face pressure to modernize aging software systems and reduce the administrative burden on knowledge workers, the availability of a FedRAMP High compliant coding agent and productivity assistant from a leading frontier AI lab is likely to generate significant evaluation activity across departments.

    What Comes Next

    The current release is a public beta. Anthropic will be collecting feedback from agency users before moving to general availability. As agencies progress through their individual ATO processes using Anthropic’s provided documentation and penetration-test artifacts, broader departmental rollouts are expected to follow over the coming months.

    The broader governance calendar may also shape which Claude capabilities can be deployed in more sensitive contexts. The August 1, 2026 deadline for the NSA and CISA to deliver classified frontier model benchmarks and a voluntary pre-release framework could influence what expanded access looks like at higher security classification levels beyond the current FedRAMP High unclassified tier.

    Conclusion

    Anthropic’s launch of Claude Code and Claude Cowork in Claude for Government Desktop public beta represents a significant step in the company’s government market strategy, moving from individual agency partnerships and pilots to a dedicated, FedRAMP High authorized product designed to scale across the full federal government. By keeping agencies on the same update cadence as commercial users, building in robust audit controls from day one, and removing the requirement for a separate cloud provider relationship, Anthropic has positioned this beta as a practical entry point for agencies ready to act. The public sector AI market is heating up, and today’s announcement confirms Anthropic intends to compete for its full share of it.

    Stay updated on the latest AI news at Evolve Digital.

  • Anthropic Publishes Postmortem Tracing Six Weeks of Claude Code Quality Complaints to Three Root Causes

    Anthropic Publishes Postmortem Tracing Six Weeks of Claude Code Quality Complaints to Three Root Causes

    Anthropic has published a postmortem explaining six weeks of quality complaints about Claude Code, its AI coding assistant. The document traces the degradation to three overlapping product-layer changes that compounded each other in ways that were not immediately obvious from monitoring: a reasoning effort downgrade, a caching bug that progressively erased the model own thinking, and a system prompt verbosity limit that caused a measurable quality drop. The postmortem is notable both for its transparency and for what it reveals about the fragility of layered AI systems under production conditions.

    What Happened

    Users began reporting that Claude Code felt less capable over a roughly six-week period, with complaints centering on reduced reasoning quality, less thorough code analysis, and outputs that seemed to reflect less consideration of context than earlier versions of the tool. Anthropic investigated and found three separate issues that were all contributing simultaneously.

    The first was a reasoning effort downgrade, a configuration change that reduced how much compute Claude devoted to reasoning through problems before generating a response. The intention was likely to improve response latency or reduce inference costs, but the side effect was outputs that reflected less careful reasoning. The second was a caching bug in which the model progressive chain of thought was being partially erased during inference due to an error in how cached states were being managed. This meant that even when Claude was nominally thinking through a problem, some of that thinking was being lost mid-process. The third was a system prompt verbosity limit that caused a roughly three percent quality drop by constraining the instructions Claude received about how to approach coding tasks.

    The three issues reinforced each other. A model reasoning with less effort and losing some of that reasoning to a caching bug, while also operating with truncated instructions, produced outputs noticeably worse than the baseline. No single change explained the full extent of the complaints, but all three together did.

    Why It Matters

    Postmortems of this type are rare in the AI industry. Most AI companies do not publicly acknowledge quality regressions in their products, let alone publish detailed technical explanations of what went wrong. Anthropic decision to do so reflects a transparency commitment that is consistent with its stated values but uncommon in practice across the competitive AI landscape.

    The content of the postmortem also highlights a challenge that is not unique to Claude Code: AI systems in production are not monolithic, and quality is the product of many interacting layers, any of which can introduce regressions. Configuration changes, caching infrastructure, and system prompts all affect output quality in ways that can be subtle and difficult to disentangle. For teams building on top of AI APIs, this is a reminder that model versions alone do not determine quality, the entire inference stack matters.

    What Comes Next

    Anthropic has indicated that all three root causes have been identified and addressed. The postmortem does not detail what monitoring or regression testing changes are being made to prevent similar multi-factor quality issues in the future, but that is a natural next question. For Claude Code users who noticed the degradation, the fix is presumably already in place. The bigger significance is the precedent: a major AI company publicly explaining a quality failure in enough technical detail to be genuinely informative rather than just reassuring.

    Stay updated on the latest AI news at Evolve Digital.

  • Anthropic Publishes Postmortem Tracing Six Weeks of Claude Code Quality Complaints to Three Root Causes

    Anthropic Publishes Postmortem Tracing Six Weeks of Claude Code Quality Complaints to Three Root Causes

    Anthropic has published a postmortem explaining six weeks of quality complaints about Claude Code, its AI coding assistant. The document traces the degradation to three overlapping product-layer changes that compounded each other in ways that were not immediately obvious from monitoring: a reasoning effort downgrade, a caching bug that progressively erased the model own thinking, and a system prompt verbosity limit that caused a measurable quality drop. The postmortem is notable both for its transparency and for what it reveals about the fragility of layered AI systems under production conditions.

    What Happened

    Users began reporting that Claude Code felt less capable over a roughly six-week period, with complaints centering on reduced reasoning quality, less thorough code analysis, and outputs that seemed to reflect less consideration of context than earlier versions of the tool. Anthropic investigated and found three separate issues that were all contributing simultaneously.

    The first was a reasoning effort downgrade, a configuration change that reduced how much compute Claude devoted to reasoning through problems before generating a response. The intention was likely to improve response latency or reduce inference costs, but the side effect was outputs that reflected less careful reasoning. The second was a caching bug in which the model progressive chain of thought was being partially erased during inference due to an error in how cached states were being managed. This meant that even when Claude was nominally thinking through a problem, some of that thinking was being lost mid-process. The third was a system prompt verbosity limit that caused a roughly three percent quality drop by constraining the instructions Claude received about how to approach coding tasks.

    The three issues reinforced each other. A model reasoning with less effort and losing some of that reasoning to a caching bug, while also operating with truncated instructions, produced outputs noticeably worse than the baseline. No single change explained the full extent of the complaints, but all three together did.

    Why It Matters

    Postmortems of this type are rare in the AI industry. Most AI companies do not publicly acknowledge quality regressions in their products, let alone publish detailed technical explanations of what went wrong. Anthropic decision to do so reflects a transparency commitment that is consistent with its stated values but uncommon in practice across the competitive AI landscape.

    The content of the postmortem also highlights a challenge that is not unique to Claude Code: AI systems in production are not monolithic, and quality is the product of many interacting layers, any of which can introduce regressions. Configuration changes, caching infrastructure, and system prompts all affect output quality in ways that can be subtle and difficult to disentangle. For teams building on top of AI APIs, this is a reminder that model versions alone do not determine quality, the entire inference stack matters.

    What Comes Next

    Anthropic has indicated that all three root causes have been identified and addressed. The postmortem does not detail what monitoring or regression testing changes are being made to prevent similar multi-factor quality issues in the future, but that is a natural next question. For Claude Code users who noticed the degradation, the fix is presumably already in place. The bigger significance is the precedent: a major AI company publicly explaining a quality failure in enough technical detail to be genuinely informative rather than just reassuring.

    Stay updated on the latest AI news at Evolve Digital.

  • Anthropic Launches AI-Powered Code Review for Claude Code, Targeting the Pull Request Problem

    Anthropic Launches AI-Powered Code Review for Claude Code, Targeting the Pull Request Problem

    Anthropic launched a new Code Review feature for Claude Code on Monday, March 9, 2026, adding automated pull request analysis to its developer-focused AI tool. The feature arrives at a moment when AI-generated code is flowing into software projects at unprecedented volume, creating a growing need for tools that can verify output quality before it reaches production. Code Review is rolling out first to Claude for Teams and Claude for Enterprise customers in research preview.

    What Was Announced

    The Code Review tool integrates directly with GitHub, allowing it to automatically analyze pull requests and leave inline comments that flag potential bugs, logic errors, and suggested improvements. The system is designed to function as a continuous reviewer in developer workflows, operating between the moment a PR is opened and when a human reviewer picks it up. For teams generating significant volumes of AI-assisted code, the tool is positioned as a way to catch issues early rather than relying solely on human review capacity.

    Anthropic is launching Code Review in research preview, which means the feature will evolve based on real-world feedback before reaching general availability. The initial rollout is limited to Claude for Teams and Enterprise customers, consistent with the company practice of testing professional-grade tools with users who can provide structured feedback on enterprise use cases.

    The launch comes at a significant moment for Anthropic as a business. The company reported that Claude Code run-rate revenue has surpassed .5 billion since the product launched, and enterprise subscriptions have quadrupled since the start of 2026. Code Review represents an attempt to deepen the value proposition for teams already invested in the Claude Code ecosystem.

    Technical Details

    Code Review operates through GitHub integration, analyzing pull request diffs in context and generating line-level comments. The system leverages Claude understanding of code semantics to go beyond simple pattern matching, identifying issues that require reasoning about intended behavior rather than just syntax or style. This includes flagging potential off-by-one errors, incorrect conditional logic, missing edge cases, and functions whose implementations do not match their documentation.

    The review runs automatically when a pull request is opened or updated, without requiring a developer to explicitly invoke it. Comments appear in the standard GitHub PR review interface, meaning teams do not need to change their existing code review tooling or workflow to incorporate Claude feedback. The integration is designed to complement rather than replace human review, providing a first pass that surfaces issues before a teammate invests time in reading the diff.

    The research preview designation signals that Anthropic is actively collecting data on false positive rates, missed issues, and the quality of suggested fixes. Code review is a domain where low precision — too many irrelevant comments — can quickly erode developer trust in an automated tool, making calibration during the preview phase critical to long-term adoption.

    Industry Impact and Reactions

    The Code Review launch positions Anthropic more squarely in competition with a growing set of tools aimed at the AI-generated code quality problem. GitHub itself has been expanding Copilot review capabilities, and tools from companies including CodeRabbit and others have built businesses specifically around automated PR analysis. Anthropic advantage is the depth of context that Claude can maintain within a codebase, as well as the tight integration with Claude Code that allows the review tool to draw on understanding established across a developer existing sessions.

    The broader challenge that Code Review addresses is one of the defining software engineering problems of 2026. As AI coding assistants become standard in development workflows, the volume of code being written has increased substantially, but review capacity has not scaled at the same rate. Automated review tools are increasingly viewed not as a convenience but as an essential quality gate for teams operating at speed.

    Anthropic report of quadrupled enterprise subscriptions and .5 billion in Claude Code run-rate revenue provides important context for understanding why Code Review matters strategically. Enterprise customers who deeply embed Claude Code into their development workflows are significantly harder to displace, and adding PR-level code review further entangles the tool with the software delivery pipeline.

    What Comes Next

    The research preview phase will likely run for several weeks to months as Anthropic gathers feedback on review quality, false positive rates, and integration reliability. General availability timing has not been announced. The company is expected to expand the feature to additional repository hosting platforms beyond GitHub, though no specific integrations have been announced.

    Future iterations may incorporate deeper codebase context, allowing the reviewer to flag issues that only become apparent when a change is considered alongside other recent modifications or against the broader system architecture. The current PR-diff focused approach is a practical starting point; more sophisticated analysis is a natural evolution for subsequent releases.

    Conclusion

    Anthropic Code Review for Claude Code is a well-timed product that addresses one of the most pressing practical challenges created by the rise of AI-assisted development. By integrating directly with GitHub and automating the first pass of pull request review, Anthropic is positioning Claude Code as an end-to-end development companion rather than just a code generation tool — and giving enterprise customers another reason to keep Claude at the center of their software workflows.

    Stay updated on the latest AI news at Evolve Digital.