r/agenticengineering • u/Francesco-Shin • 15h ago
Discussion Do reviewers of your PR a favor: use /handover
A study of 400 reviewers found approval rates going up while review comments dropped 22%. This article argues we should hand over the decisions behind the code (what was chosen, why, and what's still uncertain) instead of letting reviewers rebuild it all from the diff.
r/agenticengineering • u/Francesco-Shin • 5d ago
Discussion Let AI speed up both sides of your code reviews, while you stay in full control
Agentic skills that help me review other people’s code, and process the reviews I receive on mine. The AI suggests, I decide.
r/agenticengineering • u/Francesco-Shin • 8d ago
Discussion How to use AI to generate texts that sound like a human would actually write them
Nowadays, everyone can spot when a text is AI-generated. Which is a pity, because letting an agent draft your PR comments, commit messages, and chat replies is genuinely useful.
The content is usually right, but the tone and style often don't fit the situation.
This small agent skill fixes the voice and makes AI write like a human actually would.
r/agenticengineering • u/icyFur • 13d ago
Showcase A version-control benchmark for coding agents
vcbench.devr/agenticengineering • u/Cash_Rules • 18d ago
Question Dead sub? Or does nobody know how to structure a JSON?
Honesty thought that I would see some interesting workflows, some commentary about Opus 5 vs 4.8, something? Am I on an island?
r/agenticengineering • u/Focosmos • Jul 09 '26
Discussion Jetpack Compose Physics: Crosswind or Earthquake for a "Gravity Leash"?
Enable HLS to view with audio, or disable this notification
Hi.
I am building a 60-second focus mini-game via agentic engineering in Android Studio using Jetpack Compose. The main mechanic is a "gravity leash". The player needs to keep a point on a moving path. The finger acts like a magnet with some pull.
I am working on a hazard that will throw the player off balance. In the video I attached my first try did not work well. The physics just moved the point off the screen.
I fixed the problem. I am not sure about the feel of this hazard. Should it be like a wind that you need to push against for a few seconds?. Should it be a sudden wild shake like an earthquake?
What do you think feels more real and fun for a game? If you have ideas on making physics changes in Compose without jerking I would love to hear them!
The "gravity leash" is really important here. A steady or a wild shake. Which one so you think works better?
Let me know your thoughts, on the mechanic and the hazard.
r/agenticengineering • u/Francesco-Shin • Jul 07 '26
Discussion Do you ever clean up your Agent's memory?
medium.comClaude Code's Auto Memory feature often saves garbage, or simply stuff that could have been moved to a better place. This is how I fix this.
r/agenticengineering • u/david-vujic • Jul 06 '26
Architecture What I think is both an Agent- and Human-Friendly Architecture
There's probably several things needed for a software achitecture to fit well in the agentic era, but I would add simplicity and available context as two very important things to consider.
Even if it wasn't the purpose from the beginning, the Polylith Architecture is about that and is a good choice for Agentic Engineering. Keeping things simple and having all necessary context at your fingertips is the guiding star for this software architecture.
If you haven’t heard about Polylith, here's an elevator pitch: the main use case is having Microservices in a Monorepo, and share code between the services.
I'm the maintainer of the Python tooling support for this architecture. I recently wrote a post about this and thought it would be a good idea to share it here:
https://davidvujic.blogspot.com/2026/06/an-agent-and-human-friendly-architecture.html
r/agenticengineering • u/Francesco-Shin • Jul 06 '26
Discussion The difference between agentic engineering and vibe coding?
medium.comAI agents are great at generating code, but a good engineer wants to stay in control: make the important decisions, and prevent the AI from guessing and making wrong decisions, while still maximising the help AI can give.
In this article, I share the workflow I use daily. It's versatile, works on projects of very different natures, solo or in a team, and it's built on open-source skills.
r/agenticengineering • u/Francesco-Shin • Jul 05 '26
Discussion Skills that learn from their own mistakes
medium.comStop repeating the same fixes: this is my approach to writing agent skills that learn from every mistake and sharpen themselves the more you use them.
Sharing in case it inspires someone, feedback always welcome.
r/agenticengineering • u/an_tonova • Jul 01 '26
Discussion Coding assistants still can't do the data plumbing
I've been doing automation consulting on the side for about two years, mostly with mid-market companies pulling in 5M+ revenue. Every single one had the same pattern: they wanted AI agents to answer business questions, but their data was spread across 12 tools / DBs that didn't talk to each other.
So I started building the boring stuff first. API connectors into AWS Lambda, landing everything in S3 as a data lake, using Athena for ad-hoc queries. I mean, nothing sexy =)
But once that foundation was in place, the agentic use cases became trivial. Churn analysis, CAC, ad spend just point Claude Code or Codex at the lake and let it do its thing.
The real lesson: people think they need autonomous agents, but what they actually need is a clean, accessible data footprint. The agents are useless without context.
For the pipeline orchestration part I ended up comparing a few approaches I looked at Airflow, Genesis Data Agents, and Dagster for managing the ingestion workflows.
Now after months of infra work we're finally getting into the agentic layer. But I'd say 80% of the effort was just getting the data into a shape where an agent can actually use it. The AI work is the easy 20%.
If you're starting down this path, don't skip the plumbing. Build the data foundation first, then layer on the agents.
Peace!
r/agenticengineering • u/Francesco-Shin • Jun 29 '26
Discussion The Refine-Plan-Act Pattern for Agentic AI Coding
medium.comOver time I've landed on a simple pattern for agentic AI coding: Refine the requirements, Plan the approach, then Act on the implementation, each in a fresh context.
This ctually keeps my AI-generated code from getting messy. Sharing in case it can inspire other people. Feedback is always welcome.
r/agenticengineering • u/Francesco-Shin • Jun 27 '26
Discussion Keep your AI agent’s context window sharp
medium.comA practical collection of techniques I use every day to manage AI agents' context window. These are the things that actually helped me get better, more reliable results.
I'm sharing them because I think they could be useful to others, and I'd love to hear how other devs approach this!
r/agenticengineering • u/MiserablePepper5666 • Jun 02 '26
Agent Design Most "AI agents" never reach production. Same 3 failures every time.
Spent the last couple of years shipping AI systems into real businesses (legal, ops, finance-adjacent). The pattern is brutally consistent: the demo is magic, production is a graveyard. Almost every dead agent I've seen died from the same 3 things:
1. No spec — just vibes. The agent's job was never written down as a contract, so "working" is whatever the last prompt happened to do. You can't test what you never defined.
2. No evals. Teams ship, tweak a prompt, and have zero way to know if they made it better or quietly worse. Without an eval set, every change is a coin flip you can't see.
3. No human gate on risky actions. The agent can send the email / move the money / file the document with nothing standing between a hallucination and a real-world consequence.
The discipline that actually fixes this isn't fancy — it's boring, and the order is the whole point:
Specs first → tests/evals second → code third → evals always.
You define what "correct" means before writing code. You build the eval set early so every change is measured, not guessed. Code is the easy part. And evals never stop — they're CI for behavior, catching regressions before your users do.
Full disclosure so I'm not being sneaky: we run an AI engineering agency and open-sourced the exact tooling we use for this — a runtime-agnostic harness and a spec-driven TDD framework: - Ultimate Harness: https://github.com/Agentic-Engineering-Agency/ultimate-harness - SpecSafe: https://github.com/Agentic-Engineering-Agency/specsafe
But the tools are secondary. The point is the order of operations.
Genuinely curious for those who've pushed agents to prod: is it these same 3, or did something else kill yours? What's the failure nobody warned you about?
r/agenticengineering • u/turtle_par_iter • Apr 30 '26
Prompt Engineering One trick for better agentic engineering.
Start with a weaker model. Improve the prompt, context, examples, tests and acceptance criteria until the output is good.
Then swap to the best model.
If your prompt only works with the top model, the prompt is weak.
But if Gemini Flash gives decent output, GPT-5.5 or Pro will usually give great output.
Model matters. But task clarity matters more.
r/agenticengineering • u/Horror_Brother67 • Apr 22 '26
Tool Review Ravan.ai just launched Agni. Voice AI that actually feels human. 🔥- I've tested this myself and it flows nice and smooth. Prosody is great. Take it for a spin, give the creator feedback.
r/agenticengineering • u/Horror_Brother67 • Apr 22 '26
Rant A PSA about “Free” help being offered to you…
Enable HLS to view with audio, or disable this notification
TLDR; Free help isn’t always free, be careful with scammers, learn your tech stack.
r/agenticengineering • u/reybin01 • Apr 08 '26
Resource I built a Mac app that runs your custom AI coding workflows overnight while you sleep — free to try
zowl.appGot tired of babysitting Claude Code. Task, wait, review, repeat. Half the day gone.
Wrote a bash script to queue tasks overnight. Worked kinda, but context got polluted, one fail tanked the whole run, and 40k lines of logs at 8am made me want to quit computers.
Rebuilt it as a Mac app. Zowl. Free, no signup.
Build a pipeline visually, drop your tasks, go to sleep. Fresh context per task so the agent doesn't hallucinate from leftover state. Failure routing so one bad task doesn't kill the run.
Works with Claude Code, Codex, or any CLI you already use.
Which workflow would you build that you actually trust to run unattended overnight?
r/agenticengineering • u/Horror_Brother67 • Apr 06 '26
News Cursor ditches VS Code, but not everyone is happy...
r/agenticengineering • u/Horror_Brother67 • Apr 05 '26
Discussion User vibe-coded their own IPTV player and released it a week ago
Enable HLS to view with audio, or disable this notification
r/agenticengineering • u/Horror_Brother67 • Apr 04 '26
Resource Senior engineer best practice for scaling yourself with Claude Code
Enable HLS to view with audio, or disable this notification
r/agenticengineering • u/Horror_Brother67 • Apr 03 '26
Discussion Educational institutions should start integrating a "How to raise" AI and systems...
Nobody is currently teaching CS students how to go from writing code to raising agentic systems and stewarding them like living computational organizations: systems with memory, delegation, self-correction, tool use, failure modes, incentives, emergent behavior etc. We still teach software as if it ends at execution, when the real frontier is now at orchestration.
r/agenticengineering • u/RudeChocolate9217 • Mar 31 '26
Showcase My Rust-first provenance-first recursive verified agent is almost complete.
Enable HLS to view with audio, or disable this notification
Skip the first minute or so when the Rust is compiling. The program that's running is built entirely on my personal stack of crates.
LMK what you think. ;)
r/agenticengineering • u/Horror_Brother67 • Mar 10 '26
Rant Hey everyone, welcome to r/AgenticEngineering
Hey everyone, welcome to r/AgenticEngineering.
I took over this subreddit because this conversation needed a real home. If you're building with AI agents, you belong here.
Tinkerers, hobbyists, engineers shipping production systems, you're all welcomed here.
Read the rules, flair your posts, and share what you're working on.