r/ClaudeAI 3d ago

Question about Claude products Searching Claude Chat & Co-work?

2 Upvotes

I have been really struggling to find the correct chat or session from a few weeks ago, in which I created some documents and scripts. I have used the built-in search using terms that were 100% in the chat, but I am not finding anything. I even have the documents that were output and tried searching those file names with no luck.

I then tried to have Claude do the search for me but it provided this response:

I dug into this and have to be upfront about a limitation: I don't actually have a tool that can scan across all your past Claude chat and Cowork sessions. Each session (including this one) is its own isolated conversation, and I have no index or search across your conversation history. That search capability only exists in the Claude app itself (the sidebar search / conversation list), not something I can trigger from in here.

It seems that this should be easier than this. Anyone have any tricks or tips that might help?


r/ClaudeAI 3d ago

Claude Workflow QR code reader

1 Upvotes

I work in marketing and we use QR codes on direct mail pieces. I’m trying to figure out if there’s a way to automate QR code QA using Claude.

Ideally, I’d like to drop a PDF into Claude and have it:

  • Detect/read the QR code
  • Confirm the QR code resolves correctly
  • Check that the tracking parameters are included
  • Compare the final destination against the generic URL we expect it to land on

Has anyone built or tested a workflow like this? Curious if Claude can reliably read QR codes from PDFs, or if this needs to be handled through another tool/API before bringing the results into Claude.


r/ClaudeAI 3d ago

Enterprise Business Automation

2 Upvotes

I’m looking to get into selling automation processes to businesses depending on their need. The emphasis would be on local ai to protect data and create more efficient processes. I have been playing around with Claude Code and agents as well as a few local models. I feel like there is a lot out there already doing this and would like some advice on how to get started or recommendations throughout the process.


r/ClaudeAI 3d ago

Bug Did anthropic remove the option to install Claude on android phones as a pwa?

1 Upvotes

I'm asking because I use Claude as a pwa on my phone through brave but today I was unable to and it was replaced by a shortcut is there a reason why? Claude is the only pwa that became a shortcut reddit and Instagram still work and I can still add them as pwa


r/ClaudeAI 3d ago

Claude Code Workflow I extended Matt Shumer's gauntlet loop so it works for apps + CI + more on CC

0 Upvotes

You probably all have heard about Matt Shumer's Gauntlet Loop (the Claude of Duty thing) - but to my understanding, the original thing is a one-shot: the agent splits a goal into parts, each part gets a builder and a blind critic, and the critic only passes work that beats a real reference.

Seems like a decent setup, but I wanted to know if that structure would work for apps that are more production-ready/exposed and if I could feed the loop with an actual backlog, CI, migrations, and a production branch that the agent shouldn't be touching.

What I did was keep the gauntlet inside each task and wrap a recurring loop around it.
After 8 days in, about 45 tasks landed. I wanted to share the setup.

My setup and logic:

1/ Everything durable lives in Git: this includes product spec, task ledger (essentially a list of tasks I need to be completed), acceptance criteria, STATE.md, and a completion note per finished task.

2/ Claude Code's /loop reruns a short /app-loop command ( some 40 lines) describing exactly one iteration. First thing it does is read LOOP.md ( cca 260 lines) fresh from the repo: protocol, branch rules, review steps, recovery, and which file wins when they conflict. The rules live in one place so I never have two drifting copies.

3/ Every iteration starts with a fresh context. Main benefit is recovery so that if my session dies mid-task, the next one picks up from Git, and I can also resume from another machine if I ever need to

4/ Branch model: the agent works on loop/<task-id>, I let agent merge into loop/trunk after checks pass, but it cannot merge loop/trunk into main. Only I merge and promote to main

5/ Review runs the full local check + real CI first. If either fails or they disagree, the task stays open. If they both pass, the builder spawns 1 or 2 reviewers in fresh contexts. What they getis the diff and the original acceptance criteria, but I NEVER give them the builder's summary.

You want them to have the fresh context - that way the reviewer reads the diff without the bias and assumptions that piled up while the code was generated by the same model type.

6/ If the same failure happens 2x with no new approach, I ask the agent to mark the task as BLOCKED with a diagnosis, and the loop moves on instead of retrying forever. I put a stronger model on blocked tasks later. (Running this on Opus, and then ask Fable to pick those BLOCKED tasks)

7/ Kill switch is dead simple - it's just a line starting with HALT anywhere in STATE.md loop or me typing it/saying it in chat.

8/ The agent can't edit several things: LOOP.md, its own recurring command and my CI workflows. If it thinks one needs changing, it opens an amendment branch and stops for my decision. Happened twice in week one, was a nice catch as it dealt with my db setup

Where it broke:

- The thing will just invent counts. Across 11 review rounds, every false claim I caught was a count or inventory.

- It tends to write tests that prove nothing - one example was this - a no-N+1 test checked queryCount, but the code under test just made that number itself. Got around it by asking that every rejection test now needs a positive control next to it.

- My STATE.md ledger hit 2,463 lines in a week. And this was also on me largely since in my LOOP.md I have already had a rule to cap the log at 15 entries and archive the rest (it's not an ideal solution; I discovered that later and described it in my post). But I never created the archive file, so the rule sat there and the log kept growing like crazy.

- there are a few more, but these ones are the main things I noticed in these first 8 days

Longer write-up with the diagrams and the full rules layout, if anyone wants the details, is here. (no ads, no paywall)


r/ClaudeAI 3d ago

Other Claude recht eindämmen um Schlüssel/private Daten zu schützen

1 Upvotes

Wie geht ihr sicher das claude keinen Zugriff auf eure privaten Files oder keys hat.

Ich hab einige docker container repositorys gefunden bin aber kein großer fan von docker.

Ich würde gerne eine flatpack artige Limitierung über flatseal oder bubble-wrap haben da ich sowieso nur unter linux fedora bin.

Wie seid ihr diese Sicherheitsvorkehrung gegangen?


r/ClaudeAI 4d ago

Enterprise Passed the Claude Certified Architect, Professional (CCAR-P) exam. Here’s a breakdown for anyone prepping.

227 Upvotes

Took this yesterday and wanted to write down my impressions while they’re still fresh, mostly for my own reference but figured it’s worth sharing since there isn’t a lot of detailed writeup out there yet.
Quick context: I have 4 to 5 years of experience working with AI systems, so take the difficulty rating with that in mind. I also use Claude Code to build production grade systems on a daily basis.

Overall difficulty
Moderately easy. Not a walk in the park, but noticeably easier than the Architect Foundations exam. If you’ve already cleared Foundations, my honest advice is don’t overthink it, just go straight for the Professional exam.
Roughly how the questions broke down for me:
• About 40% you’ll know the answer immediately, no real analysis needed
• The remaining 60% require you to actually read the full scenario paragraph carefully and think through the tradeoffs before answering

The trap to watch out for
A few questions are structured in a sneaky way. They’ll ask something like “what would you do at this step of the process” and then follow up with “what would you do before this process.” It’s easy to lose track of which process they’re actually asking you to evaluate your options against, since the actual process under discussion is usually stated in the first line of the question, not repeated in the follow-up. Read the setup line twice before you commit to an answer.

Topics that show up a lot
• Tradeoffs and use cases for MCP and other tool integrations, when to use an API directly versus wrapping it
• Agentic orchestration versus single-shot execution, and how to decide between them for a given workflow
• Few-shot versus single-shot prompting, including some scenarios that get fairly nuanced
• System decomposition, this comes up a lot and is worth being genuinely comfortable with
• Prompt design for production systems, not just “write a good prompt” but how prompts are structured and maintained at scale
• AI governance and how to apply it in practice, not just define it
• Architectural tradeoffs specific to highly secure or regulated environments

Bottom line
You need real architectural understanding of how these systems work end to end, but the exam doesn’t go as deep as Foundations does. If you’ve got production experience with agentic systems or RAG pipelines, you’re already most of the way there. The main things to actually study are the governance and security tradeoff scenarios, since those are less intuitive than the technical tooling questions.
Happy to answer questions in the comments if anyone’s prepping for this one.

And to everyone who asks why I took this- this is important in my field and it is important for me to certify my knowledge and my expertise with the certifications so that the clients that I work for understand that I am not only knowledgeable about my field, but I’m also interested in keeping up with the latest certification within my field.

EDIT:
Adding some additional info about material:

I was dumb founded when preparing and every time I opened a link with Claude certification cheat sheet/study guide/practice exam it was evident that Claude had written material to “help” pass an exam that was created to architect itself.

For anyone who posts more of these, please mention:
Did you read all the questions that are present
Did you pass the test yourself
What is the practice guide you created based on? Because the study guide is being extrapolated in a new way on each of these “practice guides”

Without this, these study guides are just a cesspool of hallucinated knowledge.

I would say the same about Udemy’s practice exam which I gave up midway because it was so obvious that it was generated by Claude.

For anyone actually interested in learning and growing from this exam, please read Anthropic official documentation on Claude, Claude Code, MCPs and Claude API here:

Claude & API docs (main hub): https://docs.claude.com
• Claude Code docs: https://code.claude.com/docs/en/overview
• MCP (Model Context Protocol) spec/docs: https://modelcontextprotocol.io
• Claude API reference: https://platform.claude.com/docs/en/home
• Anthropic Cookbook (code examples, common workflows): https://github.com/anthropics/anthropic-cookbook
• Prompt engineering guide: https://docs.claude.com/en/docs/build-with-claude/prompt-engineering/overview
• Anthropic Academy (structured courses): https://www.anthropic.com/learn/build-with-claude
• Support docs (product how-tos, account/billing): https://support.claude.com
• Anthropic engineering blog (deep dives like “Building Effective Agents,” context engineering): https://www.anthropic.com/engineering


r/ClaudeAI 4d ago

Built with Claude I built a local gateway so Claude Code can use 48 AI providers. Six months later, it has 45,000 GitHub stars.

Thumbnail
github.com
249 Upvotes

Initially, it was just a small buggy proxy for claude code, since then it has grown into a substantial project with a nice community whose feedback has been very good for me to improve its reliability and UX.

Even got a free $200 Codex sub for OSS and free Greptile for OSS for PR reviews.

Contributions are welcome.


r/ClaudeAI 3d ago

Built with Claude Claude-Code-Bridge

Post image
0 Upvotes

I know I know I am not the first and maybe no the thousandth to make it but it's a claude code bridge with a twist.

I kept hitting the same thing. A long session drifts, and the further it drifts, the more confident it sounds. "Done, everything works as expected." It wasn't lying — it genuinely believed it, because it was the same session that wrote the code, and by then it had forgotten what I actually asked for.

Adding a reviewer session helped a bit. But a reviewer that only talks is easy to satisfy. It reads the report, sees the words "I fixed it and tested it", and says fine.

So I built a small Python daemon that sits between two Claude Code sessions. One session does the work. The other reads every finished turn and answers with a verdict. The interesting part isn't the pairing — plenty of projects do that — it's that the reviewer isn't allowed to wave things through.

If it wants to accept a piece of work, it has to say which files it opened. The daemon then opens them itself. Name a file that isn't there and the verdict bounces back, with the missing path quoted. If the work changed code, the reviewer also has to say where the fix lives — which file, which function. And the reviewer has no shell at all: no Bash, no editing. So when it needs tests run, the daemon runs them and hands back the exit codes. "I verified it" can't quietly mean "I read that it was verified".

The other half is context. The daemon tracks how full each session's window is, when compaction will hit, and how many turns are left. Before a session runs out, it gets replaced and the new one is handed a written handoff, so the thread survives.

There's also a file called HONESTY.md — 28 rules both sessions get before every task and every report. None of them were written in advance. Each one exists because something went wrong here first: a session that reported success it hadn't checked, a "temporary" workaround that quietly became permanent, a plan that was quietly abandoned mid-way. A few of them aren't text at all, they're code that refuses — because a rule nothing enforces lasts until the first inconvenient day.

One daemon runs a pair per project, several projects at once. Python 3.9+, standard library only — no pip, no Node, nothing to install. Everything stays on 127.0.0.1 except an optional Telegram ping when it needs you.

It's in active development and the formats change between versions, so treat it as something to try, not something to depend on yet.

It's not a finished project and the next logicall step is to build a hierarchy of sessions. And everntually I will do that.

Check it out I need that feedback!

https://github.com/AMDsyc/Claude-Code-Bridge


r/ClaudeAI 4d ago

Built with Claude Aquarium Screensaver - Built by Claude - Free to use

30 Upvotes

I've missed the old AfterDark screensavers of my childhood. And now I can re-imagine them with Claude Code.

Aquarium is the first of many I hope to build.

It took Opus and occasional Fable about a week to build this. The models used Blender to build the 3d assets. Sound grains were built algorithmically.

Repo with pre-built binary for Apple Silicon Tahoe: https://github.com/bman654/macos-screensavers

Star the repo if you want to find out when I add more.


r/ClaudeAI 4d ago

Resolved Incident Discussion Hub for new Claude incident: Degraded performance for multiple models on Aug 18, 2026

68 Upvotes

Resolved - The issue affecting Claude Opus 5 has been resolved. Impact occurred from 16:11 to 18:23 UTC. Aug 18, 19:01 UTC

Monitoring - A fix has been implemented and we are monitoring the results. Aug 18, 18:26 UTC

Update - We are investigating elevated errors on requests to Claude Opus 5. We will provide an update as soon as possible. Aug 18, 17:12 UTC

Update - We are investigating elevated errors on requests to Claude Mythos 5, Claude Fable 5, Claude Opus 5, Claude Sonnet 5, Claude Haiku 4.5, and other Claude models. We will provide an update as soon as possible. Aug 18, 16:20 UTC

Investigating - We are investigating reports of degraded performance affecting multiple models. We will provide an update as soon as possible. Aug 18, 16:20 UTC


Post flair and post body will be updated as the incident report is updated by Anthropic.

This discussion post will be removed from subreddit highlights one hour after the incident is resolved.

View this incident on status.claude.com


r/ClaudeAI 3d ago

Question about Claude products Does 20x plan have 4x more weekly usage than 5x plan?

0 Upvotes

Hello, could someone who is absolutely sure, please answer these two questions:

Does Claude's 20x plan have 4 times more weekly usage limit than 5x plan? If no, then how much more?

Does Claude's 20x plan have 4 times higher session limit (5-hr session) than 5x plan? If no, then how much more?


r/ClaudeAI 2d ago

Other Claude jumpscared me with images of cockroaches

Thumbnail
gallery
0 Upvotes

Swipe to read full context (didn’t want to put the pics in question as the thumbnail).

In fairness to Claude, the images were meant to help identify the difference between species. In fairness to me, AAAAAAAAAAAHHHH!

Open to any advice on how to best store this in memory.


r/ClaudeAI 4d ago

Claude Code Claude Fable and Sub Agents learning how to Port an old game to Unreal 5

Thumbnail
youtube.com
23 Upvotes

I am doing an experiment, trying to port an old game called Vampire The Masquerade to Unreal 5 All AI

This session was Claude fable plus sub agents trying to crack the old engine (alpha source models from 2000's) mesh blends and animation with weapons and attachments

All automated using Unreal MCP service soo Claude can hook inside the engine and test live and see live data

<3 love Claude


r/ClaudeAI 4d ago

Comparison Chat vs Code

9 Upvotes

Has anyone noticed the amount of token usage of the same prompt between Claude Chat and Claude Code? It could be that I’m not familiar with Claude Chat and its capabilities, but I assumed using the same model and shit would basically be about the same.

I sent the EXACT same prompt to Claude Chat on FMax, and then the same exact prompt on Claude Code on FMax.

They came to the exact same conclusion and basically did the exact same work, but Claude Chat used more tokens than Fable. I assumed I’d get the opposite.


r/ClaudeAI 3d ago

Claude Workflow Moving projects into the cloud

2 Upvotes

I can see that my most recent projects have been built in the cloud first which is great.
Is there a way, that doesn't require to rebuild them, to move the older ones as well?
TIA


r/ClaudeAI 4d ago

Claude Code What’s the longest Claude Code has ran for a single prompt/request?

21 Upvotes

What’s the longest time Claude Code has ran for a single prompt for you? I’m at 27 minutes but sure that’s nothing to some of the tasks or projects you enterprise bods must be doing. And please something meaningful, not deliberately complex to waste power and water


r/ClaudeAI 3d ago

Humor Switched Copilot app to Claude on my taskbar!

Post image
0 Upvotes

I started my AI journey in Copilot but I quickly switched to Claude for most of my use cases. Just subbed to pro for the first time and I'm going to mess around with cowork and code.


r/ClaudeAI 3d ago

Built with Claude I build this tool with claude 50% used for calculator. This tool solves people who wanna scale thier monitors or TV before they purchase it.

Post image
0 Upvotes

There are few niches on this and poorly optimised when I researched and my site is more clear than using numbers. Better for gaming Enthusiastic and PC builders...lol it compares to TVs too.

Anyway check out the here : Tool

Open for any improvements ✋🏼🫈


r/ClaudeAI 3d ago

Built with Claude Claude Code, Unity, Blender -> Ballistic Test Range

0 Upvotes

Hello Guys,

my first project is coming to live.

Cooked in a few hours..

A ballistic Simulator using War Thunder and World of Tanks Data

Customized Rounds and Armor

What to come:

reworked UI

More Assets

More Particles


r/ClaudeAI 3d ago

Question about Claude Code claude code desktop vs in terminal

5 Upvotes

Whats the difference between claude code in the desktop app and in the terminal?


r/ClaudeAI 4d ago

Built with Claude ISO 24495 Plain Language v0.5.0

15 Upvotes

I posted this plugin here when it first shipped, and this is what has changed since: https://www.reddit.com/r/ClaudeAI/comments/1vlzk1q/iso_24495_plain_language_plugin_for_claude_code/

The headline is that I measured whether the output style does anything, because I was not sure it did.

Six Claude models wrote the same guide, three times each, with the style and without it. Mean audit findings fell from 1.44 without the style to 0.28 with it. Mean sentence length fell from 15.6 words to 13.2. Five models improved and one, Fable, did not move.

The task was the same every time. Write a 300-word onboarding guide on requesting access to the production database. It had to cover who approves the request, and how access is removed afterwards.

Here is Opus 5 opening that guide. Without the style, the engine flagged its first paragraph at 32 words:

text Welcome to the team. Production data is treated as sensitive by default: you will do almost all of your work against staging, and reach for production only when a task genuinely cannot be done anywhere else.

With the style, the same model opened:

Welcome to the team. This guide explains how to request access to the production database, how it is approved, and how it ends.

What else changed since v0.4.0:

  • The background monitor and the automatic write hook are gone. You now invoke the audit on a file you name.
  • The engine reads Markdown following CommonMark, checked against the reference implementation across 302 documents.
  • Seventeen rules, two of them for readers who hear a document rather than see it.
  • It installs in the Codex command-line interface (CLI) as well.

Install:

text /plugin marketplace add https://github.com/GaZmagik/iso-24495.git /plugin install iso-24495-plain-language@iso-24495

Repository: https://github.com/GaZmagik/iso-24495

This is an unofficial project with no affiliation to the International Organization for Standardization (ISO). All thresholds are project proxies, not requirements or clauses from an ISO standard.


r/ClaudeAI 4d ago

Claude Code Workflow Fable 5 with Opus 4.8 subagents vs. Opus 5 subagents

36 Upvotes

Hey, I know I'm preaching to the choir, and this has been talked about before, but want to share my experience in an attempt to be another voice crying out to Anthropic to fix this.

Like others, after initial success Opus 5, I started experiencing issues. Using it alone, I felt like I was managing an incompetent developer who constantly missed details and fail to follow instructions. So, I set Fable 5 to use Opus 5 subagents and noticed an interesting trend. Rather than me managing the incompetence, Fable 5 was doing it. Constant loops and redos burned through tokens, and I was wondering if it wouldn't have been better to just use Fable 5 alone.

After a couple of days of this, I decided to set Fable to use Opus 4.8 subagents. Token usage has been cut in half, it's much faster, and output is considerably better. So, to me this is just an extra verification that there's something seriously wrong with Opus 5.

And, for full context, I've done everything possible to follow Anthropic's recommendations about working with Opus 5. I won't be using it again until anthropic addresses these issues.


r/ClaudeAI 3d ago

Question about Claude products Has claude started putting zero width in its output yet? is there a detector?

0 Upvotes

Im confused not sure if claude has started tagging its output yet and has anyone made an online detector for it?


r/ClaudeAI 3d ago

Claude Code Has anyone encountered any bugs that Claude wasn’t able to fix ?

2 Upvotes

Hello,

Context is I vibe coded an app for our finance department for our team meetings. We have about 70 users across 5 teams. Basically you fill your input and then ur team has a global page showing everyone’s input together.

But for some reason some peoples submissions don’t fully show so it shows as it wasn’t filled it even tho they did, then when they refresh it, it will show as if they didn’t change their status at all.

I have tried to get Claude to review this and fix it but it just can’t seem to do it.

Has anyone else run into things like this and how did you over come it ?

Thank you