[deleted]
Ask HN: What Are You Working On? (March 2026)
991–1000 of 1001 posts
Re: Ask HN: What Are You Working On? (March 2026)
#992[deleted]
Re: Ask HN: What Are You Working On? (March 2026)
#993Platform-aware script runner for Node.js projects.
pnpm add -D target-run
Set a script body to `target-run`, then define platform/arch variants: {
"scripts": {
"test": "target-run",
"test:darwin:arm64": "jest --config jest.apple-silicon.config.ts",
"test:linux:x64": "jest --config jest.linux.config.ts",
"test:default": "jest"
}
}Re: Ask HN: What Are You Working On? (March 2026)
#994The problem it's solving is one most people building with LLMs know well. Your prompt fails on some inputs, you don't really know why, and you end up just tweaking and re-running until something sticks. We kept hitting this ourselves and it felt like there had to be a better way than guessing.
What we figured out after a lot of research: prompt failures almost always follow a pattern. The model isn't failing randomly, it's consistently failing on a particular type of input or reasoning step. VizPy finds that pattern, distills it into a plain English rule you can actually read, and then rewrites your prompt around it. You also get the rule itself so you can review it, tweak it, or just drop it into your existing prompt directly. DSPy-compatible, no pipeline rewrite needed.
We have compared it extensively against baselines such as GEPA on benchmarks like BBH, HotPotQA, GPQA Diamond, and GDPR-Bench and VizPy wins on all of them. We'll have more benchmarks on cyber-security and chip-design coming out soon.
Free to try, 10 runs no card: https://vizpy.vizops.ai/
Re: Ask HN: What Are You Working On? (March 2026)
#995Re: Ask HN: What Are You Working On? (March 2026)
#996Re: Ask HN: What Are You Working On? (March 2026)
#997Re: Ask HN: What Are You Working On? (March 2026)
#998yoloAI: Fearless YOLO sandbox for your agent. Run your agents contained (container or VM, Linux or Mac), with all restrictions removed. Workflow: ┌─ YOLO shell ──────────────────────┬─ Outer shell ─────────────────────┐ │ │ │ │ yoloai new myproject . -a │ │ │ │ │ │ # Tell the agent what to do, │ │ │ # have it commit when done. │ │ │ │ yoloai diff myproject │ │ │ yoloai apply myproject │ │ │ # Review and accept the co…
Re: Ask HN: What Are You Working On? (March 2026)
#999I'm still playtesting it with friends and it's been fun. It's in early access, I don't feel right charging for it unless other folks actually end up liking it and thinking it's fun. If you sign up, send me a message through "Send Feedback" (or here!) and let me know if you like, but especially let me know if you hate it.
Re: Ask HN: What Are You Working On? (March 2026)
#1000You can either use your own Anthropic/OpenAI key to play, or buy credits. I also have a free non-commercial version on my github you can fork.
Check it out here: https://yoursaga.cc