HN user

nezhar

55 karma
Posts19
Comments32
View on HN
github.com 9d ago

Unified CLI for running AI coding agents in isolated Docker or Podman containers

nezhar
1pts0
twitter.com 15d ago

Hy3 – 295B MoE model (21B active, 192 experts)

nezhar
2pts1
www.formaly.io 17d ago

Knowledge Should Not Be Gated

nezhar
71pts54
yewjin.substack.com 24d ago

Note to My Younger Self

nezhar
2pts1
www.linuxfoundation.org 24d ago

Who will be the senior engineers of 2036?

nezhar
3pts0
github.com 3mo ago

Show HN: Transcribe, analyse, and chat with your voice conversations

nezhar
1pts0
github.com 3mo ago

Show HN: Run Claude Code, Codex, and more with auto-approval in a Container

nezhar
2pts0
vibepod.dev 4mo ago

VibePod adds Ollama/vLLM back end support for Claude Code and Codex

nezhar
1pts0
github.com 4mo ago

VibePod

nezhar
2pts0
vibepod.dev 4mo ago

One local CLI to run and switch coding agents

nezhar
1pts0
vibepod.dev 4mo ago

Show HN: VibePod CLI – Run AI agents with isolation and better observability

nezhar
4pts0
nezhar.com 6mo ago

Beyond Vendor Lock-In – A Framework for LLM Sovereignty

nezhar
2pts0
www.cerebras.ai 6mo ago

OpenAI Partners with Cerebras

nezhar
2pts3
github.com 9mo ago

Claude Container 1.3.0 – Dockerized Claude Code with API Proxy and Datasette

nezhar
1pts1
github.com 11mo ago

Show HN: Docker container for Claude Code with complete host isolation

nezhar
2pts5
nezhar.com 11mo ago

GPT-5 model price comparison via pelicans on a bicycle

nezhar
2pts0
nezhar.com 1y ago

Practical guide to running LLMs on consumer CPUs

nezhar
2pts0
media.ccc.de 2y ago

Grazer Linuxtage 2024

nezhar
1pts0
github.com 2y ago

Speech Condenser: A tool for summarizing dialogues from videos or audio

nezhar
2pts1

For me, building with open weights models sounds like the right approach — you are able to switch providers, and you can control where the server is running.

You don't have any guarantees in terms of data, that's true, you rely on the provider. But this is similar to a database or other services where you don't have the knowledge or resources to run them yourself. Hardware cost is an additional factor here.

If on the other hand your idea works out and the model fits the use case, you can always decide to move to a dedicated infrastructure later.

I see this as a way to build apps with agentic flows where the original files don't need manipulation; instead, you create something new. Whether it's summarizing, answering questions, or generating new documents, you can use a local/internal LLM and feel relatively safe when tool calling is also restricted.

I like the perspective used to approach this. Additionally, the fact that major browsers can accept a folder as input is new to me and opens up some exciting possibilities.

I also had the same idea when I built https://github.com/nezhar/claude-container.

What I was also curious about is what is actually sent and received by the agent, so I included this feature and created a CLI to make integration easier in a developer workflow.

Since I started doing this for other agents as well, I considered the idea of using a VM with Vagrant. However, I want the setup to remain minimal, so I still believe there is room for improvement.

The first rule covers it best: it is crucial that you know what you are doing in order to benefit from these tools.

Regarding the second and third rules, I like to work with two terminals. One is for my agent, isolated in a container, and the other one I use for `git`. This way, I can assess whether my changes are moving in the right direction.

The PLAN.md files have also proven to be a good approach. I'm still trying to figure out the best way to keep them aligned with the application without polluting the context, but they hold significant value for documentation purposes.

Author here. This release adds two features I've found useful for understanding Claude Code behavior:

1. API Proxy - Transparently logs all interactions with the Anthropic API. Every request/response is captured without modifying Claude Code itself.

2. Datasette Integration - Lets you query and visualize the captured API data with SQL. Useful for tracking token usage, analyzing prompt patterns, or debugging unexpected behavior.

The container itself provides isolation from the host system while maintaining persistent credentials and workspace access via bind mounts.

Happy to answer questions about the implementation or use cases.