Tag

Claude

All content about Claude, organized for fast scanning.

31 itemsUpdated Aug 8, 2026
  1. News

    Claude Code now lets sessions message each other to share context

    Claude Code has just added cross-session messaging, letting one task ask another questions and send updates. Instead of syncing full chat logs or files, it hands off a generated summary to reduce repeated setup. The feature is available on macOS and Linux.

  2. Insight

    Anthropic says Claude 5 needs fewer guardrails in prompts

    Anthropic’s Thariq shared new context-engineering guidance for Claude 5, arguing prompts are only part of what the model sees. The company says it cut 80%+ of Claude Code’s system prompt with no measurable loss, leaning more on tools, Skills, and references.

  3. News

    Anthropic launches Claude Opus 5 with bold benchmark claims

    Anthropic has just rolled out Claude Opus 5, touting near-frontier performance at half the price of Fable 5. The company’s benchmark bundle puts it near the top in coding, knowledge work, and agentic tasks—though results vary by test.

  4. News

    Claude Code desktop adds in-app browser for docs and sites

    ClaudeDevs has just rolled out an in-app browser for Claude Code on desktop, so it can read and interact with docs, designs, and websites without switching apps. The browser is sandboxed and configurable, with optional session persistence.

  5. News

    Claude Fable 5 highlights the biggest gap in agentic coding

    Thariq says Claude work breaks down when prompts don’t match the real codebase and constraints. His workflow focuses on surfacing “unknowns” early with interviews, prototypes, and tight planning—then logging deviations until the map fits the territory.

  6. News

    Claude Desktop beta arrives on Linux for Debian, Ubuntu users

    Anthropic has just rolled out Claude Desktop for Linux, bringing a native app experience to Ubuntu and Debian in beta. Early reactions focus on practical requests, including Arch/Fedora support, RPMs, Wayland compatibility, and performance details.

  7. Video

    Anthropic’s Boris Cherny on Claude Code, AI Agents, and the Future of Software Work

    Boris Cherny, creator of Claude Code, discusses his path from startups and Instagram to Anthropic, where Claude Code emerged from the company’s focus on coding, enterprise, and safety. He explains how AI agents are transforming software development, why businesses must reorganize around AI to unlock major productivity gains, and how Anthropic is expanding compute and developer tools. He also reflects on the future of jobs, software engineers, startups, security, and why he believes coding will become a basic skill like reading and writing.

  8. News

    Anthropic brings Claude into Slack with new Claude Tag

    Anthropic has just rolled out Claude Tag, bringing Claude into Slack as a proactive teammate. Tag it in a thread to split work into stages, use connected tools, and report back with results. It’s in beta now for Claude Team and Enterprise plans.

  9. Insight

    Fable 5 vs Opus 4.8: The bug-finding cost surprise

    Paweł Huryn says Fable 5 can beat Opus 4.8 on audit economics, even at 2x token pricing. Across 60 metered Claude Code sessions, Fable cost more per run but surfaced a planted cross-file bug far more often—cutting expected spend to catch it.

  10. Insight

    Why Claude Fable 5 thrives on loops and memory

    Lance Martin says Claude Fable 5 performs best when built around self-correction loops and cross-session memory. Using benchmarks like Parameter Golf and Continual Learning Bench, he reports stronger gains than Opus 4.7—while replies debate cost and verification.

  11. News

    Anthropic launches Claude Fable 5 and Mythos 5 models

    Anthropic has just rolled out Claude Fable 5 and Claude Mythos 5, pairing a general-release model with a more permissive version for trusted users. The company touts big gains in coding, vision, and research, plus new safety routing and lower API pricing.

  12. News

    Claude Code adds nested subagents to keep context under control

    Claude Code has just rolled out nested subagent support, an experiment in “agents kicking off agents” to better manage context. The first release caps nesting at depth=5, with a new “fork:true” option to run skills in separate context windows.

  13. News

    Claude Code’s /fork now runs background agents with full context

    Anthropic says Claude Code’s /fork can now spin up a background agent using the exact context from your active session, then return results to the original thread. It also clarifies /branch as the older, manual workflow—sparking questions about tokens and receipts.

  14. News

    Anthropic launches ant CLI to run Claude APIs in terminal

    ClaudeDevs has rolled out a new ant CLI for Claude Platform, bringing Messages API and Managed Agents to the terminal. It promises OAuth login, piped YAML requests, TUI exploration, and Git-versioned agent configs synced from CI.

  15. News

    Anthropic launches Claude Opus 4.8 with faster, cheaper mode

    Anthropic has just rolled out Claude Opus 4.8, touting sharper judgment, more honesty, and longer independent work. A new “Fast mode” promises roughly 2.5x speed and lower cost, while Claude Code gets deeper agentic workflows for long-running tasks.

  16. News

    Anthropic ships Claude Code security plugin to catch bugs sooner

    Anthropic has rolled out a new security-guidance plugin for Claude Code, designed to flag risky patterns during edits, model turns, and commits. The company says internal testing cut security-related PR comments by 30–40%, while users debate accuracy and false positives.

  17. News

    Anthropic lays out best practices for Claude Code at scale

    Anthropic has published a new guide detailing how Claude Code performs in huge monorepos and legacy systems—and why results hinge as much on setup as on the model. It breaks down the “harness” teams use to keep navigation, context, and governance on track.

  18. Video

    Master Coding Agents Like a Pro (Anthropic’s Ultimate Playbook)

    The opening of the talk defines “vibe coding” as more than just using AI to help write code. The speaker argues that true vibe coding means letting the model handle the implementation to the point that you “forget the code exists,” while you focus on the outcome. He explains why this matters: as AI systems get better, they will be able to handle larger and larger chunks of work, making it unrealistic for humans to stay in a tight line-by-line review loop forever. He then frames the core challenge as how to use this approach safely in production. His answer is that engineers should stop obsessing over every implementation detail, but still stay accountable for the product’s behavior and quality. He compares this to managers or executives overseeing work they cannot personally execute in full detail: they succeed by verifying outcomes, requirements, and checkpoints rather than inspecting everything directly. A key caveat in this early section is tech debt. He says that unlike product behavior, tech debt is still hard to validate without actually understanding the code. Because of that, he recommends using vibe coding mainly on leaf nodes of a codebase, meaning isolated features where problems are less likely to spread into the core architecture.

  19. Video

    Don't Build Agents, Build Skills Instead

    Agents can be smart and still unreliable for real work when they lack domain expertise. This talk argues that the next step isn’t more agent scaffolding—it’s packaging reusable expertise as “Skills” that agents can load when needed. Key takeaways Breaks down what Skills are: organized folders of procedural knowledge (including scripts/tools) that can be versioned, shared, and composed. Explains why code and the file system can act as a universal interface, while Skills supply the missing domain context. Walks through “progressive disclosure” to protect the context window and enable libraries of hundreds or thousands of Skills. Maps an emerging architecture: agent loop + runtime environment + MCP servers for connectivity, with Skills providing expertise—and how that supports deployment across domains.

  20. Video

    How Claude Code Works - Jared Zoneraich

    Coding agents are everywhere—but what actually made them finally usable for real engineering work? This talk walks through Jared Zoneraich’s independent breakdown of Claude Code’s architecture and why he believes “simple” beats brittle, over-engineered agent frameworks. Key takeaways Breaks down the “Master Loop” approach: a single-threaded while-loop that repeatedly calls tools and feeds results back to the model. Covers the core toolset (e.g., Bash, Grep/Glob, diff-based editing) and why Bash is central for robustness and training-data reasons. Explains prompt-driven planning via to-do lists—structured guidance without deterministic enforcement. Discusses reliability concerns: sandboxing/permissions, context management, and the use of sub-agents to avoid bloating the main context.

  21. Video

    How to Integrate Claude Code 4 With Cursor

    If you’re weighing Claude Code versus Cursor (or trying to juggle both), this walkthrough shows what changes when Claude Code is fully integrated inside Cursor—so you can work with live context without constantly re-explaining your code. Key takeaways Walks through setup in Cursor’s integrated terminal: updating Claude, signing in, and confirming the integration. Shows how the status indicator reflects the active file, enabling prompts like “what does this file do?” without naming it. Demonstrates line awareness: select a block of code and ask “what does this do?” with the selection as context. Breaks down the diff view workflow—review proposed changes, revert specific blocks, and accept/reject (with an optional auto-accept toggle), plus linking Cursor from an external terminal via /ide.

  22. Video

    How to Integrate Claude Code 4 With Cursor (Their Largest Update Yet)

    Learn how to integrate Claude Code 4 with Cursor in this step-by-step tutorial. This new feature from Anthropic brings full Claude Code support to the Cursor AI IDE, giving you new features, like inline diff views and real-time code context, all within your favorite IDE. I’ll walk you through the setup process for Cursor and explain key features that make this integration of the best AI coding agent upgrades yet.