frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

My AI workflow evolved from prompts to a near-autonomous workflow

3•hoangnnguyen•2h ago•4 comments

Ask HN: Best books on building a programming language

3•ezzato•3h ago•1 comments

I collected startup ideas. It changed how I think about ideas completely

4•vibecoder21•3h ago•5 comments

Ask HN: Hiring in the age of AI-assisted coding: what works?

20•nitramm•15h ago•12 comments

Is algorithm still relevant in 2026

3•JasonHEIN•5h ago•2 comments

Ask HN: Any interesting niche hobbies?

468•e-topy•5d ago•710 comments

Is VC the new PMF strategy?

3•networkOne•7h ago•1 comments

Ask HN: What are you building that's not AI related?

135•meander_water•2d ago•185 comments

Ask HN: Why Databases Instead of Filesystem?

9•uticus•20h ago•19 comments

Open Source card game cuttle.cards has its world championship Saturday at 1pm ET

4•aleph_one•14h ago•0 comments

Any Open Source projects in need of documentation writer?

20•tree666•1d ago•13 comments

Ask HN: How do you handle marketing as a solo technical founder?

142•lazarkap•4d ago•105 comments

Ask HN: Are you encountering AI-related questions in the hiring market?

6•somthingwrong•1d ago•2 comments

Ask HN: Should AI credits be refunded on mistakes?

17•ed_elliott_asc•2d ago•17 comments

Zooming UIs in 2026: Prezi, impress.js, and why I built something different

100•tinchox6•4d ago•44 comments

Ask HN: How do you manage your digital legacy for after you die?

13•orbanlevi•2d ago•15 comments

Yuku – A fast, spec-compliant JavaScript parser written in Zig

6•arshadyaseen•1d ago•0 comments

Hybrid Attention

40•JohannaAlmeida•3d ago•9 comments

Ask HN: What would you do with an AI model capable of continuous learning?

4•jballanc•1d ago•6 comments

IMDB created my account for merely visiting the site

11•astr0n0m3r•1d ago•3 comments

Ask HN: Founders/investors, what AI bet you made in 2022 and how it is going?

6•kjok•2d ago•1 comments

Ask HN: Local-first meetings recorder and transcriber?

3•dandaka•2d ago•1 comments

You've reached the end!

Open in hackernews

My AI workflow evolved from prompts to a near-autonomous workflow

3•hoangnnguyen•2h ago
Over the last 6 months, I have been evolving my AI coding workflow while building AI DevKit.

The shift that mattered most was not better code generation. It was moving from reusable commands and templates into a workflow that can carry context, trigger the right behavior, and verify work automatically.

A recent feature made the difference obvious. I used Codex to build interactive skill selection for "ai-devkit skill add". I gave one sentence of instruction, and the workflow carried the task through requirements, design, planning, implementation, verification, tests, and code review.

The whole session took under an hour. The actual feature flow was around 30 minutes.

What I found interesting was not just that AI wrote code. It was that the workflow left behind requirements, design docs, planning artifacts, tests derived from requirements, and verification against the spec instead of just a diff.

A few things that felt important in practice:

- memory pulled back an old CLI rule I had forgotten I stored - review phases could loop backward instead of blindly moving forward - verification caught drift between implementation and design - I still made the product decisions and fixed the last failing test myself

I am curious how others here are thinking about this.

Are you mostly optimizing prompts, or are you now trying to optimize the workflow layer around the model?

Comments

hoangnnguyen•2h ago
I wrote the full breakdown here: https://codeaholicguy.com/2026/04/11/how-my-ai-workflow-evol...
netherbrain•1h ago
Sounds great, what I wonder is how you treat edge cases that your Ai requirement phase identifies. Do you let Ai decide how to handle them or do you jump in and review/adjust manually. I'm currently getting my hands dirty with spec kit and feel like I write very detailed specifications. Still edge cases occur regularly where I then adjust the spec or plan.
hoangnnguyen•29m ago
In my requirement review and design review phase, I specific that the agent need to review edge cases and come up with 3 suggestions. So that I can choose. In case it is not match my expectation I will tell it to remember the case and provide answer for it to remember.
leiyu19880522•1h ago
Great question! I have been thinking about this too and would love to hear what approaches others have tried.