Live data from Hacker News

Ask HN: What is your (AI) dev tech stack / workflow?

news.ycombinator.com

41–50 of 187 posts

Re: Ask HN: What is your (AI) dev tech stack / workflow?

#41
virgin project:

1/ spec driven dev (https://github.com/github/spec-kit)

2/ then degrade to multiple sessions (no worktrees) debugging various problems until its done

On UI Design (MacOS, Web):

1/ AI does a first pass. Try to give it style guidance on my own (colors, style, etc).

2/ Prompt ChatGPT.com with screenshots and ask for recommendations on how to make it better.

3/ Codex the changes (with minor edits)

4/ loop 2-3, ask Gemini for feedback too

Re: Ask HN: What is your (AI) dev tech stack / workflow?

#47

I am using Spec Driven Development approach implemented as a Claude Code plugin since Feb for all mid + size tasks. The idea is to write detailed specs first using agent help doing research and interviewing, decompose the task into smaller subtasks, write detailed spec for each task, implement each task separately. You can restart the session after every step in the workflow and after each subtask implementation sinc…

Naive question: how much time do you spend doing so vs. Doing the actual work yourself?

Re: Ask HN: What is your (AI) dev tech stack / workflow?

#49
I've shifted to a "slow code" approach with AI, treating it more like a design partner than a code generator.

I mostly do TDD with TypeScript. I write the test, write the code myself (sometimes with the help of LLM), and then hand it to the LLM. Instead of asking it to write things for me, I use it to find edge cases, check if it's leak-proof, and verify efficiency.

For architecture questions, I debate with it for a while. I almost never ask for code without conversing 4-5 times first to push back on its assumptions. It's the best rubber-ducking partner I've had.

Personal plug: I wrote more about why/how I use AI to write slow, better code on my blog: https://nabraj.com/blog/ai-write-slow-better-code

Post reply on HN