frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Ask HN: What cool stuff have you all been using Fable 5 for?

5•Tsarp•2h ago•2 comments

Ask HN: Are systems ready for the first negative leap second?

5•Asmod4n•2h ago•3 comments

Claude has the worst pricing – but people want it

3•amukbils•1h ago•3 comments

Ripple Calculator: Complete Guide to XRP Profit and Conversion

2•blockyyr•1h ago•0 comments

Tell HN: I managed to unsubscribe from Adobe CC without being charged

6•frereubu•2h ago•0 comments

Ask HN: I use coding agents daily, but how do real engineers use them?

2•getlawgdon•3h ago•3 comments

Ask HN: Are there good security benchmarks for LLMs?

7•melvinroest•7h ago•0 comments

Opinion: Agents > Unix Shell

3•akiarie•4h ago•0 comments

Ask HN: What should I verify before releasing a P2P messenger?

5•Realman78•4h ago•2 comments

Ask HN: Is anyone using Jujutsu version control (JJ) exclusively?

4•cabyambo•5h ago•0 comments

Ask HN: Is anyone experimenting with different ways of using LLMs for coding?

200•yehiaabdelm•3d ago•198 comments

Ask HN: Are you emotionally attached to AI code?

3•CurleighBraces•6h ago•5 comments

I built a local-first replacement for TV Time before it shuts down July 15

2•continuitytv•7h ago•1 comments

Ask HN: What internal tools/SASS replacements are you building?

2•kostarelo•7h ago•1 comments

Tools/approach to pentest my own framework/SaaS?

2•shinobi-apps•8h ago•2 comments

Ask HN: Open-source website builders for animated sites like Higgsfield?

3•adithyaharish•8h ago•0 comments

Tell HN: Error: Claude-fable-5 is temporarily unavailable

3•throwaw12•9h ago•3 comments

Ask HN: Why about a third of the submissions become dead in mere minutes?

12•g-b-r•20h ago•29 comments

Claude Code deletes conversations after 30 days

2•mieubrisse•10h ago•4 comments

Ask HN: What is your go-to prompt to prove AI can be wrong?

2•throwaway_887•10h ago•4 comments

Ask HN: Do you guys struggle with finding a right person for your FDE role?

3•getelementbyiq•10h ago•0 comments

Ask HN: Who is hiring? (July 2026)

244•whoishiring•5d ago•342 comments

BeEzrat HaShem Inc. Earns Candid Platinum Seal of Transparency for the 3rd Time

2•emmanol•2h ago•0 comments

Ask HN: Who wants to be hired? (July 2026)

151•whoishiring•5d ago•485 comments

Ask HN: Since when does Craigslist's front page have emojis?

39•argee•5d ago•33 comments

Ask HN: Why are the upvote arrows so small?

4•guilhermeasper•1d ago•6 comments

Happy Independence Day

36•GauntletWizard•2d ago•10 comments

Ask HN: How are you staying productive using LLMs?

5•thallavajhula•20h ago•4 comments

LongCat-2.0

6•rika321•1d ago•0 comments

Ask HN: What do you do with the user guide of the universe?

2•KenographerPrim•21h ago•15 comments
Open in hackernews

Ask HN: I use coding agents daily, but how do real engineers use them?

2•getlawgdon•3h ago
I have a broad but shallow technical background (longtime management consultant) and use agents (a variety of services and models in VS Code) extensively for my own projects. I know I'm hitting a ceiling. My workflow is naive and nonpro, a lot of tinkering and bashing my way through code generation, context drift, manual fixes, etc.

I want to learn how senior engineers treat these tools. Processes, systems, guardrails, must-dos, etc.

If you write code for a living and have integrated agents into your workflow, what does your system look like?

Any/all input is welcomed: resources, URLs, outlines, warnings, discoveries, recommendations.

None of these are specifically needed, but ideas?

-How do you structure a brand new project? Scaffolding, git init/ignore? Repos? Initial commit strategies? How do you keep stuff out of the context window that you don't want in it?

-How do you "layer" your work so it's much more about the context and integrity of the structure and much less about prompts?

-Do you switch models (often? ever)? Why?

-What other tooling do you have alongside basic agents/environments?

-What are "pro habits" that I don't have and should?

-Any suggestions for how to work in a very domain-specific endeavor to try to increase the utility of the agents for a silo like this?

Comments

blinkbat•3h ago
I don't find that the models are so capable that the workflow can be "much less about prompts". you still need to be in the loop, prompting and validating, to get good output. people will say otherwise -- I say those people are full of shit, have an adverse incentive, or don't have high standards.
getlawgdon•2h ago
Thanks. I could have phrased that better. What I meant was that so much of my work has been about the prompt that I feel like I'm neglecting where the rest of the process is.
ativzzz•2h ago
> How do you structure a brand new project? Scaffolding, git init/ignore? Repos? Initial commit strategies?

Don't overthink it. Use whatever bootstrapping tools your project framework comes with (rails app? use `rails new`)

> How do you keep stuff out of the context window that you don't want in it?

Don't overthink it. Just use one chat per general topic. New topic -> new chat. Save anything relevant to the project that the agent doesn't pick up in new chats in AGENTS.md

> How do you "layer" your work so it's much more about the context and integrity of the structure

Save project specific needs/requirements in AGENTS.md or docs/ or skills or whatever and tinker until it works

> Do you switch models

Nowadays just for code review. Recently gpt5.5 has felt very good for general dev

> What other tooling do you have alongside basic agents/environments?

Neovim for code browsing (don't write much code anymore but the code editor is still useful for reading code) and various plugins/tools i've built up over the years

Honestly, there's no blanket solution. The best engineers I've worked with all have different tools custom to their workflows

> know I'm hitting a ceiling. My workflow is naive and nonpro, a lot of tinkering and bashing my way through code generation, context drift, manual fixes, etc.

Hit a ceiling? Fix it. Typically it's

- do work

- notice something annoying about your workflow

- fix it systemically - research different solutions - sometimes it's writing a small script (agents are great for this), sometimes it's finding a new tool, sometimes it's overhauling your entire system, it just depends

- do work

repeat...

there's really no one stop solution for a perfect workflow