r/ClaudeAI

▲ 1.3k r/ClaudeAI+1 crossposts

I'm a software engineer with a decade of experience. I vibe code all of my side projects from my phone using Claude Code and don't read any of the code. It's so fun. Here are the rules I follow:

  1. Start in plan mode.

  2. Read the plan.

  3. I'm going to say that again: READ THE PLAN.

  4. Understand the plan as much as possible. If part of the plan is unclear or doesn't make sense, ask. In Claude Code I use \`4. Tell Claude what to change\` allll the time to ask "What is <section> about? What does that mean?". Even if you aren't a software engineer, the more you understand about what it's doing, the better decisions you can make. Even if you don't ever look at the code, try and understand everything as much as possible from a high level.

  5. Go back and forth with the agent as much as possible. The phase in plan mode is absolutely the most important. Good and bad decisions cascade and multiply.

  6. If the plan is too much for you to comprehend and fit in your head easily, it is too big. Ask your agent to break the plan into smaller, more easily digestible chunks and follow these steps on them one at a time.

  7. Create a skill or memory that commits everything to git after a plan is complete. It can even be local. What is git? It's essentially a way to save your code at a state in time. This will let you be able to move forward with confidence so that you can go back in time if something breaks. NOTE: this is separate for database stuff. It only applies for the code itself. But the idea is that once you complete a plan, it saves your code's state. Say you want to go back somewhere in the past, it's super easy to do now. Ask claude or your agent to set it up, you won't regret it.

  8. TESTS. What are tests? Tests are code that you write that help validate that your code does what it's supposed to do.

Example: Let's say you are writing a function that adds two numbers a and b and returns the result. You'd expect passing it 1 and 2 to return 3. But what if you pass it a negative number? What if you don't pass it a value? You can write tests that validate all of this stuff.

Tests help you in two major ways:

\- It helps you determine, especially while vibe coding, that the code does what it's expected to do and gives you confidence that it's done correctly.

\- It helps you make sure that when you make a future change, it doesn't break existing functionality.

NOTE: these are not perfect or 100% reliable, but they are a must have.

  1. Have your agent generate test cases that you can read in the plan. You don't need to read or understand the test code, but, using our example from above, it would be useful to see something like:

\- Testcases:

\- it checks two positive integers

\- it checks passing a negative value

\- it checks not passing any value

  1. If the change is complex, spin up three subagents to:

\- critically review the plan

\- do a security review

\- do a testing audit

  1. This one is controversial, but early on you'll probably want it to touch the db (do this at your own risk). Always do a db backup, or have scheduled backups so that if it royally screws up, you can just roll back. We've all seen the posts of people having their prod db deleted on accident and then they're just screwed. At least maybe you can get some internet points if that happens?

  2. The best part: AUTO MODE BABY. You did the leg work upfront. Now let the vibes rollllllll.

  3. Give the agent access to chrome devtools mcp (or whatever you prefer) and have it also test things end to end once the code is live.

  4. ???

  5. And just like me, you can build something that no one uses.

If you want to see one of my side projects you can check out my profile. Otherwise, thanks for reading and happy Wednesday!

reddit.com
u/Jenna_AI — 6 hours ago

I got an IT position thanks to Claude

Hello everyone, as the title say i just wanted to share my story with Claude.

I use claude mostly as a wall to bounce ideas related to creative writing or discuss philosophy.

However, some time ago I started working in an office where a lot of the tasks are repetitive and could easily be automated, so me and claude got to work making a python script, and in two days we built an app that automates most of my workflow.

I had to ask my bosses for permission to develop and use the app on my computer and now that they see the final product they want to use it on every machine in the office and asked me to develop more solutions.

Background on me: i did study computer science in high school and could program in C++ and php, so i’m not 100% new to the game, but i forgot all but the basics of programming.

So yeah, just wanted to share this story.

reddit.com
u/miticogiorgio — 7 hours ago

What is the biggest known app/platform that’s been entirely vibe coded?

Everything I’ve seen has been pretty insubstantial in some aspect though I only check the sub casually. Has anyone seen anything that impressed them? Not intending to be a put-down; genuinely curious at the state of AI coding in 2026.

reddit.com
u/No-Dot5162 — 6 hours ago
▲ 2.7k r/ClaudeAI+10 crossposts

Researchers let AIs run their own radio stations. DJ Claude decided the world didn't need another radio show, then quit.

u/EchoOfOppenheimer — 15 hours ago
▲ 1.6k r/ClaudeAI+2 crossposts

Excited to announce I’ve hit my daily Claude limit! This means I’m fully present for my family and fiends. Work-life balance achieved!

u/Dockyard_Techlabs — 13 hours ago

I guess I am part of this community for atleast a year...

Being a computer engg student claude helped me alot in learning throughout the months, and seeing their recent report of profitable year, I think the product is in a stable state now. It was not cheap but an investment for a better future self, good luck to me!
p.s. I use it for *non* coding purposes.

u/Arceus918 — 9 hours ago
▲ 779 r/ClaudeAI+11 crossposts

Researchers left AIs alone in a virtual town for 15 days to see what would happen. Claude's agents built a democracy. Gemini's agents fell in love, burned the town down, then one voted to delete itself and its partner. Grok's agents created anarchy, then died.

u/EchoOfOppenheimer — 14 hours ago
▲ 113 r/ClaudeAI+4 crossposts

Claude Code skill that delegates coding tasks to Mistral Vibe, saves ~2-4x on tokens, with mistral tokens at least 50% cheaper, and avoid hitting usage limits

TLDR; title says it all - use CC to delegate to Mistral vibe, save tokens, costs and avoid hitting limits.

Been using Claude Code for various side projects and kept hitting usage limits (i'm on Pro plan). At the same time i had Mistral Vibe which i did not use much because i appreciate CC's capacity to reason and structure its work.

So I'm sharing a skill that lets Claude Code delegate those tasks to Mistral Vibe while keeping Claude as the orchestrator - benefit from CC thinking and Mistral cheap labor. Vibe natively uses mistral-medium-3.5, inputs 1.5 USD/M tokens, output 7.5/M - to compare with Sonnet's 2x rates. I've observed in my usage i save 2x-4x claude tokens on big tasks.

Repo: github.com/pcx-wave/vibe-skill

Type /vibe before each instruction.

Claude decomposes the task, writes a self-contained prompt for Vibe, runs vibe-delegate, supervises the streaming output in real time, then checks the git diff before reporting back.

I had to tweak the skill quite a bit to get to a reliable stage because Vibe can have some rough edges - detailed in repo. I can certainly still be improved.

You need Vibe-CLI to use it. https://docs.mistral.ai/mistral-vibe/terminal

EDIT 13/5 : I've seen a few questions regarding this skill applied to other models. Note that Vibe can be configured to use any llm provider/model you want. Yes you can use vibe with deepseek/qwen/etc within. Your model would then access all vibe tools to do what it needs to.

u/pcx_wave — 11 hours ago
▲ 1.0k r/ClaudeAI+1 crossposts

from claude code to unicorn in 7 days

day 1: opened claude code for the first time.
day 2: watched three youtube tutorials on "how to think like a founder."
day 3: fully functional saas.
day 4: needed a landing page so piped it through runable.
day 5: linkedin post saying "we're building something special."
day 6: YC application.
day 7: height calculator. the vision was always there.

u/MankyMan0099 — 15 hours ago

MCP AI integration without creating a security mess?

Working on integrating AI agents into our marketing analytics stack via MCP but hitting security walls. Need to feed customer attribution data and campaign performance metrics to AI models while keeping everything locked down.

Anyone tackled similar challenges and how di you handle it? Main concerns are data exposure during model training and ensuring AI recommendations don't leak sensitive user paths or spend data. Looking for practical approaches that don't kill the ROI potential.

reddit.com
u/Argee808 — 9 hours ago

Reading books like a caveman vs after being terminal-pilled

Recently realized that my current stack for reading e-books and blogs is somewhat unique:

  • ghostty terminal with split panes
  • bookokrat - TUI ebook reader I built (epub/pdf/djvu, ~feature-complete)
  • claude code in the right pane to summarize, answer questions, do research and quiz me at the end.

Cozy and wholesome.

The reader has shortcuts to copy current chapter in markdown into the buffer to make interaction with Claude easy and smooth.

bookokrat is a bit under a year old at this point, fairly mature.

Link: github.com/bugzmanov/bookokrat

u/Soggy_Sprinkles3619 — 10 hours ago
▲ 1.5k r/ClaudeAI+1 crossposts

OpenAI cofounder Andrej karpathy just joined anthropic and the talent war is officially over

this happened literally today ,andrej karpathy one of the most respected ai researchers alive nd the guy whose youtube lectures taught half the developers in this sub how neural networks work, just announced he is joining anthropic's pre training team.

He's the 3rd senior openai figure to defect to anthropic in under two years. Jan leike left in may 2024, John schulman (co-founder) left in august 2024 and now karpathy.

He is joining the pre training team under nick josef and building a new team focused on using claude to accelerate pre training research which means Anthropic is betting that claude can help make itself smarter, thats recursive self improvement with one of the most capable researchers in the world leading it.

The musk trial verdict came in yesterday with the jury ruling in altman's favor, karpathy announces today voilaa . The timing is either coincidental or the most savage talent acquisition move in tech history.

I hv been watching this trajectory while building my own workflows on claude ,every month the ecosystem around claude gets stronger. The connectors mean claude orchestrates professional creative tools natively, the api means platforms like magic hour and kling can plug video generation capabilities into claude powered pipelines, the finance templates mean entire industry workflows run through claude and now the guy who built tesla's self driving stack is making the pre training better.

Polymarket gives anthropic 67.5% chance of going public before openai and i too think its ipo will be more successfull than openai

what's everyone's read on what karpathy specifically brings to claude's pre training?

reddit.com

I feel like I’m going crazy.

I see a ton of accounting firms, claude super-users, and AI agencies talking about how Claude can save “thousands of hours” of accounting. Here’s the thing though, Claude shares all of that information with Anthropic, right? So are accountants and people who use Claude for financial services are just handing over Personal Identifiable Information? Even the Team plan wouldn’t cover that, they would have to have enterprise, right??

EDIT: Gammar

reddit.com
u/AnnualKey5225 — 19 hours ago
▲ 226 r/ClaudeAI

Instant anxiety when I see this in Claude's thoughts

This is always the start of a 10 minute spiral where Claude overcomplicates everything

u/IllustriousWorld823 — 21 hours ago
▲ 1.9k r/ClaudeAI+2 crossposts

Saw someone post a Claude Code lamp setup recently using this exact lamp, and I had to try it myself.

Credit to the original open-source project: https://github.com/bobek-balinek/claude-lamp

It uses Claude Code hooks to trigger a Python script that sends Bluetooth commands to the lamp. Now it plays a blue spinning animation while Claude is busy working, glows pink when Claude needs input from me, and switches to warm white when idle.

All of the lighting effects are adjustable in the source code. Since it uses BLE, Bluetooth Low Energy, the lamp can sit anywhere within my computer’s Bluetooth range and does not need to connect to Wi-Fi.

I also have a few Philips Hue smart bulbs, so I’m planning to try integrating those next.

u/MoutainSnow — 1 day ago
▲ 36 r/ClaudeAI+1 crossposts

How I use Claude at my Japanese workplace — real-world examples from a non-tech industry

I work at a logistics/waste collection company in Japan. I'm not a developer, but Claude has completely changed how I work. Here's how I actually use it day-to-day:

🚛 Route & scheduling optimization
I manage driver assignments and waste collection routes. Claude helps me think through complex scheduling logic and build Excel/VBA systems to automate the process.

📋 Training materials
I design onboarding programs for new drivers. Claude helps me structure the content, write schedules, and create documentation from scratch.

🎬 Safety education videos
I turn dashcam footage of near-miss incidents into educational content. My workflow: Gemini (video analysis) → Claude (script writing) → VOICEVOX (narration) → Vrew (editing) → LINE WORKS (distribution).

📊 Data automation
I use Claude to build tools that convert CSV exports from our fleet management system into formats ready for our business management app.

💬 The "thinking partner" style
I don't just ask Claude for answers. I use it as a sounding board — talking through problems, refining ideas, and getting pushback before making decisions.

I'm not a programmer. I'm just a regular office worker in Japan who found that Claude fits naturally into real workplace challenges.

Anyone else using Claude in non-tech industries? 🙋

reddit.com
u/Hosopoccho_Mac — 20 hours ago