79 pointsby theahura5 hours ago32 comments
  • Lucasoato5 hours ago
    The real issue isn’t that Claude is down, it can happen. The problem is that the status page doesn’t report anything, even if it has been impossible to log in during the past hour. Status pages should be trusted, connected to real metrics and not fake pr stuff :/

    EDIT: Now they show the issue, kudos to them! Transparency is the key to build trust. No body expects a perfect service, thanks Claude team for your efforts.

    • chermi5 hours ago
      This has consistently pissed me off. It seems like we all just accepted that whatever they define as "functioning"/"OK" is suitable. I see the status now shows, but there should be a very loud third party ruthlessly running continuous tests against all of them. Ideally it would also provide proof of the degradation we seem to all agree happens (looking at you Gemini). Like a leaderboard focused on actual live performance. Of course they'd probably quickly game that too. But something showing time to first response, "global capacity reached" etc, effective throttling metric, a intelligence metric. Maybe like crowdsourced stats so they can't focus on improving the metrics for just the IPs associated with this hypothetical third party performance watchdog.

      The one that pissed me off the most was Gemini API displaying very clearly 1) user cancelled request in Gemini chat app 2) API showing "user quota reached". Both were blatant lies. In the latter case, you could find the actual global quota cause later in the error message. I don't know why there isn't more outrage. I'm guessing this sort of behavior is not new, but it's never been so visible to me.

    • hn19865 hours ago
      it does show issues. https://status.claude.com/
      • simlevesque5 hours ago
        It shows issues now. Probably not when the person you're replying to wrote their comment.
        • rhgraysonii4 hours ago
          11 minutes elapsed between the comments. There is going to be some actual time before a report and the status page being live in a breaking system.
      • jakeydus5 hours ago
        I saw issues starting at least 45 minutes before their status page was updated.
    • esafak5 hours ago
      You need to use a user-reported status page; the incentives are broken for self reporting.
    • inglor_cz5 hours ago
      Interesting. I just fixed something using Claude Code. But I am located in Central Europe.
      • matheusmoreira5 hours ago
        Me too. Claude Code is running just fine on one of my virtual machines. On another, it logged me out saying the OAuth token expired, and it won't log me back in due to internal server errors. Weird.
      • pixl975 hours ago
        I've not looked into it, but I'd assume they have more than one data center.
    • rvz5 hours ago
      > The problem is that the status page doesn’t report anything, even if it has been impossible to log in during the past hour.

      When Claude took an extra day off, he forgot to report his hours to the dashboard when he will be unavailable / unresponsive and this is probably why people here are complaining about no status update.

      Wonder where I have seen that before?

  • CoolGuySteve5 hours ago
    I'm finding qwen 27b is comparable to sonnet but my self hosting has about 5 more 9s than whatever Anthropic's vibe coding. I also don't have to worry about the quality of the model I'm being served from day to day.

    Probably the most damning fact about LLMs is just how poorly written their parent companies' systems are.

    • CharlieDigital5 hours ago

          > Probably the most damning fact about LLMs is just how poorly written their parent companies' systems are
      
      I have been working on some work related to MCP and found some gaps in implementation in Claude and Codex. This is a relatively simple, well-defined spec and both Claude Code and Codex CLI have incomplete/incorrect implementations.

      During this process of investigation, I checked the CC repo and noticed they had 5000+ issues open. Out of curiosity, I skimmed through them and many point to regressions, real bugs, simple changes, etc. Maybe they have some internal tracker they are using, but you would think that a company with functionally unlimited tokens and access to the best models would be able to use those tokens to get their own house in order.

      My sense now is that there is a need for the industry to create a lot of hype right now so we see showmanship like the kernel compiler and the agent swarms building a semi-functional browser, etc....yet their own tooling has not fully implemented their own protocol (MCP) correctly. They need all of us to believe that these agents are more capable than they actually are; the more piles of tangled code you write and the more discipline you cede to their LLMs, the more dependent you are on those LLMs to even know what the code is doing. At some point, teams become incapable of teasing the code apart anymore because no one will understand it.

      Peeking at the issues in the repos and seeing big gaps in functionality like Codex's missing support for MCP prompts and resources is like looking behind the curtain at reality.

    • kccqzy5 hours ago
      But do you actually treat LLMs as glorified autocomplete or treat them as puzzle solvers where you give them difficult tasks beyond your own intellect?

      Recently I wrote a data transformation pipeline and I added a note that the whole pipeline should be idempotent. I asked Claude to prove it or find a counterexample. It found one after 25 minutes of thinking; I reasonably estimate that it would take me far longer, perhaps one whole day. I couldn’t care less about using Claude to type code I already knew.

      • CoolGuySteve5 hours ago
        "give them difficult tasks beyond your own intellect?"

        Lol no, I've yet to find a model with those properties. Sounds like a fast track to AI psychosis.

        The domain I work in doesn't have enough public documentation for these models to be particularly helpful without a lot of handholding though.

        • hombre_fatal4 hours ago
          I've been working on a luks+btrfs+systemd tool (for managing an encrypted raid1 pool). While I have worked with each individually, it's not obvious what kind of cases you have to handle when composing them together. A lot of it is simply emergent, and the status quo has been to do your best and then see what actually happens at runtime.

          Documentation is helpful to describe high-level intentions, but the beauty is when you have access to source code. Now a good model can derive behavior from implementation instead of docs which are inherently limited.

          I implemented the luks+btrfs part by hand a few years ago, and I resurrected the project a couple months ago. Using source code for local reference, Claude discovered so many major cases I missed, especially in the unhappy-path scenarios. Even in my own hand-written tests. And it helped me set up an amazing NixOS VM test system include reproduction tests on the libraries to see what they do in weird undocumented cases.

          So I think "tasks beyond our intellect (and/or time and energy)" can be fitting. Otherwise I'd only be capable of polishing this project if luks+btfs+systemd were specifically my day job. I just can't fit so much in my head and working memory.

          • zekica4 hours ago
            And it can fail in great ways. Last example: I asked claude for a non-trivial backup and recovery script using restic. I gave it the whole restic repo and it still made up parameters that don't exist in the code (but exist in a pull request that's been sitting not merged for 10+ months).
            • hombre_fatal4 hours ago
              Interesting. I don't think I've seen hallucinations at that level when it's referencing source code.

              Though my workflow always starts in plan mode where Claude is clearly more thorough (which is the reason it takes 10x as long as going straight to impl). I rarely skip it.

      • shimman4 hours ago
        This says more about you than the "intellect" of these nondeterministic probability programs.

        Can you provide actual context to what was beyond your ability and how you're able to determine if the solution was correct?

        Finding out that all these comments that reference the "magical incantation" tend to be full of hot air. Maybe yours is different.

        • kccqzy3 hours ago
          > how you're able to determine if the solution was correct

          I had hundreds of unit tests that did not trigger an assertion I added for idempotency. Claude wrote one that triggered an assertion failure. Simple as that. A counterexample suffices.

    • wise0wl5 hours ago
      I've tried a few models and some are decent, including Qwens models. I've tried a few harnesses like Roo Code in VSCode to put things together that in theory emulate the experience I get from VSCode + Claude or Copilot, but I generally find the experience extremely limited and frustrating.

      How have you set things up to have a good experience?

      • CoolGuySteve5 hours ago
        I'm using the qwen cli tool with a duckduckgo search skill that I made Claude write. It's like bootstrapping I guess

        Once it can search for factual information online the smaller model size becomes less noticeable

      • 5 hours ago
        undefined
    • jasonjmcghee5 hours ago
      People keep saying this and idk what I'm doing wrong. Using q8_0 on all the latest and greatest local models and they just don't come close to sonnet.

      I've tried different harnesses, building my own etc.

      They are reasonably close to haiku? Maybe?

      • bakugo5 hours ago
        You're not doing anything wrong, they are not comparable.

        Claims to the tune of "this 0.5B local model running on my phone is almost as good as [large expensive model]" are common but greatly exaggerated, it's simply not true beyond the most basic use cases.

        Only the much larger models (such as the 744B GLM-5) manage to come close, but nobody's running those locally.

    • chis5 hours ago
      Just to make one obvious critique your costs per token are probably about 1000x higher than the ones they provide.

      I'm pretty sympathetic to Anthropic/OpenAI just because they are scaling a pretty new technology by 10x every year. It is too bad Google isn't trying to compete on coding models though, I feel like they'd do way better on the infra and stability side.

      • CoolGuySteve5 hours ago
        I've owned this GPU for 5 years already, it's fine
    • tills135 hours ago
      What do you run it on? And even then, I'm guessing your tokens per second are not great?
      • CoolGuySteve5 hours ago
        I get about 35-40tok/sec on a 3090.

        It's actually about the same speed when accounting for how much more responsive my system is to Anthropic's saas infrastructure

    • NitpickLawyer5 hours ago
      > Probably the most damning fact about LLMs is just how poorly written their parent companies' systems are.

      This seems like a popular take, but I think it's the other way around. Them dogfooding cc with cc is proof that it can work, and that "code quality" doesn't really matter in the end.

      Before cc claude.ai (equivalent of chatgpt) was meh. They were behind in features, behind in users, behind in mindshare. cc took them from "weirdos who use AI for coding" to "wait, you're NOT using cc? you freak" in ~1 year. And cc is a very big part of them reaching 1-2B$ monthly revenue.

      Yes, it's buggy. Yes, the code is a mess (as per the leak, etc). But they're also the most used coding harness. And, on a technical side, having had cc as early as they did, helped them immensely on having users, having real-usage data, real-usage signals and so on. They trained the models on that data, and trained the models in sync with the harness. And it shows, their models are consistently the highest ranked both on benchmarks and on "vibes" from coders. Had they not have that, they would have lacked that real-world data.

      And if you look at the competition it's even more clear. Goog is kidna nowhere with their gemini-cli, is all over the place with their antigravity-ex-windsurf, and while having really good generalist models, the general mindshare is just not there for coding. Same for oAI. They have an open-source, rust-based, "solid" cli, they have solid models (esp in code review, planning, architecture, bug fixing, etc) but they are not #1. Claude is with their cc.

      So yeah, I think it's really the other way around. Having a vibe-coded, buggy, bad code solution, but being the first to have it, the first to push it, and the first to keep iterating on it is really what sets them apart. Food for thought on the future, and where coding is headed.

    • cyanydeez5 hours ago
      QWEN3.5-Next-Coder does wonders. It's drawbacks are time to first token is 30 seconds to load the model and OpenCode has an unsolved timeout issue on this load, but otherwise once it's warmed up, it's entirely serviceable.

      I've got a AMD395+ with 128GB, so running a ~46GB model gives me about 85k tokens, which gives me easily copy/paste/find/replace behavior; it mocks up new components; it can wire in some functionality, but that's usually at it's limits and requires more debugging.

      I've been looking at how to schedule it using systemd to keep a wiki up to date with a long loaded project and breaks the "blank page" issue with extending behaviors in a side project.

      I understand some of these larger models can do things faster and smarter, but I don't see how they can implement novel functionality required for the type of app I'm concerned with. If I just wanted to make endless CRUD or TODO apps, I'm betting I could figure out a loop that's mostly hands off.

  • user-5 hours ago
    I am a believer that everyone should have their main flow be model/provider agnostic at a high level. I often run out of claude tokens and use GLM-5 as backup.

    https://gist.github.com/ManveerBhullar/7ed5c01a0850d59188632...

    simple script i use to toggle which backend my claude code is using

    • bob10295 hours ago
      I tried the agnostic thing for a while, but there are enough quirks between the providers that I gave up trying to normalize it. GPT5.x wipes the floor with other models for my specific tool calling scenarios. I am not going to waste time trying to bridge arbitrary and evolving gaps between providers.

      I put my Amex details into OAI, I get tokens, it just works. I really don't understand what the hell is going on with Claude. The $200/m thing is so confusing to me. I'd rather just go buy however many tokens I plan to use. $200 worth of OAI tokens would go a really long way for me (much longer than a month), but perhaps I am holding it wrong.

    • fastball5 hours ago
      Being model and provider agnostic are orthogonal concerns.

      e.g. you can run Claude models on AWS Bedrock giving you provider choice for the same model. Whether or not you need model agnosticism at that point seems like a very different question.

      • user-5 hours ago
        > . you can run Claude models on AWS Bedrock giving you provider choice for the same model

        Is anyone doing this for personal dev that isnt token fed by employers? Coding plans are subzidized for a reason right? If I did API usage from a cloud provider id be out tens of thousands already.

    • cyanydeez5 hours ago
      Interesting; do you find they actually react the same way to the harness?
      • user-5 hours ago
        There are differences for sure. Claude models feel the most 'stable' in that I see less tool confusion messages and other mistakes like the one im looking at right now.

        "Wait, I'm editing the wrong sections. The edit tool tried to match but replaced with different prop names than what was in the file. Let me re-read the file and understand the current state properly."

        And of course models are not 1-to-1 and have different strengths and weaknesses. I know I wont get the same quality plan mode output probably. Its a tradeoff.

        • cyanydeez2 hours ago
          I generally assume the differences could be minimized by tailoring the instructions to the models; that they're not incapable of doing the same things, but the way in which they're instructed matters because it needs to draw on training.

          But I don't use any of the cloud stuff; I'm local4lyfe.

    • boxingdog5 hours ago
      [dead]
  • kwertyoowiyop5 hours ago
    For older programmers: this is like when Stack Overflow would go down.

    For really old programmers: this is like when Computer Literacy bookstore was closed.

  • rishabhaiover5 hours ago
    OAuth is failing, I can't login via claude code.
  • sdoering5 hours ago
    I am currently - and (this post is up 25 minutes as of now) have been using it without noticeable degradation over the last few hours.

    Edit: But the status page - at least as of now - is clearly communicating elevated error rates.

  • chermi5 hours ago
    Yup displays as an "auth" issue to me. Just a nice reminder that my original plan was to be provider agnostic but everything was working so well with cc I lost sight lol.
  • efficax4 hours ago
    This is pretty much every monday morning, so it's either scale issues with the busiest window of time (people getting started at work on monday) or it's intentional "outage" that only affects some % of people to take load off the system so that API users (who pay more) can be served during the heaviest usage time of the week.
  • boleary-gl4 hours ago
    If you still need access we balance across Claude and AWS via https://kilo.ai/docs/gateway - and you can BYOK for many providers
  • hgoel5 hours ago
    Here's hoping they can get it sorted quick. Hopefully these are just growing pains and not indicative of a GitHub style inability to achieve stability.
  • kevinwang5 hours ago
    Still down for me. (And still nothing on the status page!)
  • buildbot5 hours ago
    Not that it is the best indicator, but downdector is showing many services with spikes at exactly the same time as Claude Codes issues began.
    • nightpool5 hours ago
      downdector always shows spikes when you go to look at it, and then they remove them later retroactively if the spikes are fake.
  • ksajadi5 hours ago
    Failures all over Code and Chat here too (London UK) and status is showing all green
  • rishabhaiover5 hours ago
    The downtime forces me to relook at my utterly dependent relationship with agentic assistance. The inertia to begin engaging with my code is higher than it has ever been.
    • matheusmoreira5 hours ago
      Yeah. It's actually starting to make me anxious. I think I got addicted to these agents.
  • Danielzzzz4 hours ago
    Seems to be good now. Just logged in successfully. Can't live without Claude nowadays is the life learning I realized in the downtime retro to myself lol.
  • jgrahamc5 hours ago
    Here in my corner of Europe it seems to be working fine.
  • theanonymousone5 hours ago
    How much is remaining until the last 9 is gone too?
  • wojciem5 hours ago
    What are decent alternatives to ClaudeCode?
    • abi5 hours ago
      Codex is great.
    • Leomuck5 hours ago
      Probably OpenCode, also works with Claude.
    • rongenre5 hours ago
      I've found minimax to be quite good
    • gedy5 hours ago
      A keyboard /s
  • mistic925 hours ago
    I don't have any issues
  • lovecode0075 hours ago
    Yup for me too - VSC Claude is def down and not working
  • bhanuhai3 hours ago
    any alternative guys?
  • lovecode0075 hours ago
    Def down, keeps saying internal server error
  • incomingpain4 hours ago
    They banned all third party.

    Loads of people cancelled their subscriptions.

    Should be the least load they have been under in months. Yet unreliable.

    Crazy that people are going with their benchmaxxed models.

  • mstaoru2 hours ago
    What? But "coding is largely solved" isn't it?..
  • enraged_camel5 hours ago
    Claude Code inside the desktop app works for me.
  • chermi5 hours ago
    Wtf. Was this just scrubbed/pushed down from frontpage?
    • hgoel4 hours ago
      IIRC threads that are just "yup, seeing this too" are not seen as being valuable here. There isn't (or at least wasn't) much discussion happening.
  • rvz5 hours ago
    Claude isn't down. He's on vacation for today and took an extra day off after the weekend.

    He'll be back to work by tomorrow.

  • MarcelinoGMX3C42 minutes ago
    [dead]
  • johnwhitman3 hours ago
    [dead]
  • boxingdog5 hours ago
    [dead]
  • zephyrwhimsy4 hours ago
    [dead]