Ask HN: What is the AI setup for an experienced dev starting on a new project?
1–10 of 11 posts
Re: Ask HN: What is the AI setup for an experienced dev starting on a new project?
#2Cofounder is using agents, I'm directly interacting with Claude and Codex. Self hosted forgejo due to Github issues.
Re: Ask HN: What is the AI setup for an experienced dev starting on a new project?
#3Very interested in the answers, as I'm in a similar situation. Cofounder is using agents, I'm directly interacting with Claude and Codex. Self hosted forgejo due to Github issues.
Re: Ask HN: What is the AI setup for an experienced dev starting on a new project?
#4Very interested in the answers, as I'm in a similar situation. Cofounder is using agents, I'm directly interacting with Claude and Codex. Self hosted forgejo due to Github issues.
What is your CI like? Do you auto deploy somewhere?
I'm coming to modern software development late. My experience was in things which were in the mini-computer and COBOL genre of machines, or on things that were so tightly controlled that the review process for one change could take a year (combat aircraft and drones).
So CI/CD is something I'm actually trying to grasp because it feels so alien to me.
All that to say: Don't currently have any.
Re: Ask HN: What is the AI setup for an experienced dev starting on a new project?
#5If what you're creating isn't shippable to a customer/user then really scrutinize it. Things like AI skills, AI task loops, etc. those are all throw-away artifacts, the equivalent of Jira tickets. If you can get AI to help delivery without them, do that. The AI lab companies want you to use tokens but if you can automate something without AI in the mix, since you're experienced I assume you know shell scripting, automation concepts, etc., then automate it to work without token use. This is especially if you are doing something solo - your process and workflow can change on a whim so the least amount of overhead is going to keep you lean and focused on shipping software.
Re: Ask HN: What is the AI setup for an experienced dev starting on a new project?
#6Re: Ask HN: What is the AI setup for an experienced dev starting on a new project?
#7Earlier quoted context omitted.
What is your CI like? Do you auto deploy somewhere?
This is where I show my ignorance. I'm coming to modern software development late. My experience was in things which were in the mini-computer and COBOL genre of machines, or on things that were so tightly controlled that the review process for one change could take a year (combat aircraft and drones). So CI/CD is something I'm actually trying to grasp because it feels so alien to me. All that to say: Don't currently…
When code is checked in, it tries to compile it to make sure there are no fundamental issues building the software. This, importantly, happens on not your computer. This helps protect against "it works on my machine" but fails for someone else. If you've got tests, and you should have tests, it will run them for you to make sure those complete as well. If both of those pass, it reaches the CD portion of the process and typically just zips up the working build and does whatever is needed for a deployment in your environment automatically. There are tons of other things you could do as well, like run a linting tool to make sure the code is all formatted consistently across the project or run security checks to make sure passwords or .env files aren't included by accident. But the core concept is build the project, test the project (with various different tools), if it passes deploy the project to some environment where you can see the changes. This drastically cuts down the feedback loop time and increases how fast you can iterate on changes.
For my setup, I've got forgejo hosted on my NAS along with various web apps as containers in podman which I use cloudflared tunnels to selectively make them public. I've got a Claude skill which knows about my hosting environment and can setup / manage new web projects for me. When I add a new web project, CC runs a script that CC built to configure the build, test and deploy actions. After that, any pull request to that new repo will automatically build and test and deploy automatically to a new subdomain. CC could call the APIs directly and handle everything without scripts, but that's where some of the non-deterministic aspects of LLMs might creep in. I want it to setup everything the same way every time so all the apps are consistent. So it uses pre-built scripts for those aspects with the direct API calls being an escape hatch if needed.
Re: Ask HN: What is the AI setup for an experienced dev starting on a new project?
#8Your job as an experienced developer is to ship working code, the fact that AI tools are here doesn't change that. I would strive to create as minimal a set of artifacts for AI as possible. Observing where we are today with 6 months or 12 months ago means the state of the art is constantly shifting. Spending a lot of effort implementing some concept you've read about or watched others talk about online might not be u…
Re: Ask HN: What is the AI setup for an experienced dev starting on a new project?
#9Earlier quoted context omitted.
This is where I show my ignorance. I'm coming to modern software development late. My experience was in things which were in the mini-computer and COBOL genre of machines, or on things that were so tightly controlled that the review process for one change could take a year (combat aircraft and drones). So CI/CD is something I'm actually trying to grasp because it feels so alien to me. All that to say: Don't currently…
Don't make the mistake of thinking CI/CD is more complicated than it is. It's just automated compilation & testing plus automated deployment. The jargon can be overwhelming. You can do this with forgejo actions. I'm also using self-hosted forgejo and I generated a token for CC to use to manage and setup everything for me. When code is checked in, it tries to compile it to make sure there are no fundamental issues bui…
Re: Ask HN: What is the AI setup for an experienced dev starting on a new project?
#10It was the order.
A couple years ago I'd think:
architecture database implementation deployment
Now I spend much more time before that asking:
does this map to a workflow people actually repeat?
AI made implementation so much cheaper that I've become much more cautious about building the wrong thing quickly.