frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: What's my JND? – a colour guessing game

https://www.keithcirkel.co.uk/whats-my-jnd/?r=ARUjKP__-ve-
28•Keithamus•14h ago•27 comments

Show HN: How I Topped the HuggingFace Open LLM Leaderboard on Two Gaming GPUs

https://dnhkng.github.io/posts/rys/
263•dnhkng•10h ago•81 comments

Show HN: Modulus – Cross-repository knowledge orchestration for coding agents

https://modulus.so
5•dasubhajit•5h ago•0 comments

Show HN: Joha – a free browser-based drawing playground with preset shape tools

https://joha-app.pages.dev/
7•smlee•2d ago•0 comments

Show HN: Claude Code Token Elo

https://www.clauderank.com
5•ymaws•19h ago•2 comments

Show HN: Ash, an Agent Sandbox for Mac

https://ashell.dev
5•amsha•8h ago•3 comments

Show HN: 2D RPG base game client recreated in modern HTML5 game engine with AI

https://github.com/ErkoKnoll/helbreath-base-game
5•erkok•4h ago•2 comments

Show HN: DD Photos – open-source photo album site generator (Go and SvelteKit)

https://github.com/dougdonohoe/ddphotos
56•dougdonohoe•11h ago•17 comments

Show HN: Draxl, agent-native source code with stable AST node IDs

https://github.com/draxl-org/draxl
3•rndhouse•2h ago•0 comments

Show HN: I Was Here – Draw on street view, others can find your drawings

https://washere.live
59•mrktsm__•19h ago•44 comments

Show HN: A playable version of the Claude Code Terraform destroy incident

https://www.youbrokeprod.com
19•cdnsteve•9h ago•7 comments

Show HN: A modern React onboarding tour library

https://github.com/btahir/react-tourlight
8•bilater•7h ago•1 comments

Show HN: A retention mechanic for learning that isn't Duolingo manipulation?

https://www.dailylabs.co/
6•aidanadd•23h ago•4 comments

Show HN: Satellite imagery object detection using text prompts

https://www.useful-ai-tools.com/tools/satellite-analysis-demo/
7•eyasu6464•1d ago•1 comments

Show HN: KaraMagic – automatic karaoke video maker

https://karamagic.com/
2•godot•4h ago•0 comments

Show HN: The Mog Programming Language

https://moglang.org
161•belisarius222•1d ago•75 comments

Show HN: Don't share code. Share the prompt

https://openprompthub.com/#
2•jacomoRodriguez•5h ago•1 comments

Show HN: Remotely use my guitar tuner

https://realtuner.online/
247•smith-kyle•4d ago•59 comments

Show HN: DenchClaw – Local CRM on Top of OpenClaw

https://github.com/DenchHQ/DenchClaw
137•kumar_abhirup•1d ago•125 comments

Show HN: VS Code Agent Kanban: Task Management for the AI-Assisted Developer

https://www.appsoftware.com/blog/introducing-vs-code-agent-kanban-task-management-for-the-ai-assi...
93•gbro3n•1d ago•50 comments

Show HN: Rampart – Open-source firewall for AI agents (v0.8)

https://rampart.sh/
2•trevxr•2h ago•1 comments

Show HN: Agentic Data Analysis with Claude Code

https://rubenflamshepherd.com/articles/2026-03-09-agentic-data-analysis-with-claude-code
5•rubenflamshep•7h ago•0 comments

SHOW HN: A usage circuit breaker for Cloudflare Workers

17•ethan_zhao•11h ago•7 comments

Show HN: Hopalong Attractor. An old classic with a new perspective in 3D

https://github.com/ratwolfzero/hopalong_python
23•ratwolf•4d ago•2 comments

Show HN: Find Engineering Manager Jobs Efficiently

https://rolebeaver.com/
2•oah•9h ago•0 comments

Show HN: Skir – like Protocol Buffer but better

https://skir.build/
111•gepheum•2d ago•65 comments

Show HN: Get AI to write code that it can read

https://github.com/ELI7VH/wavelang
2•elijahlucian•9h ago•0 comments

Show HN: I built a real-time OSINT dashboard pulling 15 live global feeds

https://github.com/BigBodyCobain/Shadowbroker
304•vancecookcobxin•2d ago•120 comments

Show HN: An on-device Mac app for real-time posture reminders

https://apps.apple.com/us/app/ai-posture-reminder-app/id1574005886?mt=12
3•data-leon•3h ago•0 comments

Show HN: Smux – Terminal Multiplexer built for AI agents

https://github.com/gergomiklos/smux
5•garymiklos•11h ago•0 comments
Open in hackernews

Show HN: Ash, an Agent Sandbox for Mac

https://ashell.dev
5•amsha•8h ago
Ash is a macOS sandbox that restricts AI coding agents. It limits access to files, networks, processes, IO devices, and environment variables. You can use Ash with any CLI coding agent by wrapping it in a single command: `ash run -- <agent>`. I typically use it with Claude to stay safe while avoiding repetitive prompts: `ash run -- claude --dangerously-skip-permissions`.

Ash restricts resources via the Endpoint Security and Network Extension frameworks. These frameworks are significantly more powerful than the sandbox-exec tool.

Each session is driven by a policy file. Any out-of-policy action is denied by default. You can audit denials in the GUI app, which lets you view out-of-policy actions and retroactively add them to your policy file.

Ash also comes with tools for building policies. You can use an "observation session" to watch the typical behavior of a coding agent and capture that behavior in a policy file for future sandbox sessions. Linting, formatting, and rule merging are all built into the Ash CLI to keep your policy files concise and maintainable.

Download Ash at https://ashell.dev

Comments

Muhammad523•1h ago
There's a shell with the exact same name for Unix
ThroneCreator•1h ago
One thing that comes to mind is whether the sandbox can restrict outbound network access per process or per command. That could be useful for preventing agents from silently exfiltrating data while still allowing limited API calls.
jakejmnz•48m ago
Looks cool, I'll give it a shot. Is this any different from /sandbox command?