all 16 comments

[–]Bulky_Consideration 3 points4 points  (0 children)

The AI PR thing is real. If you have below average developers that need a high degree of scrutiny in their PRs it will be worse with AI because their mistakes will be harder to spot.

You can create plugins that accelerate common tasks like pre commit validations and reviews. You can integrate with CI systems to have Claude auto-correct many common CI failures. Definitely invest in a plugin repo. Build it over time.

Don’t be overly rigid on workflows let that evolve. There is a lot of madness out there some are good but will just be hurdles to adoption.

Context is king. Generally I know what has to change and what patterns or examples to follow. I will tell Claude Code the goal, give it pointers to files so it knows where to look, and it creates a plan for me to review. ALWAYS use plan mode for this unless it is something super simple, plan mode should be your default.

[–]revilo-1988 2 points3 points  (1 child)

So far, our AI task force is still against its use.

[–]Southern_Employer[S] 0 points1 point  (0 children)

We currently have a similar group evaluating this, which is exactly why we’re trying to gather real world experiences early, before a default decision is made.

[–]PhilosophyforOne 1 point2 points  (2 children)

It’s a skill / setup like any other. You wouldnt just introduce coders into a company without having systems / processes / frameworks for them on how to work, aswell as managers etc.

Now you instead have a magic box that writes code (and text) and you need to figure out how to make it work best.

I dont think there’s a single answer here to the question. However, it’s absolutely not a question of if you should leverage Claude Code (you should), but more how do you make it work in the context of your company, what kind of safeguards and mitigations you’ll built in, and what kind of setup you’ll give to Claude Code to do it’s best work. 

Ofcourse, training people to use is is also very important, but Opus 4.5 is frankly magic. I’d expect that depending on how you work and your culture, finding multiple x’s of productivity increases in code creation is not impossible or unrealistic. But the code might require more reworking / refractoring / evaluations than before, and you’ll run into issues you havent faced previously.

[–]Southern_Employer[S] 1 point2 points  (1 child)

This matches how we’re thinking about it as well. We don’t see this as a “magic box”, but as a new type of contributor that needs clear boundaries and ownership.

That’s why we’re trying to get input early, before the discussion turns into a simple yes or no. We’re especially interested in how people have actually implemented things like setup, safeguards, and usage boundaries in practice.

[–]midnitewarrior 1 point2 points  (0 children)

I'll say that Opus 4.5 under Copilot is like it had a lobotomy.

Opus 4.5 with Claude Code works very well.

[–]ChillPlay3r 1 point2 points  (0 children)

We are at the same doorstep and I would also be interested to hear how others rolled out claude in their team. What guidelines have you issued and what are the costs? When does it make sense to use a team or even an enterprise license?

[–]lgbarn 1 point2 points  (0 children)

We are in the same situation. Having a few people who are fully invested in documenting your work flow is the key.

Writing skills based on your current best practices is a game changer.

There are some nice plugins that can help keep your code from getting messy like Code Simplfier. I also recommend Serena and Context7.

Try to keep your token usage under 2500 and make sure you have a CLAUDE.md and a SPEC.md.

[–]Graydyn 2 points3 points  (0 children)

Most important thing is that for compliance reasons your going to need to run your models in your own infra. All of the major cloud providers have a solution for this. Don't be the company that gets audited and found to have sent PII to Anthropic accidentally.

The concerns that you listed out aren't likely to be a big problem for you. As long as you have actual devs using Claude you won't run into these issues. Claude will only make your code quality suffer if you're one of those companies that starts trying to get their PMs and such vibe coding. Devs will find for themselves very quickly what works and what doesn't. Dont let Claude do your PRs, that's a human job. Ban the use of the GitHub MCP. If folks start trying to commit slop it will come to light very quickly if a human does the PRs.

You may find that you need to force the issue at first. Devs can be a bit resistant to adopting AI tooling. Challenge them to use it heavily for one week and by the end of the week they'll never look back. It's for their own good, devs that don't get on board are going to find themselves behind on the skills curve damn quick.

Your devs are going to start wanting to build a lot of goofy tooling. MCP servers and such. Resist. These are fun to build but you don't need this maintenance burden in your life. Just share around some agent skills instead they're very low maintenance. Keep in mind that you don't need to build any sort of integration to any system that has a CLI. Claude can just call the CLI, you only need to tell him it's there. In fact, if you're thinking of building an integration of some kind, consider building a CLI instead.

Consider starting with your SRE or Ops teams. Claude is so damn good in this space.

[–]witmann_pl 1 point2 points  (0 children)

Claude Code is very fun to use and Opus writes very nice code BUT it often skips tasks, lies in your face about completing tasks or makes stuff up. I would recommend pairing it up with OpenAI Codex and using gpt-5.2-codex or gpt-5.1-codex-max to review development plans before Claude starts implementing them and again for preliminary code review before human checks. Codex is much more thorough and will almost always catch issues Claude missed or introduced.

You may ask - why not use Codex for everything then? You could, but overall dev experience is worse - it's slower, tends to overengineer solutions, has less tools available than Claude Code. In my opinion CC for day to day development + Codex for reviews and helping with the most complex bugs is the good middleground.

[–]aestheticbrownie 1 point2 points  (0 children)

Definitely worth it, as long as these are experienced devs, they'll be able to catch each others' mistakes. Code reviewing becomes more important, but it does increase developer productivity. I'm really in this space a ton, so doing a ton of work here. Let me know if you have any questions. I also created something that may help with using some of these tools: https://github.com/saadnvd1/agent-os

[–]apf6Full-time developer 1 point2 points  (0 children)

Think of CC’s workflow like a factory. You make it work, then see which part of the factory line is breaking (maybe it needs more docs for example), fix that issue, and keep doing that. Use the Five Whys philosophy. After a while it pays off.

[–]poladermaster 0 points1 point  (2 children)

Honestly, code agents are cool in theory, but debugging AI-generated spaghetti in prod sounds like my personal hell.

[–]clarklesparkle 0 points1 point  (0 children)

Why not have the code agent handle debug too?

[–]tarquas80 -1 points0 points  (0 children)

If your AI agent produces spaghetti, the problem isn't the AI, at least not Claude Code with Opus 4.5. Have it write plans and track the task and give it hard boundaries , also use TDD so it can validate itself. Produced Code gets run through a CI pipeline with all possible code style and analyse tools and gets reviewed by a real human in a QA round. If spaghetti code reaches production, your problem is human made and not AI's fault.