We specifically don't solve the env vars per directory problem, so this is really cool to see.
It's crazy the see the amount of hackery we're all having to figure out with worktrees, way cool to see all these solutions popping up.
We specifically don't solve the env vars per directory problem, so this is really cool to see.
It's crazy the see the amount of hackery we're all having to figure out with worktrees, way cool to see all these solutions popping up.
1) Can I use this with my ChatGPT pro or Claude max subscription? 2)
Blatant slop is obvious. Slop with a modicum of effort is harder. I’m still adjusting my slop-o-meter on other people’s work. It’s easy for me to identify my own slop, it’s not always so obvious when looking at someone else’s AI assisted work.
I’ve read all of the source and I drove the architecture but it would be a stretch to say I didn’t ask for assistance on things that felt fuzzy or foreign to me. I also have generally stopped typing code. I still don’t think the LLM made the project though, it feels like my decision making.
If the bar for Show HN becomes no AI whatsoever then you’re just going to see a bunch of people covering their AI tracks. I’m reluctant to post it because I’m afraid of getting blasted by the community for using AI. At the same time, it is work that I’ve poured hundreds of hours into, that I’m proud of and that I think would be of interest to HN.
I read the Obliteratus post that made it to the front page the other day and I agree that is pure slop. While it’s frustrating that it took up front page space, it’s evident that the whole community caught on to the sloppiness of it all immediately and called it out. I just don’t think HN wants to set the precedent that no AI code should be shared.
I also saw a week or two ago that someone open sourced a project of theirs that wasn’t open source in the first place. The reason they stated was that they had vibe coded and were embarrassed to be discovered. If you want to get a concept out quickly with AI, you’re now hesitant to open source because of the precedent set by the community. I think that’s a scary thought to me. I would rather know the tools I’m using are AI generated/assisted and make the value judgement on if I trust the code and project owners.
Not schilling, just easier to show you the repo since it's open source. https://github.com/coast-guard/coasts
The pattern I used was this:
1) made a docs command that printed out the path of the available docs
$ my-cli docs
- README.md
- DOC1.md
- dir2/DOC2.md
2) added a --path flag to print out a specific doc (tried to keep each doc less than 400 lines).
$ my-cli docs --path dir2/DOC2.md
# Contents of DOC2.md
3) added embeddings so I could do semantic search
$ my-cli search "how do I install x?"
[1] DOC1.md
"You can install x by ..."
[2] dir2/DOC2.md
"after you install..."
You then just need a simple skill to tell the agent about the docs and search command.
I actually love this as a pattern, it works really well. I got it to work with i18n too.
Also, Thiel seems like the sort of guy with the money and connections to pop the AI bubble whenever he believes it'd be advantageous, whether that is the product of a rational mind seems to be beside the point.
…and has been known to cause bank runs
I also find that it's way more effective to live in the comment sections. Rarely does the "Hey, look at me, I'm selling a piece of software" post genuinely do well. It's always so tempting to do that too but It's way better to find someone asking specifically for a thing you're solving and respond to the individuals.