Hacker News

Top stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. Fujitsu launches made-in-Japan next-generation CPU FUJITSU-MONAKA(global.fujitsu ↗)
    132comments
  2. hister(github.com/asciimoo ↗)
    18comments
  3. Rate limits on GitLab.com are changing(about.gitlab.com ↗)
    72comments
  4. CrowdSec Source Code Leak(crowdsec.net ↗)
    22comments
  5. Whoisinspace.com/(whoisinspace.com ↗)
    32comments
  6. Launch HN: Skillsync (YC W26) – AI chat sessions made portable across agents
    5comments
  7. How GLM built its own inference infrastructure(z.ai ↗)
    221comments
  8. Zettascale (YC S24) Is Hiring ASIC/FPGA Engineers to Build Chips for ASI(zscc.ai ↗)
    discuss
  9. Why I didn’t sign the Fields medallists’ letter(gowers.wordpress.com ↗)
    137comments
  10. Grand MS-DOS Gaming General MIDI Showdown(johnnovak.net ↗)
    1comments
  11. One Year of Sponsored Servo Development(servo.org ↗)
    125comments
  12. LLM Classification Is Feature Engineering(minimallysufficient.com ↗)
    10comments
  13. The American Religion of Self-Storage Facilities(newyorker.com ↗)
    132comments
  14. CCC invites all model citizens to 40C3(ccc.de ↗)
    102comments
  15. Show HN: Aclif – Agent CLI framework: one grammar, canonical names across SaaS(aclif.ai ↗)
    5comments
  16. Show HN: Share your AI Setup, Learn from others(mysetup.ai ↗)
    54comments
  17. Running Ubuntu on the Lenovo IdeaPad Duet(vhaudiquet.fr ↗)
    1comments
  18. Vinix – A modern operating system written in V(vinix-os.org ↗)
    27comments
  19. The Return of Sail Power: Cargo Ships Are Turning Back to the Wind(gcaptain.com ↗)
    92comments
  20. Infinite-Parameter LLMs: Generating and Adapting Weights from Live Data(arxiv.org ↗)
    discuss
  21. Economic Policy for AGI(deepmind.com ↗)
    discuss
  22. Mastering Layout Engines in Graphviz: Dot vs. Neato vs. Twopi vs. Circo(visual-paradigm.com ↗)
    3comments
  23. Artificial intelligence now beats some of the best human forecasters(economist.com ↗)
    66comments
  24. My temporary PHP fix from 2014 has nearly 20M installs. Today I'm deprecating it(jakeasmith.com ↗)
    80comments
  25. Towards Self-Driving Codebases(detail.dev ↗)
    1comments
  26. Show HN: AutoBot – live voice control for long-running AI work(github.com/demeyer1 ↗)
    discuss
  27. Ask HN: How to recover Google auth after phone stolen?
    38comments
  28. Show HN: I built a new version of my fun spatial 3D online meeting app(flat.social ↗)
    49comments
  29. The Relation Between Mathematics and Physics by Paul Dirac (1939)(cam.ac.uk ↗)
    47comments
  30. Keys Not Included: recovering the signing keys for US driver's license barcodes(ryan.science ↗)
    137comments

Show HN: Share your AI Setup, Learn from others

89 pointsby 5h agomysetup.ai
52 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.
3h 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!

3h 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.

1h 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.

3h 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.

2h agoHN ↗

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

2h agoHN ↗

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

2h 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 ↗

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?

1h 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

2h agoHN ↗

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

1h 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

1h agoHN ↗

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

1h agoHN ↗

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

1h agoHN ↗

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

59m 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

3h agoHN ↗

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

Cool project!

2h 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?

2h 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

2h 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.

2h 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.

28m agoHN ↗

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

2h 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.

1h agoHN ↗

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

2h 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.

1h 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.

2h agoHN ↗

this would be cool to be extended to local AI configs

2h 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.

2h 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.

36m agoHN ↗

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

1h 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.

1h 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.

1h 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!

57m 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.

7m agoHN ↗

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

53m 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.

38m agoHN ↗

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

44m 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?

31m 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!

20m 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.

18m agoHN ↗

involve your proprietary workflow.

Until the next model update...

16m 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...

16m agoHN ↗

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

15m 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

9m 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.

18m 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

16m 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

7m agoHN ↗

This looks great, although a bit too minimalistic for my liking.

I built something similar that offers more insight into token usage, model breakdowns and has a discord bot to compare yourself with others.

It's over here: https://aistack.to