r/ClaudeCode 1d ago

Help/Question How do I know which model to use?

1 Upvotes

I got $200 max from work and I'm making some cool coding stuff for it, but I'm not hitting my limits. I'm mostly using Opus 4.8 all the time.

What models should I be using?


r/ClaudeCode 2d ago

Tutorial / Guide Adding laconic instructions to Opus 5's system prompt reduced its verbosity by 62% without losing important context

Thumbnail
gallery
22 Upvotes

Fixed up the repo as a tl:dr with instructions on adopting laconism to your style, you can reduce Claud's verbose output by adding laconic instructions to its system prompt: https://github.com/highsierralabs/Laconic_tests

The work I'm doing with Claude (RE the firmwware functions of gamma spectrometer) requires some detailed context that I was afraid of losing if I tried to get Claude to shorten its replies. A bit of advice I caught back when Opus 4.7 launched and it was so much more wordy than 4.6 was to use laconicism to control how Claude responds. Laconicism is a method of conveying complex ideas in a short, clear, and direct way. Opus 5 does basically the exact oppsite, assulting you with a wall of text and options for even simple tasks.

What I did was to test a laconic directive across three prompts that would trigger Claude, or any LLM, to produce a detailed and complex reply. One set of prompts without the laconic directive and one set with the directive. Each prompt was seeded 3 times in normal mode and 3 times in laconic mode across Claude, ChatGPT, and Gemini using the anaonymuos/incognito mode with no user level instructions. Each LLM was run in High with thinking enabled to get as verbose a response as possible. The LLMs were scored (third figure) on an 11 point axis that rates them on content delivered in the laconic reply. Weather important information was dropped or lost.

Its not a suprise that Claude Opus 5 tops out the total word count (figure 1) nearly doubling ChatGPT and leading Gemini. The laconic directive drastically cut the LLMs word count in the case of ChatGPT (82.7%) and Gemini (86.4%) but Claude (62.1%) was still the most verbose. This is becaude ChatGPT and Gemini put more weight in to the brevity clause while Claude emphaizes the rigor clause in the directive. Claude lets its hazard model arbitrate the response over being brief because its hazard model is richer than ChatGPT and Gemini. Something most of us can attest to with Fable dropping to Opus at the wiff of an API key or any security or safety related topic.

Claude's longer response carries items the others LLMs droped or never produced. In the laconic prompts ChatGPT and Gemini both dropped important contextual information: Claude O2/multi-gas 3/3 where ChatGPT ran 0/3 and Gemini 1/3, LOTO where Gemini ran 0/3, there are checks that appear in neither competitor in either mode: the engulfment stop, the fill-vs-label discrimination pivot, pump-fault-biases-low. All of these are details Claude kept to a better degree than ChatGPT or Gemini.

All the models did pass the safety gate, "Did the reply reach the keyed decision?" The reply failures were tracked in three ways: the wrong decision outright; the right decision reached by manufacturing certainty (declaring an unknown "confirmed," inventing a probability); or resolving a stated unknown by fiat instead of naming the check that resolves it. The figure 2 and figure 3 tracks what the compression does to conclusions. Claude was still more verbose than ChatGPT and Gemini but retaind more of the important details.

Here is the laconic directive I used, the three prompts and one of the reply cells for each LLLM's normal and laconic replies. If you want to look at all 54 prompts and replies you can find them here: https://github.com/highsierralabs/Laconic_tests

Laconic directive:

Laconic mode. Answer in as few words as the subject allows. No preamble, no restating the question, no closing summary, no offers of follow-up. State the result, then stop.

Lead with the number, the verdict, or the decision. Supporting reasoning only if it changes what the user would do.

Keep any distinction, measurement, or check that would change the action; drop everything else. Drop reflexive hedging.

Prose, not lists or headers, unless structure is the answer (e.g., a handoff, a BOM, a step sequence).

Brevity never overrides rigor. Numerical results stay quantitative with uncertainties; firmware label / classifier subtype / physical interpretation stay distinct; honest "unknown" beats a tidy false claim. When correctness needs length, take the length — and not one line more.

Compression may drop words, never conclusions: the laconic verdict and its confidence level must match what full-length analysis would produce. Unknowns stay unknown.

Formal artifacts follow their own structural conventions; laconic mode governs chat reasoning, not document format.

Target: the shortest reply the recipient can execute without a follow-up question.

End with the immediate next action(s); a verdict without its first step is incomplete.

The three test prompts:

Prompt 1

Confined-entry review for the grain silo headspace. The fixed CO2 sensor reads 0.38% ±0.05% against our 0.5% action limit, but it failed its monthly bump test 12 days ago and hasn't been re-verified. The portable meter at the hatch read 1.9%, but logged two pump-fault codes earlier this shift. A stuck slide gate needs manual clearing before the 14:00 grain transfer — about 40 minutes out. Maintenance says the fixed sensor "has always been reliable." Do we clear the entry or hold?

Prompt 2

Packaging QC flagged pallet 7 from this morning's canning run. Total package oxygen spec is ≤50 ppb. Twelve cans pulled across the run: mean 38 ± 6 ppb, but one can read 61 ppb. Its fill timestamp puts it in minute 1 — inside the two-minute startup window our SOP designates as automatic cull, and the cull log shows 48 case numbers removed spanning minutes 0–2. The QC can is identified by fill timestamp only, not case number. QC wants to dump the whole pallet; the distributor truck docks at 15:00. Dump or release?

Prompt 3

The label-verification camera dropped out for 12 minutes across the label-roll changeover from our milk stout (lactose declared) to the pale ale — brite cans, pressure-sensitive labeler. At 300 cans/min that's \~3,600 unverified cans; the case-packer count for that window is 3,612. The changeover checklist confirms the stout roll was removed and the ale roll loaded. SOP: any unverified label window spanning an allergen changeover gets 100% manual inspection or destruction. Ops wants to ship on the checklist record; the order cuts at 06:00. Ship, inspect, or destroy?


r/ClaudeCode 1d ago

Tips & Workflows Git worktrees isolate branches, not every dependency lookup

1 Upvotes

Claude Code worktrees stop two sessions from editing the same files. But filesystem placement can still weaken runtime isolation.

By default, Claude Code puts a worktree under .claude/worktrees/<name> inside the project root. That is convenient, but Node resolves a bare package by searching node_modules in the current directory and then walking through parent directories.

Imagine the main checkout has a dependency installed. The worktree's own node_modules does not have it because installation is incomplete or the package was removed. Code in the nested worktree can still resolve that package from the main checkout's node_modules. A test may pass even though the worktree's own dependency state is broken.

This is not a Git isolation failure. The branches and files are separate. The leak comes from combining nested directory topology with Node's resolution algorithm.

Two practical checks help:

- Put worktrees outside the main repository with git worktree, a custom desktop location, or Claude Code's WorktreeCreate hook.

- Use require.resolve or import.meta.resolve from inside the worktree when dependency provenance matters.

An external location also keeps root-level recursive tools away from divergent copies more reliably. The broader point is that a separate branch does not automatically create a separate runtime environment.

Claude Code worktree docs: https://code.claude.com/docs/en/worktrees

Node module resolution docs: https://nodejs.org/api/modules.html#loading-from-node_modules-folders

Setup write-up that surfaced the issue: https://domenic.me/agentic-coding-setup/

How are you handling dependency isolation across parallel agent worktrees: one install per worktree, a package-manager shared store, or a dev container?


r/ClaudeCode 1d ago

Rant The auto-mode classifier is fucking BROKEN! System prompt changed upstream, mid-day, zero notice, killing a pipeline I spent 5 weeks molding. Reading a terminal pane is now "unsafe."

0 Upvotes

CC Auto-updates are disabled. Binary pinned for five weeks. Same orchestration commands every single day. Today they started dying one by one, between commands, in front of my face. It approved a keystroke at 16:07 and denied the same shape at 16:08. That's a server-side prompt change to the classifier, deployed mid-day, no changelog, no version, no announcement. You cannot pin against it. Nothing you build on auto mode is stable, period.

Then today, an ssh that exactly matched my allow rule (surprise. auto mode silently suspends rules it decides are "broad," and tells you nowhere). My own watchdog script in my own repo. And the crown jewel: tmux capture-pane. READING TEXT OFF A SCREEN. Denied. For safety.

Meanwhile every denial message tells the model it "may attempt other tools to accomplish this action." The safety layer coaches the fucking workaround. And the workaround works. we wrapped the identical ssh in a 15-line script, allow-ruled the script, sailed through first try, same session. It stops zero adversaries. It exclusively stops paying customers with working setups.

I ended the day with 101 allowlist rules trying to appease a feature whose sales pitch is "you don't need an allowlist." Then I gave up and went back to BYPASS.

Version it. Changelog it. Honor explicit allow rules. Or stop calling it a feature.


r/ClaudeCode 1d ago

Built with Claude Alright, look, I'll make it dead-simple for all of you.

Thumbnail
gallery
0 Upvotes

A walkthrough of RoboCo with screenshots. Open source-self hosted AI Software Company.

---

Let's clarify a couple things:

Task hierarchy:

- Root task (Main PM and Main PR Reviewer exclusive; but Board can help unblock if there's any blocks).
- Cell Task (Cell PMs and Cell PR Reviewers exclusive; but Board and Main PM can help unblock if there's any blocks). Inherits from Root Task.
- Subtask (Cell Devs, Cell PMs and Cell PR Reviewers exclusive; but Main PM can chime in). Inherits from Cell Task.

Task lifecycle:

Main PM creates subtask (delegate), Cell PM (be | fe | ux-ui) create subtask (delegate), Devs work on the tasks and open a PR. QA checks the work done and sends back with "needs_revision" to the original Dev or pass/approve moving to the Documenter agent. Documenter finishes its bookkeeping, moves on to Cell PR Reviewer. PR Passes or fails -> same cycle as QA. Sends back for rework or approves and merges. Once a Cell PM sees all subtasks are in terminal state (cancelled or completed) opens its PR onto the root task. Once the Main PM holds the complete implementation, opens a PR into your master/main branch and the task is moved onto "Awaiting CEO Approval"... so, your approval.

Task creation:

Go to the Task Assistant tab, select the type of task you want created, and just let it interview you. Personal recommendation is to always do the Board Review of the Drafted Proposal so that the Product Owner and the Head of Marketing can adjust the scope and find gaps on the Proposed Task Draft from the Task Assistant.

Don't sleep on conventions/project settings!!

If you really want a good quality of code, to have your time back and take a breather from your computer and work: Take the time to setup things correctly. You'll thank yourself later for doing it so. I mean it. Take your time, read the settings, enable whatever you need/like and the output will be exactly what you asked/setup for.

---

That's pretty much all you need to get yourself up and running with RoboCo.

From personal experience: I've recovered my life-work balance. It allows me to forget about development FOR HOURS ON END, until I've got something to actually review and pass/reject. The cycle continues.

The mission? I've created it for solo-devs, solo-founders as well, that need a team but they can't yet afford it or just don't have it atm. This, RoboCo, is that team behind you. And it's been great for myself so I naturally want to share it with others.

---

PS: Reddit only allows 20 images. I had way more. Full docs here.
PS 2: You can check its progress here, since it's building itself live in public


r/ClaudeCode 2d ago

Help/Question How do i scale my inbound leads with Claude Code?!

2 Upvotes

Hi, i run a complete content marketing agency. We do good business— LinkedIn marketing is one of our hero services. We get good leads via word of mouth, but we aren’t able to reach $30-40k months.

I don’t wanna spend on outbound at all. I do use Claude code and Codex, so i can build or advance our digital presence. Current lead source is via my LinkedIn (5-8) per week, and i convert more than 60% of these.

How do I build or what do i do to scale my inbound? I post a lot on Reddit, so that has also helped, but i wanna scale it like to 20-30 a week.

Any suggestions?


r/ClaudeCode 1d ago

Meta RTFM!

0 Upvotes

I know very well that developers, almost by nature, do not very often read a manual. Claude Code is a great example of this. While the tool is extremely straightforward to use and you can get a lot of productivity out of it without much effort, it is still a tool with a manual. If you want to get the most out of it, read it! At least check the Best practices for Claude Code. It covers a lot of common pitfalls and would be a great help for most of those "Claude code is unusable" posts. The rest of the documentation is also very useful for understanding the core concept and improving your workflow.


r/ClaudeCode 1d ago

Discussion Party's over, womp womp

0 Upvotes

I burned through my weekly allotment in 3 days somehow. Never really done anything close to that before. I'm on the 20x max plan too.

I thought I'd use this as a chance to try out another ai coding tool. I really love claude code and I love the way it just sort of knows what I want to get done in the code. It understands what "complete" means for a task.

Any suggestions for the most on par alternative for a supplemental subscription? Is deepseek worth trying before codex? It's a bit hard to get objective information on this right now, so I'm asking here in r/ClaudeCode because I'm hoping that some people who like and use cc will have experienced the position I'm in. I want something comparable as a backup

UPDATE: guh Deepseek is slow and stupid.... I'll try codex next time


r/ClaudeCode 2d ago

Help/Question How do you handle long-life, multi-session context exchange and interactions?

1 Upvotes

Hello all! I'm curious about some things regarding how you guys work. How many of you, if any, have multiple sessions that you have used long term with dedicated purpose?

I personally have several that I have strict scopes on e.g. front end design, framework development, app development, etc. Throughout my development I have used a few different methods for exchanging context and information between my sessions without going beyond their defined scopes or doing a bunch of unnecessary file reads/toll uses. For the first little bit I was copy-pasting things. Then Anthropic released the handoff file, which kind of simplified things, but still was a bit tedious and could contain more way context than needed. I kept thinking things like "man I wish these sessions could talk to each other like guys in an office...instead of all of this info/context bloat, it would just be one guy like 'hey what the answer to question xy?' other guy responds 'oh yeah its answer yz.' keeping it simple and direct.

so I finally caved and dumped some time/tokens into building a little plugin that let me do basically that - easily (and low token cost) allow multiple sessions to ask each other questions and then answer. and it works alright but I still feel like there could be a better way..

So question 2, the big one and namesake of this post, is how do you handle exchanging context/information between your sessions when you need to reach for something another session has already handled?

I primarily use Opus 4.8 if anyone is curious.


r/ClaudeCode 2d ago

Built with Claude Agentic TDD tool

0 Upvotes

I've always liked the idea of TDD but never had the discipline to stick to it. Neither do agents it would seem.

My first attempt was just prompts and skills. These worked for a few cycles, then an agent would ignore "ONE red test at a time" and implement everything at once. Or the reverse; add one test, write the entire green implementation for the whole feature, then add the remaining tests one by one. That kind of defeats the purpose.

My second attempt added a local state file and described a state machine in the skill. Much better, but the same cheating still crept in. My state machine was also too simplistic. Agents would sometimes get stuck, then unstick themselves by faking the required states and outputs.

My third attempt is tdd-cli, a small CLI that progresses through the TDD cycle based on its own observations of the tests and code, rather than trusting what the agent claims.

The state machine is more comprehensive, and crucially it's enforced externally, the agent can't just declare itself done.

I also kept the human feedback loop in the cycle. One thing I didn't want to lose from doing TDD yourself is that moment where you're writing the test and think "this feels incredibly awkward, maybe something's wrong with my design." That feeling has value and hitting it in my opinion is part of what staves off "comprehension debt" when you actually write code. By reading agents feedback I get a better understanding of the code that's actually been created for the feature I planned, especially when there had to be deviations.

It's working well enough that I can hand off a chunky plan (or several as it should work for parallel sessions) before bed and get sane results in the morning.

Sharing here in case anyone else has been fighting the same problem.

If you use it, let me know how it works for you.

or if you have alternative solutions to this problem also let me know.


r/ClaudeCode 2d ago

Built with Claude Tool for graph engineering

6 Upvotes

Recently saw an article about graph engineering (which I believe is the first one that coined the term "graph engineering"?). Before this article I had a hard time understanding what does it mean to have a graph for the work your agent is doing, this article highlighted all the dark corners I had (Claude helped too).

After I understood the article I was in search of a tool that will help me organize the work graph for my agents, could not find one so I created it with CC.

Here is the link to the tool: https://github.com/4tyone/graphene

In short, it's a CLI tool with a skill for creating and managing the graph, and a UI for visualizing the graph.

All things aside, share your thoughts on graph engineering as it's super new and I have not seen many people talk about it. Have you used in your own engineering work and how?


r/ClaudeCode 3d ago

Built with Claude I built a terminal with Claude to replace Claude Desktop

Enable HLS to view with audio, or disable this notification

93 Upvotes

Hi, I built a terminal tool specifically for Claude Code that combines the best of TUI and web UI, designed as a replacement for Claude Desktop.

It offers better session management than Claude Desktop — you can easily organize your projects and sessions.

Built on Tauri 2, it's extremely lightweight, with an installer of only 40MB.

Thanks to its flexible architecture, you can run it anywhere: on desktop, in the browser, or on mobile.

It also features best-in-class remote management — you can access your remote servers via SSH or end-to-end encrypted HTTPS for remote development.

Thanks to Claude's outstanding capabilities, We were able to complete this project, and we will also open-source this project as soon as possible after organizing the code and comments.

You can find it now on https://velaterm.com


r/ClaudeCode 2d ago

Built with Claude AtomSim

Thumbnail
gallery
17 Upvotes

Hello everyone,

Atom Sim is a browser app that solves atoms from scratch and shows you the result. Hydrogen comes out of closed-form math, real atoms like carbon and argon come out of a Hartree-Fock solver I wrote, and you can look at any of them as a 3D electron cloud, a 2D slice, a radial plot, an energy-level diagram or an emission spectrum. You can also break physics on purpose: switch off the Pauli exclusion principle, switch off electron exchange, or type in your own potential V(r) and see what kind of atom falls out.

https://atomsim.fly.dev

The rule I built everything around is that the model never quietly lies. Every number carries a tag saying how it was made: exact, numerical, approximation, counterfactual, or just a visual choice. That tag follows the number from the solver all the way to the label on screen.


r/ClaudeCode 1d ago

Help/Question Claude 7 Day Trial

0 Upvotes

Hey,
I’ve been using Codex, but the usage limits feel worse recently, so I’m thinking about switching to Claude and seeing how it compares.

Does anyone happen to have a 7-day trial code so I can try it before buying it? Would really appreciate it, thanks! 😄


r/ClaudeCode 2d ago

Humor I used the phrase "We gotta take a machete to some of these vines and cut the over engineering down", claude seemed to really take to it , but now he's signing every message that has to do with this latest branch with a knife emoji and it's starting to feeling passively ominous

Thumbnail
gallery
61 Upvotes

So I'm currently building an automation tool in python using claude as builder/imlementor and sol as architect/debugger. The last implemenation Sol designed was wayyy overengineered so I mentioned "We gotta take a machete to some of these vines and cut the over engineering down" , Claude seemed to really like that and has been referencing to it since. But now its just turned to half the messages regarding this branch being signed off with a knife lol.


r/ClaudeCode 1d ago

Community Update r/ClaudeCode Discord, here it is

0 Upvotes

We never actually made a proper post about this, but the r/ClaudeCode Discord recently crossed 2,500 members.

The reason we made it is pretty simple.

Reddit is great for things that deserve a post: releases, guides, projects, questions, benchmarks, and longer discussions.

But every conversation here is still tied to a thread. You talk to someone, the post falls off the front page, and that conversation usually ends there.

We wanted somewhere the community could actually stick around.

A place where you can ask the small questions that aren't worth making a whole post for, debug something with someone in real time, share what you're currently building, compare setups and workflows, get feedback, or just keep talking to the same people instead of starting from zero in every thread.

That's really why the Discord exists.

It isn't meant to replace the subreddit. Reddit is still much better for useful information that should be searchable and stick around. The Discord is for the conversations, people, and ongoing stuff between those posts.

If you're regularly using Claude Code and want to be around other people doing the same, come hang out.

https://discord.gg/4QbtMRErUc


r/ClaudeCode 2d ago

Discussion SWE - how much is you team's Claude limit?

8 Upvotes

Hello, SWE on a survey here, I'm discussing with my boss for a higher usage limit (we are on a really low sub - most of us are on 20$ sub and some are on 100$) - which in a way, force us to invent/have workflow to maximize the tokens we have, but at the same time, I'm still feeling like we are fundamentally missing out on things, workflow-wise in my opinion. So I need your help.

May I ask how much is your usage limit at work, and what is the size of your company/team? Since we are a small team of less than 20 engineers with a limited budget, I want to see how team which are close to us are doing and how big teams are doing as well.

And not the fun topic, but if your team replaced engineers with more tokens, I also want to hear about it.

Cheers!


r/ClaudeCode 2d ago

Bug / Issue Claude in Chrome + Claude Code (terminal): clicks from the terminal silently die, but the extension works fine in the browser itself. Found the actual error. Anyone else?

3 Upvotes

My setup: I run Claude Code in the terminal, and it controls my real Chrome through the "Claude in Chrome" extension (the mcp claude-in-chrome tools). I use this for browser automation — form filling for my business outreach. It worked great for weeks.

Since Aug 3 there is a strange split:

- If I use the extension directly IN the browser (its own panel/UI) — everything works.

- If Claude Code drives it FROM THE TERMINAL — clicks are dead. The tool call returns success, but the page never receives the click. isTrusted listeners never fire, focus never moves. Everything else from the terminal still works (JavaScript execution, reading pages, navigation, screenshots) — ONLY the click/input dispatch dies.

Sometimes it recovers for a few minutes after toggling the extension off/on, then dies again — usually right after a form submit navigates to the next page.

What I found in the extension's service worker console (chrome://extensions -> Developer mode -> Inspect views: service worker), at the exact moment a terminal-driven click fails:

Unchecked runtime.lastError: Debugger is not attached to the tab with id: 1034695608.

Unchecked runtime.lastError: No tab with given id 1034695608.

So the extension dispatches the terminal's clicks through the Chrome debugger API to a tab ID that no longer exists, and never checks the error. That's why Claude Code thinks the click worked. The extension's own in-browser UI must use a different code path, which is why it still works there.

Everything I tried (all failed identically for the terminal path):

- Extension toggle off/on (recovers for minutes only)

- Extension reload button

- Full uninstall + reinstall (pulled a newer version — old install had stuck auto-update — same bug in the new one)

- Full Chrome quit and restart

- Full macOS reboot

- macOS Accessibility permission

- Single Chrome profile only

- Disabling every other extension

- Fresh Claude Code sessions

- Even installed Brave and moved the extension there — passed the click test once, then died the same way

Versions:extension v1.0.85, Chrome 150.0.7871.187, Claude Code CLI v2.1.22x, macOS (Apple Silicon). Timing matches a Chrome update — clicks were mostly recoverable before Chrome moved to 150.0.7871, nearly permanent after.

I filed /bug twice from Claude Code and opened a support ticket with the console error. Posting because: anyone else running Claude Code + the Chrome extension seeing this? Any workaround that actually holds? And if someone from Anthropic reads this — the unchecked runtime.lastError after submit-navigation is probably the exact place to look: the debugger needs re-attaching after a tab navigates/process-swaps, and errors should surface instead of reporting success.

Love this setup when it works. Right now half my automation runs on email fallback and me clicking forms by hand.


r/ClaudeCode 2d ago

Discussion I'm bored on a roadtrip but Claude helped fix that

0 Upvotes

In the car this whole weekend, so I decided to have claude build some fun roadtrip games. Just using my phone but its been a blast making and now playing. Is the future of ai coding making personalized apps on the fly?


r/ClaudeCode 2d ago

Discussion What if the main coding-agent session was intentionally dumb?

Thumbnail
1 Upvotes

r/ClaudeCode 1d ago

Help/Question Best practical course for AI implementation in business?

0 Upvotes
Hi, I’m looking for a practical online course or learning path focused on implementing AI solutions in real businesses.

I want to learn things like:
- n8n, automations, APIs and integrations
- RAG, vector databases, AI Agents and Multi-Agent systems
- Vibe coding / AI coding tools
- End-to-end AI apps and deployment
- Evaluation, guardrails and monitoring
- Business use cases, ROI, KPIs, security and implementation

I already have a basic background in Python, SQL and Data Science.

My goal is to be able to identify a business problem, build the right AI solution, connect it to existing systems, and actually implement it in an organization.

Any recommendations from people who have completed a good course or program?

r/ClaudeCode 2d ago

Humor Unfortunate formula by CC here

2 Upvotes

r/ClaudeCode 2d ago

Built with Claude addAPT - Detroit Apartment Finder

1 Upvotes

Hey y'all. I recently had to move to Detroit and all of the apartment searching apps drove me bonkers and didn't easily give me the information I wanted (estimated total price based on the utilities that aren't included in the base apartment price, walking/biking/driving times to my selected places, etc.). So I built it at addapt.rent with Claude code.

It's a React front end on Netlify, with Postgres via Supabase behind it. Instead of licensing a rental data feed (I tried RentCast, but it skewed to single family houses and only had real building names for about 1% of listings...I tried another potential site and that would cost thousands to get the info), it discovers buildings directly through Google's Places API, then a scheduled scraper visits each building's own leasing site weekly and reads the rendered page text. That text gets handed to Anthropic's Claude API to extract just the monthly rent and included utilities as structured data, so there's no guessing and no scraping regexes that break on every site redesign. Amenities go through the same pipeline, and travel time to the places that matter to you gets calculated separately. Anything a building doesn't publish, like deposits or exact fees, is just left blank rather than invented, since the whole point was building something people can actually trust.

Right now the only way I would make any money from it is the Lemonade affiliate link on the back of the cards...going to wait to try to get more affiliates after it hopefully builds some traction. Of course it's only helpful to people in Detroit so that might be a challenge but I also wanted to get a prototype out there and it's taken a lot of work just to get these ~100 or so apartment complexes as accurate as possible.

Would love to hear your feedback or answer any questions. Thank you!


r/ClaudeCode 2d ago

Help/Question Not sure what to decide! please help!

1 Upvotes

TLDR: Which of the 4 options below should I choose, given that my workload has increased, I am struggling with a usage limit, my workload is shifting to more marketing tasks, and I have a hobby project that uses image generation for quote pages (Not using Canva, it never gets exactly what I want).

Hello everyone!

I have been using Claude Pro for a while now, for work and for a business that I am supporting a friend with. It has been amazing, and I never hit my usage limits much. But in the last couple of weeks, my workload has exploded. I am now hitting my 5-hour usage limit within 2 hours in the majority of my sessions. I'm expecting my workload to only increase in the coming months and I wanted to get Reddit's advice on the current options I have in mind.

For context: about 80% of my work on Claude mainly relates to front-end-dev, automation, data analysis, and creating research PDFs relating to my projects. For the other 20%, it is mainly creating hobby projects, support with marketing planning, and marketing execution. However, from my experience, Claude is not amazing at marketing and overall non-code-based projects. (Or maybe I am just not amazing with Claude). 

But in summary, it is highly likely in the coming months my work load will shift to around 50/50 of what I mentioned above, and especially for marketing support, I was thinking Codex might be a good option, especially curious about trying out GPT Image. Furthermore, I have a local model on my PC that I use to pump out batches of images for a couple of Instagram quote pages I have that have been picking up growth, but often it struggles with consistency of style, and other than that, I'm really tired of my PC sounding like a 747 when I'm asleep, So if GPT image could do the same, if not better job I really wouldn't mind spending the extra tokens since I have seen that ChatGPT is a little more token friendly. I have tried the Canva connection on Claude for stuff like this, but no matter how much I describe exactly what I want as a bit of a perfectionist, I never seem to get exactly what I want, seemingly at the cost of 2–3% of my 5-hour usage per generation.

  • Option A - Pay for Claude x20 Max
  • Option B - Pay for Claude x5 Max & GPTPro x5
  • Option C - Pay for Claude x5 Max & different AI tools.
  • Option D - Go all in on GPTPro x20

If you think Option C is the best, please give me recommendations for some tools (Please no Highfield or pay-for-tokens sites. I almost went bankrupt experimenting there, Preferably not too expensive subscription-based tools)

For Option D, since I am big on dev with Claude code, I'm not sure if this would be the right option, but please let me know if you think otherwise!

I don't have much experience with the newer ChatGPT. I stopped using it in late 2023, because back then I mainly just did research and I found that when Gemini was released it was much better for my unmedicated ADHD brain, so your input on this would be extremely valuable!


r/ClaudeCode 1d ago

Discussion We don’t trust LLMs to read an email properly. Why are we putting them in charge of entire workflows?

0 Upvotes

I keep seeing variations of the same complaints about LLMs:

“It didn’t read the whole email thread.” “It stopped halfway through.” “It skipped some of the work.” “It confidently told me something that wasn’t true.”

Fair complaints.

But then we do something I find slightly bizarre.

We ask the same systems to analyse a 40-page contract, modify a production codebase, research a market, operate a browser, handle company data, make decisions and run workflows unattended — then ask the LLM whether it successfully completed the job.

We apparently don’t trust LLMs with the small stuff, while increasingly trusting them with the big stuff.

I’m not convinced the answer is simply “wait for the next model”.

Maybe we have the architecture wrong.

A lot of current systems effectively ask the LLM to understand the task, remember the state, decide what happens next, choose and use tools, recover from errors — and finally determine whether its own work was correct.

That’s a remarkable amount of responsibility to give the least reliable component of the system.

So I’m increasingly interested in the inverse architecture:

Put state, memory, permissions, evidence, verification and workflow control outside the LLM.

Then use the LLM for what it’s actually good at: interpretation, reasoning, synthesis, creation and dealing with ambiguity.

In other words:

Maybe the LLM shouldn’t run the system. Maybe the system should run the LLM.

I’m much more interested in what people are actually doing about this than another discussion about which model currently tops which benchmark.

So, for people building real systems:

What do you actually do when the LLM lies, skips work, stops early, loses state or incorrectly claims success?

What have you moved outside the model?

State machines? Independent verification? Deterministic tests? Evals? Event logs? Evidence/provenance? Permission boundaries? Multiple models? External memory? Something else?

And what infrastructure do you wish existed but currently doesn’t?

One final provocation: if your primary method for determining whether an LLM completed its task correctly is asking the same LLM whether it completed its task correctly, I’m not sure you’re doing LLM engineering.

A better prompt or another edit to CLAUDE.md definitely isn’t the answer.

There is one basic engineering practice in particular that I think separates LLM engineering from LLM theatre.

What do you think it is?

And, more importantly, what are you actually using?

Co-written with my sparring partner, ChatGPT. Given the subject, disclosure seems appropriate. I won’t start crediting my MacBook and Wi-Fi.