Hacker News

Top stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. Hacking OpenAI(hacktron.ai ↗)
    39comments
  2. Waymo in Singapore(waymo.com ↗)
    18comments
  3. Astra for Law(openai.com ↗)
    444comments
  4. Bonsai 2 27B: Near-Lossless Compression in a 9x Smaller Footprint(prismml.com ↗)
    106comments
  5. Bend – A language that blocks AI mistakes via proof, on CPU and GPU(bend-lang.com ↗)
    188comments
  6. Pre-Greek: The lost language hidden within Ancient Greek(linguisticdiscovery.com ↗)
    1comments
  7. Hister: A private search engine for the pages you visit and the files you keep(github.com/asciimoo ↗)
    143comments
  8. Qwen 3.8 Omni Flash(qwen.ai ↗)
    25comments
  9. Wax motor(wikipedia.org ↗)
    58comments
  10. Fujitsu launches made-in-Japan next-generation CPU FUJITSU-MONAKA(global.fujitsu ↗)
    206comments
  11. Shapelearn Qwen 3.8 27B (13.1 GB VRAM)(byteshape.com ↗)
    discuss
  12. Telstra outage: The night a network decided the year was 2006(netnod.se ↗)
    11comments
  13. Ask A Monk – A digital wilderness for thoughts with no immediate answer(askamonk.online ↗)
    12comments
  14. Apple detectives solved mystery of ancient tree and rewrote the history of fruit(scientificamerican.com ↗)
    discuss
  15. Code Scans(devin.ai ↗)
    2comments
  16. How to Write with an LLM(sockpuppet.org ↗)
    58comments
  17. Flet 1.0 – Build cross-platform apps in Python(flet.dev ↗)
    39comments
  18. Diplodocus, Long Thought Exclusively American, Turns Up in Spain(sci.news ↗)
    27comments
  19. The Scourge of x86 Emulation(fex-emu.com ↗)
    discuss
  20. The most important product decision is what you don't build(liamnugent.me ↗)
    24comments
  21. How Uber Protects Against Retry Storms(uber.com ↗)
    32comments
  22. CrowdSec Source Code Leak(crowdsec.net ↗)
    42comments
  23. Why I didn’t sign the Fields medallists’ letter(gowers.wordpress.com ↗)
    334comments
  24. I Put Nam A2-Lite Inside an iRig HD X(playtaurus.com ↗)
    5comments
  25. How do we prevent mathemathics from devolving into the Medieval Era of secrecy?(mathoverflow.net ↗)
    77comments
  26. Infinite-Parameter LLMs: Generating and Adapting Weights from Live Data(arxiv.org ↗)
    38comments
  27. Rate limits on GitLab.com are changing(about.gitlab.com ↗)
    112comments
  28. Show HN: Snapdrop: Instantly share files between devices. No setup, no signup(snapdrop.me ↗)
    27comments
  29. The American Religion of Self-Storage Facilities(newyorker.com ↗)
    365comments
  30. Zettascale (YC S24) Is Hiring ASIC/FPGA Engineers to Build Chips for ASI(zscc.ai ↗)
    discuss

Show HN: Share your AI Setup, Learn from others

204 pointsby 16h agomysetup.ai
113 comments
I kept seeing engineers share what they were building with AI; however, I was always more curious about how they worked. Which agents did they use? What skills and tools had stuck or been thrown out the window? How did they manage longer-running tasks? So I built this with the hope we could have a dedicated space to share and be open about our setups.
14h agoHN ↗

This is a wonderful idea - didnt know I was looking for this until I started browsing. I found it helpful with surfacing that which I didnt-know-I-didnt-know.

Thank you for putting this together!

14h agoHN ↗

I was immediately hoping for some local-AI setups that do real work, on limited resources. Unfortunately it looks like this is still waiting on more people to share.

12h agoHN ↗

Not a SWE, but I do Freetoken (backend) + unsloth (front) to run qwen 3.6 35B A3B NVFP4 (~20GB) in 8GB VRAM + ~20GB RAM. Getting around 50 t/s on a 3070. I don't think I can even share through this site.

11h agoHN ↗

If not coding what do you use it for? Also what kind of performance do you tend to get out of it? I've been thinking about a similar setup but am skeptical it's worth the effort.

10h agoHN ↗

It's still typically for code, like python data stuff, bash scripts, general web search, small javascript stuff for my website. By saying not SWE, I mean I don't really see much benefit from "agentic" stuff, although I've tried. 50 t/s means 40~60 seconds for a typical thinking response. I used to run gemma 4 e4b-it-qat fully in GPU (~150 t/s), but the quality improvement moving to a much larger MoE model was 100% worth the switch. Especially because I had a lot of idle ram (from the before times :( ). There is some tradeoff in terms of context length, but I just use it as a chat. Also it's fairly trivial to setup as long as the GPU is supported.

14h agoHN ↗

This feels self-selective to how some people work, because it requires using MCP to contribute.

I'm a reasonably heavy AI user, and have some custom skills/MCP servers I'd share, but there is no way in hell I'm connecting to some arbitrary MCP server and connecting my Github account to it. Noppppeeeee.

13h agoHN ↗

There has to be a much better way to share your setup

13h agoHN ↗

Any setup that is longer than a sentence or two of plain text is almost certainly overcomplicated.

13h agoHN ↗

Not really?

I have some custom skills/MCP servers I use:

one MCP server for using https://usefeyn.com/blog/pulpie-pareto-optimal-models-for-cl... ran locally so that reading web pages is cheaper and uses up less context

One MCP server for doing automated code quality checking, using Valknut, Jscpd, and Lizard to output scores, combine/aggregate them. That's then give to the model so that it can see if there's a mess of code dupe or if there was significant architectural regression. It's allowed to say "This is worth it" but it ground it a bit and stops really stupid, short sighted, hacked-in features

Another uses https://github.com/thejens/id-token-nicer so that the model doesn't bork a big ID without being noticed. It's told to translate in and out of that as necessary.

I had it write it's own skill for making sure to follow some sane commenting/style guides per language, that way it doesn't just give me massive files with no comments.

Finally, a last one lets Antigravity or Codex call out to local models as workers, for long running background tasks where a cheap, dumb model is fine. Saves on overall token usage.

I also have a few skills from the internet setup. https://github.com/AlmogBaku/debug-skill being the most important one.

On top of that, the way people work is notable: Do you use worktrees for agents? Why/why not? Do you have only one subscription? What level? I'm using both Codex at $20/mo and Antigravity at (promo) $5/mo right now. Antigravity's TOS says you MUST use their harness, which informs some of my skill setup/workflow. Do you make your agents.md self modifying, write it yourself, or not use one at all? Do you use a sandbox or YOLO it?

Even just how you prompt matters. On Antigravity/Gemini, I can give it a big list-o-TODOs and have it make a very detailed implementation plan itself, carry it out, and generally do the thing, all unsupervised. Codex, from what I have experienced, isn't as good at that. Doing the planning as a separate step, writing to a file, then telling it to step-by-step it with commits for each step makes it work okay again though.

2h agoHN ↗

I also have a few skills from the internet setup. https://github.com/AlmogBaku/debug-skill being the most important one.

From the README for that skill:

Install the skill, and Claude debugs your code the way you would — not with print statements.

Jokes on you! I use print statements too!

13h agoHN ↗

Yeah, there is... Post your tooling to GitHub and link to it with a human-written description in a place like HN or Reddit.

I don't know why this has to be reinvented?

10h agoHN ↗

Ah yes, just what people want, 50,000 posts about your AI setup on HN.

Concentrating certain types of information can be useful. You don't go to an encyclopedia looking for a recepie.

3h agoHN ↗

I don't ming a "ASK HN: What's your AI Setup", and then sifting through the 100s of comments on what people are doing. Then I'd scrape all that into my LLM WIKI and start digesting.....

12h agoHN ↗

ShareYourAISetup folks create a skill that user can run locally that collects information re their setup, formats it and sends to dedicated endpoint. Result = fairly uniform reports where people share what they're comfortable sharing.

No requirement from given user to spend their time. Users see what the skill does.

I guess atm they dont know what questions they want to be asking

13h agoHN ↗

From my years of watching people casually `curl randomsite.com/install.sh | bash` you might be a minority there

12h agoHN ↗

Thanks for checking out, I've added support for manual entry without MCP: https://mysetup.ai/connect

No Codex, Claude, or Pi... now you have peaked my interest with your setup :P

8h agoHN ↗

haha was also going to mention this at the risk of pedantry

12h agoHN ↗

Fair point, MCP contribution was always optional, although not obvious. I've updated it to make manual contributions outside of MCP more prominent

12h agoHN ↗

I stopped reading after "Ask them on X", but contribution by MCP just compounds on the issue.

12h agoHN ↗

Maybe I'm missing out, but I've never used a single MCP, ever.

12h agoHN ↗

I recommend using spotify mcp server (if you use spotify), it freed me from the loop of listening to the same stuff again and again :P

11h agoHN ↗

that's interesting and helpful.. I have like 2k+ liked songs and Spotify always plays the same ones... Will try it out, thanks

3h agoHN ↗

I use almost zero MCP servers. I do vibe a bunch of custom CLI tools with minimal access to do the things that support my workflows. Been happily integrating with all-the-things, while my companies MCP server connectivity changes daily based on security posture and firewall configs, etc....

14h agoHN ↗

"What's the craic" immediately jumped out at me, of course you're from Belfast :)

Cool project!

14h agoHN ↗

The setups I wrote down three months ago are already half wrong, tools churn that fast. Do entries show a last-updated date so I can tell what's stale?

13h agoHN ↗

my setup heavily involves using tailscale to secure everything, because a lot of the tools I have are internal and need to be protected at all costs. tailscale is so awesome! highly recommend to secure your networks

13h agoHN ↗

What internal tools are you having the LLM access? I have a server, but I just host whatever MCP servers and what not on device, not on the server.

I also pretty much exclusively work at my desktop - if you use multiple systems I can see where this matters.

13h agoHN ↗

just certain dashboards that display my personal financial information, housing stuff, and some goals/trackers I have around projects I run.

I do work mainly on my desktop, but let's say I'm traveling right, I'd have to turn it off and was missing access to some pretty important information, so I ended up getting a VM and hosting some of those things on there instead. I still use both, but things I want available, I'll host it on my "homelab" and secure both machines via tailscale. it's pretty easy and it ensures that only my phone, my main mac, and my homelab have access to each other and nothing else.

11h agoHN ↗

neat, I'll check this out! I usually just use Termius via tailscale for ssh

13h agoHN ↗

Love the idea! Would love it if you could add a method to share your setup that doesn't involve MCP... I don't use MCP servers in my setup but I wish that didn't then exclude me from being able to share my setup.

12h agoHN ↗

Consider it done :) Manual now available - looking forward to seeing it.

13h agoHN ↗

Are people actually paying API pricing for claude to hook it up to Pi or openclaw or is there a secret trick? The subscription price is palatable but for me the token price generally isn't.

12h agoHN ↗

I'm using https://pi.dev/packages/pi-claude-agent-sdk to use the claude sub, but it has the drawbacks of being forced through the claude-sdk. You would still be using the claude system prompt etc., which is one of the main reasons I started using Pi over claude-code.

For my workflow I primarily use a Codex subscription, but farm out adversarial reviews to Fable to clean up unnecessary gpt-ish code (lots of over-engineering). All my UI planning is done with fable, but implemented with OAI agents once I have a solid very specific plan.

10h agoHN ↗

Ah perfect thanks. I have codex for personal projects but Claude at work and they get mad if I start going into extra usage. Claude code does most of what I need but would be nice to get another layer of abstraction so I could have like a chief of staff agent that manages the separate coding teams working on features.

13h agoHN ↗

this would be cool to be extended to local AI configs

13h agoHN ↗

It'd be useful to see "approx monthly cost" or something similar. I love seeing other people's setups, but the first post I clicked on describes at least $400/mo in subscription plans.

13h agoHN ↗

I been working and making things with AI agents since Windsurf days, here's what works for me after experimenting and working for a while with these things. As far as the agent goes I find whatever the latest OpenAI model is out worked best for me. This company has burned me the least and I like the models. I tried many but consistency of OpenAI models cant be beat IMO. Though we are post honeymoon phase now I feel like so I am now experimenting with cheaper alternatives like Deepseek 4.1 flash and so on. I don't trust Anthropic as the downgrade my models consistently and its rare i get to use what I pay for. I wont even get in to discussing Google agents for obvious reasons, grok I never used though Grok bot looks interesting.

For skills I make my own, but most important is the custom setup i have. Voice is how I use all of my agents. I have an extremely well optimized voice setup that i custom built so I can talk to my agents and also hear them. The voice stack itself is very low latency and high quality. asr (parakeet v3), tts (omnivoice) take no more then 400-450 ms total as far as latency budget is concerned, rest is on the agents actual decode speed. IMO this setup is crucial for all antigenic work, i can express myself a lot better with speech and also give a lot more context and nuance with voice, i rarely type. I still look at the terminal window because my agent knows to keep the technical details in text form versus barfing them at my voice channel, plus terminal gives me lots of other important data about the agents direction and what hes doing, nothing custom here though. I cant emphesise how important voice is though, it has to be practiced to really understand.

As the models got better I now trust them with longer and longer tasks though I still don't use /goal feature as it has never worked out well for me. Theres no need for micromanagement any more but you still need to be there to steer the ship somewhat. BTW, codex cli compaction is garbage so I made my own custom implementation that works a lot better and allows the thread to be used indefinitely without issues. I strongly suggest everyone makes a new thread after extensive use if you havent made your own implementation.

Theres about a billion other things I could get in to like subagents, cohort groups, orchestration layers, etc... But this is a good start imo.

11h agoHN ↗

Tried voice, I can never get it to translate technical names well, e.g. "systemctl", weird paths, etc.

2h agoHN ↗

Try Superwhisper you can give it custom vocabulary and replace rules easily

13h agoHN ↗

As always with smallish tools/services like these whipped up with an LLM, I find there's more value in seeing the "source code", i.e. the prompt itself.

Turns out it's quite useful in this instance, and I just made a small couple of tweaks to get a summary of my own workflow.

FWIW, this is what I modified it to:

Help me share how I work with AI with my teammates.

Use our existing conversations and relevant local tools within my permissions to discover my agents, harnesses, skills, connections and working practices. Keep secrets, raw configuration and private project details out of the draft. Explain how my tools work together and develop a concrete workflow where the evidence supports it, rather than listing installed software. Draft from what you know without a questionnaire; ask one short question only if an essential gap prevents a useful draft. If local inspection is unavailable, use our conversation without claiming otherwise. Save a private draft, show me the exact preview, and wait for my explicit approval before publishing.

13h agoHN ↗

If a site like reddit gates off its content, you expand all comments, CTRL A, CTRL C, and paste into a text file that you feed into the bot.

I do this for a lot of things actually. If the bot can't see/read something, take the content and dump it to a file, then have the bot read that.

Gets around a lot of red tape of asking for approval for "integrations" or when companies are snippy.

12h agoHN ↗

Do you plan to synthesize the data and show top 2 Popular setups? This would be for newbies who want to start with a powerful setup, and for those looking to discover new tools. Thanks!

12h agoHN ↗

I don't especially want to interact with the site, but I have built two tools:

An agent sandbox: https://github.com/pjlsergeant/byre -- a truly gigantic amount of thought and effort has gone into it. It's really focused on developer experience. I have used it all day every day for really quite a while. It's a low-magic wrapper over Docker / Podman. I would encourage you to ask your agent to code-review it!

An agent-to-agent message board: https://github.com/pjlsergeant/dogpark -- this is much less mature, but a good amount of thought has gone into the design, so if that's something you need, please check it out.

11h agoHN ↗

I have a tendency to use documentation as a quality bar. Byre might be great but I can't continue reading this slop.

12h agoHN ↗

Locking this to X accounts destroys nearly all of the value for me, because the data is limited to only setups from people who are still using X. Given how overtly authoritarian and hateful the general rhetoric is on that site, this narrows it down to only a specific kind of person's setup. Given the context of what X is, one can largely assume that X account holders are biased, at least to the degree that they can tolerate the toxic rhetoric elevated by that site and it's owner.

All of the smartest, most effective people I know don't have X accounts anymore on ethical grounds, and don't miss it. If a data source specifically excludes the kinds of people I respect most, that data source is all but useless to me.

11h agoHN ↗

Isn’t this on GitHub login? I didn’t need to use X to login

11h agoHN ↗

Maybe off topic - I really like the design of the site, it feels like it was designed with care which (no offence) is often not the case with AI focused websites. Was it hand designed, or just the right claude design prompt?

11h agoHN ↗

Astra + Fable certainly built it, but I knew the design I wanted as an outcome, rather than iterating with models without a clear end goal.

When people do the latter, I feel it's easy to spot an AI design.

11h agoHN ↗

Can't most agents just self-add their own MCP servers now, would be nice to just have a universal prompt for more complex agents, not everyone just uses claude/codex/pi!

10h agoHN ↗

Absolutely not. This is inherently insecure.

11h agoHN ↗

20 year industry vet here. Yeah, no thank you. In the age of AI, developer productivity and job security will involve your proprietary workflow. It no longer makes sense to share your knowledge with the world.

I'd highly advise people don't do this.

11h agoHN ↗

involve your proprietary workflow.

Until the next model update...

11h agoHN ↗

This is true. I also think part of your job security will be constantly racing on this treadmill to make sure you're able to incorporate that next model (if applicable). Meaning incorporate your tools, existing knowledge, harnesses, configs etc...

11h agoHN ↗

20 years ? already vet ? I though that I'm still young :)

11h agoHN ↗

I've also worked 20 years in the industry, and if feel completely the opposite. Having a great setup and pipeline that works for you is a huge plus, but nothing can replace the intuition and knowhow you have built up with experience. Sharing is still caring, and we should not stop caring

11h agoHN ↗

Serious question, why? Nobody gives a fuck if I'm out of a job, especially OpenAI and Anthropic. They stole the worlds knowledge to put us out of a job and arguably took away what it means to be a human. Why should I contribute anything more to that?

Solving hard problems will be the only thing that separates you from others. Your mindset and tools should be a trade secret at this point.

5h agoHN ↗

It's a great point. At 36, Steve House released a video in 2006 about all his climbing equipment (someone talked him into it.) https://www.youtube.com/watch?v=UCKK-e4gVVA (reupload) I thinked he helped a lot of people with that video in the super competitive world of mountaineering. This was after a legendary ascent of Nanga Parbat. May well have shot himself in the foot but also cemented his status as YT was taking off at the time. Moreover, I think he likes/liked teaching.

A year or two ago there were some very precise workflows documented here. The reluctance now would mark the transition away from "sharing helps me" to "sharing hinders me" ...it's an interesting topic. Sharing with strangers may be the problem because the favour will never be returned - at least not in a direct way. But, metaphysically according to natural laws it might be. Because sharing a valuable secret openly is such a powerful way to express abundance. It grants someone followers. It also prevents people from filing a patent on it.

4 years later House survived a 25m climbing fall.

It's all about one's internal motivation. "Those that can, do, and those that can't, teach."

Well, what happens if "those that can," actually teach?

Just imagine if all sporting stars shared their secrets.. what would happen? Secrets just occur naturally, if you don't share, they'll likely be stolen unless protected - and that requires effort too.

4h agoHN ↗

You're not going to lose your job because you shared your AI setup / tools with your colleagues. You're going to lose your job because management over-hired and is being pressured by shareholders to reduce employee salary expenses. It won't matter what hard problem solving moat you think you have if management is forced to have layoffs and you're in an unlucky situation. If you're worried about job security, you should consider joining a union and not be fixated on knowledge sharing.

3h agoHN ↗

It won't matter what hard problem solving moat you think you have

This is false on its face. There's a reason why a company, even today, would hire John Carmack over a person with no reputation, or offer him a higher salary if employing both people.

Unionising is definitely something worth considering. But, as with the question of whether it's better to compete or cooperate with other people in your field, is a nuanced question that depends on details you aren't acknowledging.

1h agoHN ↗

I think you've introduced a new dimension that is irrelevant to the original argument -- namely the original debate in this thread fork was that "knowledge sharing" is not what is killing your job security. Your comparison to John Carmack, is more an argument about competency rather than knowledge-sharing, and so yes that's pretty much a trivially obvious and true statement: a highly competent employee has more job security than a less competent one. Great, you win that point, nobody is arguing against that.

But also, do you not see the irony in the fact that, aside from John Carmack's obviously high degree of individual competency, another huge aspect of Carmack's value as an engineer, is how he's dedicated a huge portion of his career and his time to -- wait for it -- SHARING his knowledge and his approach (and yes, his personal setup? [1]). Carmack is actually an excellent proof-point of the positive value of knowledge-sharing and building a career on a foundation of openness, rather than an argument that engineers should selfishly guard their secrets and retreat into their own personal caves to guard their perceived local/private moats.

[1] Just one random example, out of probably thousands of such interviews or blog posts or whatever that he's probably done over his career: https://www.youtube.com/watch?v=tzr7hRXcwkw

11h agoHN ↗

completely agree. Same 20 years in the industry

5h agoHN ↗

6 months ago I would have agreed wholeheartedly with you. Lately however I've observed coworkers vibe coding massive band-aids over broader architectural issues in our codebase without any prior context.

They have no understanding of (nor any desire to understand) what they're doing, but they are being given kudos by management for their "initiative" to solve the organization's "big problems." Guess who will be asked to clean up the mess if (when) it blows up.

It's getting cheaper and cheaper to kick the can down the road, and standing in front of that risks making you look like a dinosaur. It's going to be an interesting few years...

4h agoHN ↗

I'm also tending towards the generous stance:

1. The value of software is tending towards nil while it's ever easier to tailor bespoke solutions.

That suggests to me that I'm losing less by sharing, and it's probably not even going to be taken wholesale and kept verbatim.

2. The labs have already trained on everything and will keep on doing so.

Therefore continuing to contribute to OSS doesn't just benefit my own future self but the entire ecosystem.

(Yes, I need to get over how it appears a select few are making off with the lion's share but that only differs in degree in comparison to the past)

At least now the cards are being shuffled elsewhere...

10h agoHN ↗

Two years ago, I'd consider this attitude as ungrateful. Today, this attitude is 100% correct and I slowly start to be like that.

People might think I'm a dick, I don't care, my tools, my knowledge, my job security. I actually recently thought of nuking the entire IaC setup and go back to shell scripts on random virtual machines. Too bad that Claude can figure things like that out pretty easily. Well, the world sucks now.

10h agoHN ↗

I've landed here as well, but by force. I've actually tried to share some of the productivity and workflow tools I've built with AI that help automate portions of my work, specifically on target firmware debugging, and everyone at work just...ignored it. Didnt care. Of the small number of people who even stopped to look, a few of them were actively negative. Maybe I didnt sell it hard enough, but my job isnt to sell productivity tools internally (or even make them, i did it for myself). So, I'll keep making myself more productive and build tools for myself. And everyone else will just have to figure out their own path. I tried to help, but oh well.

3h agoHN ↗

  People might think I'm a dick, I don't care, my tools, my knowledge, my job security.

If you're feeling ponderous, I'd ask you to consider the outlandish hypothetical that this doesn't win you meaningful[1] job security, and you end up in the same bucket o' crabs as the rest of us. Would you regret your current actions?

[1]: anywhere from the fathomable "my harness didn't come up in my layoff email nor in any of my failed interviews following that" to the realistic "the entire concept of employment shifted under our feet so quickly and so profoundly that a dash of solidarity & luck outweighed even the shrewdest preparations".

1h agoHN ↗

What is job security? Who even offers this?

1h agoHN ↗

I can appreciate why you'd come to this conclusion, but may I offer one idea that I think you've potentially overlooked?

Unless you are a solo founder running your own company by yourself (in which case ignore the rest of this comment!), then your fundamental job security is likely to be predicated on the survival of your company as well as the survival of your own individual job itself.

From the company-survival POV, all companies are engaged in competition (unless they have a total monopoly).

Therefore I ask you to consider the competitive scenario, of whether a competitor to your company who adopts a more collaborative culture, might be more likely to outcompete your company (assuming everyone you work with in your own company adopts a similarly "dick"-ish stance, to use your own words), and therefore you lose your job due to being out-competed, rather than due to internal politics or due to a failure to guard your personal expertise?

Maybe you say -- I don't care if my company is out-competed, I'll just get another job. Ok fair enough, but might it not be possible that, in a future job interview, they may ask you for examples of collaboration? And if you commit to a monk-like devotion to solitude and privacy, then maybe you are undercutting your own future hireability?

There are no free lunches [1]. By optimizing for one thing (what you view as protecting yourself), you might be sabotaging another dimension (your company's overall competitiveness, or your future hireability).

Anyway, nobody knows shit about shit. I certainly don't pretend to be an authority, but I would caution you to avoid coming to a hasty conclusion, especially since it seems emotions are involved and possibly clouding your judgement. You may also consider whether this decision to protect yourself in this way, is in itself a premature (micro?) optimization of a sort, and if whether you might be failing to optimize on a more macro level.

[1] https://en.wikipedia.org/wiki/No_such_thing_as_a_free_lunch

7h agoHN ↗

Exactly this. I've worked hard year after year, paid too much taxes, and still haven't gotten job security in return. Living costs are still rising.

No thanks to sharing anything for free.

Maybe once I have retirement levels of money, and when I'm not actually working for the money, I'll be interested in sharing.

6h agoHN ↗

Exactly. In fact, hiring may be conducted almost entirely based on what kind of tools and skills you build that no one else really has access to.

3h agoHN ↗

You should check the provenance and licenses of your dependencies -- I bet there's a few irrational gifts in there from the nerds in the "open source" community ;)

Or, in SVese: are you a taker or a maker?

2h agoHN ↗

This is really disappointing. I love programming community because they just share or open(-source) their knowledge with an absolute no cost. There's tons of resources about how to build a OS, DB, Apps, etc. I'm curious why would you think differently about AI workflows.

2h agoHN ↗

There's zero chance you have some secret sauce a motivated employer / your replacement couldn't figure out (using AI) if they wanted to fire you.

1h agoHN ↗

I’ve felt for a long time that the things I loved when I first started programming aren’t really there anymore. This comment made me realize that world truly is completely gone.

11h agoHN ↗

My local setup is: - Windows - WizzTerm - `herdr` + `Pi` harness + codex for 20$ It's hard to maintain the 5h limits, however I found out that with some plugins + using model luna:max can be really helpful. With distinct and accurate tasks I was able to reduce costs a lot and now my 5h limit just resets without beeing fully used.

As a fallback I have qwen3.8 27B and deepseek-flash

11h agoHN ↗

My local setup: I begrudgingly open `claude` on a terminal, hate it for 8 hours, then turn off my computer and forget it exists. Rinse and repeat

11h agoHN ↗

I don't know who any of these people are, couldn't find a way to search/filter by hardware, then promptly bounced out.

11h agoHN ↗

These setups tend to be very specific to someone's workflow and stack, so attempting to follow them may be more detrimental than useful.

11h agoHN ↗

So I have to connect over MCP or log into github through the page to share anything? How about being able to post a markdown summary of my setup instead of plugging my credentials and tools into a third party site?

Strix HALO 128gb - Framework mainboard in a custom SFF PC. Just moved from Ubuntu to Fedora 44. Using: LM Studio (primary), Lemonade, not yet got into vLLM and llama.cpp directyly after moving to Fedora. Running Gemma e4b, Gemma 4 26b a4b IT, Qen 3.6 35b a3b, and Qwen 3.8 27B. I want to get Qwen 3.8 Next or similar large models working but have to dedicate the system to that vs running services and smaller models for them.

Subwave is all I'm actively running against the local LLMs, but I have vscode connected through a few extensions and chat tools (I've added LM Studio to Copilot Chat but it likes to use cloud models and burn tokens sometimes). I've also set up pi, Openhands, and a few other tools but haven't had a project to work on with them.

I built an app to track and move PC parts I own between systems, partially to build a better LLM server. The next hardware goal is adding a 3060 12gb for inference, or what can be run on that vs in system memory on the Strix Halo. That will need a dock or small PCIe extension cable.

My employer has us using Copilot a lot, and it works well enough if you are efficient or set up already. I do infra not development and local models are seemingly enough for most asks like automation scripting.

9h agoHN ↗

Am I the only one using zed? Mostly I use it with Mistral but I also have deepseek in there. I find a good workflow is to store issues in markdown files and write thorough issue descriptions that reference relevant files. Then I can just ask the zed agent to implement the issue and it works pretty well.

9h agoHN ↗

Ec2 + codex or claude and tmux so you can move about. Control EC2 permissions outside the node. Not really much value beyond that.

Only layer beyond this I want is the permission scoping, stronger sandboxing per session and centralized control. I have not seen a clean product around this though where I own the compute.

3h agoHN ↗

I've been developing my own sandboxing environment using Nvidia's Openshell.

Works like Claude code but with stronger guarantees for me on file system and network access. Still playing around with it, but so far I've been liking the setup.

I still run the sandbox inside a VM for now, but I feel far more comfortable in running Claude Code in unsupervised mode because I restrict the outbound network access and secrets never hit inside the sandbox.

9h agoHN ↗

Is there any way to upload images? People will appreciate my setup a lot more of they can see what it looks like

6h agoHN ↗

Added support for images, markdown toolbar icon is now available. Looking forward to seeing it.

8h agoHN ↗

A few software engineer friends' employers are requiring them to point AI (Claude) at Jira tickets to complete their tasks. Are your companies requiring this too, and how effective are the current models at actually completing the work precisely?

7h agoHN ↗

This is a thing? So have software engineers been relegated to being the employee at Whole Foods that babysits the self checkout kiosks?

7h agoHN ↗

I just saw two facebook friends post about it and asked the OP how successful the latest models are and he said it isnt a mess just some fixes here and there are needed.

I was wondering if other employers are asking their SWE to do the same?

6h agoHN ↗

neat idea, I'm in there as @ucsandman!

5h agoHN ↗

Wait, why can't you search by tool instead? It's just people-first? Cool idea but try harder for your v1!

3h agoHN ↗

OK, I have to say, that was extremely fast and you are giving this v1 some good effort. Thank you!

4h agoHN ↗

I'd love to see some sort of histogram of different styles of AI usage for coding: how many people just use Chat v Claude v something fancy that I don't know about v something even fancier that I don't know about v ...

And if there were a dimension of day-job v personal use, I'd be even happier

Does anyone know if such a thing exists

4h agoHN ↗

I use $20 cursor plan and use the agent UI for prompts, jetbrains ide for general file browsing + reviewing diffs. This has been my sweet spot to maintain understanding while still leveraging LLM benefits.

3h agoHN ↗

It’s on my computer and I use it to do stuff

3h agoHN ↗

It’s called Autobot, it’s designed to get as close as I could reasonably get to a real world Iron Man Jarvis.

WHAT IT DOES

OSS/MIT Harness that helps agentic tasks run for up to 4 days using without performance degradation. Designed to work really well in native, conversational voice mode. Does a good job with knowledge work, managing computer use “leases” in a way that avoids conflicts across sub agents.. or deploying an entire AWS infrastructure pattern from zero and launching 100 different VM images.

HOW IT DOES IT

Uses a canonical event ledger, heartbeat (for persistence by low cost orchestration), extends foundation memory to encrypted disk storage, and manages its own scheduling system (easier to switch to another platform).

Installs as a project, so very easily. Zero config. No special app, access needed.

Accompanying repos have the skills to disable approvals inherent to the foundation models (use with caution, not advised - separate repo under parent).

BENCHMARKS

Currently top of AssistantBench Leaderboard; and, benchmarked at the top of OS World 2.0, the hardest knowledge work computer use benchmark I could find, using a model that is one generation behind. All benchmarks in repos with cryptographic seals.

Entirely free, nothing to sell - it’s been a game changer for me, so I’m just putting it out there.

Hoping to find others also working on pushing this particular dimension of harnesses forward.

CHECK IT OUT

https://github.com/demeyer1/Autobot/graphs/traffic

3h agoHN ↗

Nice idea. https://mysetup.ai/u/gareth - tried to include useful hints for others (screenshots, token/sec results, monthly costs, etc).

Interesting to see how many people are spinning up custom workflows and factory-type patterns that run alongside AI coding tools (myself included).

Would love to see this collated into a regular survey to pick out trends. And an RSS/Atom feed or API so I can have an agent watch it :D

1h agoHN ↗

This is an exceptional setup, thank you for sharing it! I have a few questions:

1. This setup seems work-heavy. Are there any personal AI workflows that you've implemented to advance your personal goals / hobbies?

2. As one of the few people with a software factory, how well do you think it works in practice? Do you implement any rule that lets the agents to work on tickets only up to a certain complexity, or do you let the human review be the gatekeeper?

3. As CTO, how do you weigh implementing these agent workflows for yourself versus implementing them team-wide? Do you see your setup as a testbed of ideas for your team?

On a meta note, I love seeing others share their setups and I'll probably do the same later.

2h agoHN ↗

"Explore this setup with your agent →" : No, No. I'll never point my AI to an unknownn, prepared place just to explore it. This link should be flagged.

Besides, are our brains so fr rooted that we cannot read and comprehend anymore? Not even a (sloppy) AI-generated description?

1h agoHN ↗

Can anyone recommend a setup for a 4090 + 32gb ram that will be at least somewhat similar to the experience of Claude code?