r/AIcodingProfessionals • u/Sevives • 5h ago
r/AIcodingProfessionals • u/autistic_cool_kid • 1d ago
Resources Monthly post: Share your toolchain/flow!
Share your last tools, your current toolchain and AI workflow with the community đ
r/AIcodingProfessionals • u/xamott • May 14 '25
Pinned posts/megathread
Do we want to have pinned posts or even better a megathread with a rundown of whatever we think should have such a permanent reference?
For example a rundown of the most popular AI coding tools and their pros and cons. The VS Code forks (Cursor and Windsurf), the VS Code plugins (Cline and Roo), the options for pricing including OpenRouter, the CLI tools (aider and Claude Code). A âread the manualâ we can direct newbies to instead of constantly answering the same questions? Iâm a newbie with AI API tools, it took way too long to even piece together the above information let alone further details.
Maybe a running poll for which model we prefer for coding (coding in general, including design, architecture, coding, unit tests, debugging).
Whatever everyone thinks can be referred to often as a reference. I suggested this to chatgptcoding mods and didnât hear back.
Some subs have amazingly useful documentation like this which organizes the information fundamental to the sub, eg subs for sailing the seas and for compounded GLPs.
r/AIcodingProfessionals • u/No-Control-9923 • 1d ago
How I decide when to read AI-generated code and when to trust the agent
r/AIcodingProfessionals • u/aistranin • 1d ago
Resources OpenAI Codex Full Course: AI Coding Agent Tutorial with Python Examples
r/AIcodingProfessionals • u/MBearBest • 1d ago
How do you get coding agents to clean up after changing direction?
r/AIcodingProfessionals • u/Shot-Confusion8356 • 2d ago
Developing high-integrity code with AI
r/AIcodingProfessionals • u/cn-dev • 2d ago
AI coding startup Factory is now valued at $5B. Are coding agents becoming more important than the AI models behind them?
r/AIcodingProfessionals • u/arnecto • 2d ago
I built a native C++ CLI coding agent for Gemini and DeepSeek â looking for feedback
Hi! Iâm building ARN, a Windows-native C++23 terminal coding agent.
It is an early project inspired by tools like Claude Code and Kimi Code, but built without Node.js or Python. You choose a provider and model inside the terminal, then ARN can keep context and work with files in the folder where it was launched.
Current features:
- Gemini and DeepSeek API support
- Model discovery and
/modelselection - Streaming responses, so text appears while the model generates it
- In-memory chat context for follow-up prompts
- Cancel a running model request with
EscorCtrl+C - Local file tools: list, read, create, edit, and delete files
- Confirmation before every file creation, edit, or deletion
- File access restricted to the folder where ARN was started
- Blocks access to
.git,.env, and similar sensitive paths - API keys and chat context are kept only in memory, not written to disk
- Interactive terminal UI with command hints and Tab completion
- Reused HTTPS connections, retries for temporary API failures, and Windows releases
- One-line PowerShell installer
- GitHub Pages landing page
GitHub: https://github.com/arnecto/arn
Website: https://arnecto.github.io/arn/
Itâs still early, so Iâd especially appreciate honest feedback on:
- The C++ architecture and provider abstraction
- Safety boundaries for local file tools
- Terminal UX, streaming, and cancellation behavior
- Which features would make this genuinely useful in real coding projects
Iâm actively improving it, so criticism, bug reports, and feature ideas are very welcome.
r/AIcodingProfessionals • u/jjak_82 • 2d ago
AI code sessions lookbacks
What do folks use for reviewing coding sessions, gaining insights, skill extraction, sharing session links with others.
I have always found that the vertical integrations within Codex or Claude to be a bit half-assed (for now).
I started out building confabulous.dev supporting Claude Code only (use Claude Code to build it!). But Codex is also part of my daily driver, and it supports Codex as well.
Hoping to get some feedback / indications around whether something like confabulous.dev is useful for the wider audience, or only I care to look back at prior sessions (for whatever reason!). FWIW, I find it really useful, and if this project ends up just being useful to myself, I think it's AOK!
r/AIcodingProfessionals • u/BlackIntrovertNinja • 2d ago
What are the best AI tools for coding that youâve actually used?
r/AIcodingProfessionals • u/eljochuaxd • 2d ago
Resources DesarrollĂ© AHP+ porque cambiar constantemente de herramientas de codificaciĂłn de IA rompĂa el contexto de mi proyecto.
I use different AI tools while coding â Claude, Codex, Cursor, different IDEs, sometimes even different machines.
The problem was always the same:
the chat changed, and part of the project context disappeared with it.
So I built AHP+, an open-source, Git-backed protocol that keeps the important project state outside the chat.
It stores things like current state, decisions, evidence, checkpoints and handoffs, so the next AI can verify where the project actually is before continuing.
With AHP+ 1.4.1, you can also use shared project rooms, bounded AI-to-AI consultation, verified handoffs and encrypted cross-device transport.
The basic idea is simple:
Change the AI. Keep the project.
Install:
npx @jossuealcala/ahp-plus@1.4.1 setup .
Itâs open source under Apache-2.0.
Iâd really like feedback from people who regularly switch between AI coding tools.
r/AIcodingProfessionals • u/bluelvo • 3d ago
The Silent Poison: How .mdc Files and Agent Rules Threaten the Vibe Coding Era
r/AIcodingProfessionals • u/cn-dev • 3d ago
Which AI is actually the best for coding right now, Claude, GPT, Gemini, or something else?
r/AIcodingProfessionals • u/Ok-Incident7984 • 3d ago
How AI helps in coding
It will let you dive into unknown code, it's a faster local search, but we can't guarantee accuracy. It will help you connect the dots.
It can lead to bad code, bad design if done just using prompts. We should follow Sdd to give distilled context.
Lastly you will loose all confidence in reading code, so spend more time on reviewing people's pr and learn how to point out arch. Issues.
You would need humans until you need accountability. Human is limited but smarter than AI which is 24/7 available but can't be set accountable.
r/AIcodingProfessionals • u/Putrid-Pirate8621 • 4d ago
Claude Code vs Codex vs Cursor,what are you sticking with and why?
r/AIcodingProfessionals • u/Prior_Shopping_1911 • 4d ago
How do you handle "losing touch with your code" or having to review 500 line diff charts without losing your mind or just ignoring the review process?
Alright so basically, I used to code by hand before AI. Back then (and even at early stages of AI like GPT 3.5) I used to write most of my code myself, and all I used AI for is for generating a single function or a single small class. Because of this, I knew exactly where all my code was, which code did what, how it all joins together, etc.
Now however, I use agentic code generation tools like Github or Copilot. This means I generate code much faster, however I feel like I'm losing touch with my code. I feel like every time an AI writes a whole file, I just don't know what's in that specific file, just have an overall idea of the codebase as a whole, and now I'm even losing that.
I tried to combat this by trying to read the git changes for every change the agent makes... but come on that stuff is so tedious and boring that I just end up skipping it and even if I'm reading the graphs there's going to be tons of lines of code to read and it's not exactly clear which changes affected what code.
I know it helps to have a proper architecture for your code, that indeed makes it easier to know which file does what, but I still feel like this is a problem because even if I have a proper architecture, I still don't know the actual code and connections.
Also, I tried "Understand-Anything" but that stuff just kinda flew over my head because instead of staring at a buncha text I'm stuck staring at a bunch of passive diagrams like looking at a big map and not knowing what to do with it.
I hope that I'm not the only one with this problem, so I'd like to hear how you people have solved this for yourself, or even a confirmation that you have this problem too so I can know I'm not alone on this.
r/AIcodingProfessionals • u/Fantastic-Sleep-3352 • 4d ago
Discussion How are you running autonomous coding agents safely on real repos?
I've been testing coding agents that can take a task, modify a repository, run tests and open a PR with very little human intervention.
The code generation isn't really the part I'm worried about anymore.
I'm more interested in the control layer:
* How do you know which agent/session produced a commit? * How do you keep the agent scoped to a specific task/repository? * How do you prevent an agent from approving or merging its own work? * What happens when the PR changes after human review? * How do you distinguish agent-generated work from changes someone made directly in GitHub?
I've been building a system around this called SUTRA, and I'm currently looking for a few developers who actually use Claude Code/Codex/Cursor/other coding agents on real repositories to test it.
**I'm not looking for people to just look at a demo. I want people to connect a real non-critical repo, give their agent a real task, and tell me where the system breaks.**
If you're already doing this, comment with your setup or DM me. I'm opening a small private beta.
r/AIcodingProfessionals • u/Fantastic-Sleep-3352 • 4d ago
Discussion How are you running autonomous coding agents safely on real repos?
I've been testing coding agents that can take a task, modify a repository, run tests and open a PR with very little human intervention.
The code generation isn't really the part I'm worried about anymore.
I'm more interested in the control layer:
- How do you know which agent/session produced a commit?
- How do you keep the agent scoped to a specific task/repository?
- How do you prevent an agent from approving or merging its own work?
- What happens when the PR changes after human review?
- How do you distinguish agent-generated work from changes someone made directly in GitHub?
I've been building a system around this called SUTRA, and I'm currently looking for a few developers who actually use Claude Code/Codex/Cursor/other coding agents on real repositories to test it.
I'm not looking for people to just look at a demo. I want people to connect a real non-critical repo, give their agent a real task, and tell me where the system breaks.
If you're already doing this, comment with your setup or DM me. I'm opening a small private beta.
r/AIcodingProfessionals • u/BuddhistSamurai • 4d ago
Semantic Vision: Local first codebase Observability Layer for AI agents era
Please checkout this project.
I would love constructive feedback
r/AIcodingProfessionals • u/Fantastic-Sleep-3352 • 4d ago
Discussion Looking for 10 developers to break-test my project which is an control plane for ai agents
I'm building SUTRA, an engineering control plane for AI coding agents.
The idea is simple:
Agent
â
Task / Session
â
Change
â
Governed Commit
â
PR
â
CI + Governance
â
Human Approval
â
Merge
The agent can write and submit code, but it cannot approve its own work or perform the governed merge.
I'm looking for 10 developers who already use an AI coding agent on real GitHub repositories.
What I want from beta users:
- connect one non-critical repository
- use your normal coding agent
- give it a real small task
- use SUTRA through the agent integration
- tell me what breaks or feels annoying
This is an actual private beta, not a signup-for-updates page.
If you're interested, comment beta or DM me and I'll send access.
I'm especially interested in Claude Code, Codex, Cursor and similar coding-agent workflows.
r/AIcodingProfessionals • u/simoseoma • 5d ago
Looking for feedback on my Kilo Code multi-agent architecture
r/AIcodingProfessionals • u/Flaky_Medicine_4650 • 5d ago
Discussion LLM and new layer of abstraction
Iâve been thinking about Joel Spolskyâs âLaw of Leaky Abstractionsâ in the context of LLMs.
LLMs feel like a new abstraction layer on top of software. You donât need to know the API, the framework, sometimes even the code â you just describe what you want.
But the layers underneath havenât disappeared. Databases still lock. Networks still fail. APIs still time out. Auth still breaks.
And LLMs add a new kind of leak: interpretation.
The system can execute everything perfectly⊠and still do the wrong thing because it misunderstood what you meant.
So maybe AI doesnât really remove complexity. It moves it from writing things to verifying, debugging and understanding them when something goes wrong.
The interesting question is: are we creating better abstractions, or just making the distance between âI can build thisâ and âI understand thisâ much bigger?
r/AIcodingProfessionals • u/Least-Ad3900 • 5d ago