HackerTrans
TopNewTrendsCommentsPastAskShowJobs

devashish86

55 karmajoined 13 years ago

Submissions

Show HN: Qwen3.6 27B on a DGX Spark writing code that ships

devashish.me
2 points·by devashish86·5 days ago·1 comments

Two Qwen3 models on one DGX Spark: the residency math

devashish.me
95 points·by devashish86·24 days ago·49 comments

Show HN: Clawrium – A CLI for managing AI agent fleet across multiple instances

ric03uec.github.io
3 points·by devashish86·3 months ago·1 comments

Show HN: Local and Cloud LLM Comparison Using Nvidia DGX Spark

devashish.me
2 points·by devashish86·5 months ago·0 comments

Migrating from Claude Code to OpenCode

devashish.me
3 points·by devashish86·6 months ago·0 comments

Never Blocked Teams

devashish.me
1 points·by devashish86·8 months ago·1 comments

Claude Code to manage engineering teams

devashish.me
1 points·by devashish86·8 months ago·1 comments

The Linus Method: How we simiplifed RFC reviews

devashish.me
1 points·by devashish86·9 months ago·0 comments

comments

devashish86
·5 days ago·discuss
Author here. Want to share the results of my experiments with local inference. I failed to get decent output from my previous setup (https://news.ycombinator.com/item?id=48587865). But this stack is performing much better.

The local stack only became reliable after fixing multiple separate failures in the stack, fixing the coding harness, improving system prompt and other tweaks in different components.

Concrete repo evidence in the post is from Clawrium(https://github.com/ric03uec/clawrium) PRs #855, #859, and #861. Will continue to iterate on this till I can offload about 30% of the project work completely to the local models.
devashish86
·18 days ago·discuss
fair points. will take this into account in the next post.
devashish86
·18 days ago·discuss
fair point, i'll publish the methodology in the beginning next time onward.

fwiw, this is my high level process.

1. i keep comprehensive notes _while_ i'm experimenting(like checkpoints). this is a mix of commits and a append-only changelog file

2. if some part of what i've done seems like i can share with public, i create an outline of it. small paragraph with a few points

3. then i ask the model to merge the two to generate a post. i have my own style guide but ofcourse, the model idiosyncrasies will always creep in.
devashish86
·24 days ago·discuss
Author here. Quick context the post doesn't quite spell out:

The tool_choice="auto" failure on Qwen3-Next isn't a parser issue — the model reasons inside <think>, decides, and never emits the tool call. No error, just empty tool_calls. The fix was swapping the backbone from Thinking to Instruct, not tuning any parser flag.

The "load the bigger model first, size the smaller against actual residency" playbook generalizes to anything with shared CUDA framework overhead. The ~5 GiB framework floor shows up even at small gpu_memory_utilization values — plan against actuals, not targets.
devashish86
·27 days ago·discuss
Building Clawrium (https://github.com/ric03uec/clawrium), a CLI to orchestrate a fleet of autonomous agents(like openclaw, hermes etc) on multiple physical hosts. As I started running agents on my home network I needed an easy way to maintain them without sshing every every time. I built clawrium as a way to centralize config management, secrets, templates and llm providers. Think of it like a control plane similar to kubectl.
devashish86
·3 months ago·discuss
I have 2 OpenClaws running on an old Ubuntu box, and one on a PI. Every config change meant SSHing into each one, tweaking files, restarting services, checking logs. Its all fun during experimentation but now I'm using these for some real work and don't want to spend time troubleshooting config drifts.

So I've been building Clawrium (clm) - a CLI that treats your machines as a fleet and your agents as the things you deploy onto them. Point it at a host, deploy an agent, and you get one command center instead of three terminal tabs.

What works today: - `clm` CLI to configure instances, LLM providers, IP addresses etc - End-to-end install + lifecycle management for OpenClaw (Zeroclaw in progress) - Basic TUI to list all the running agent instances in one place - Normalized config format; Clawrium translates to Openclaw native format but I intend to add support for all *Claws

What's coming: ZeroClaw, Hermes and other claw support, token-usage guardrails across the fleet, config import/export, backups and other goodies. I'm the solo dev on this so I'm building the features based on my immediate needs.

It's built on Python + Typer + ansible-runner.

Still early and rough around the edges. Would love feedback from anyone running agents across multiple machines, especially on what the CLI ergonomics should feel like.

Repo: https://github.com/ric03uec/clawrium

Docs: https://ric03uec.github.io/clawrium/

Announcement: https://www.devashish.me/p/introducing-clawrium-an-aquarium
devashish86
·3 months ago·discuss
I'm running a few instances of OpenClaw(and Zeroclaw). I use it for a few things

1. Experimenting with local models. OpenClaw uses local inference on a DGX Spark machine. Helps me understand how different, newer models work and behave

2. Bot 1 helps me maintain a personal project. It sits in discord channel and I throw ideas at it, ask it to log issues, give me priorities, update docs etc. Basically maintenance work to manage the repo

3. Bot 2 is general purpose assistant to take notes(while driving, on a walk, etc), give me daily AI news summary from trusted sources and my relevance criteria. Give me suggestions on what should I dig deeper

4. Bot 3 is setup for work environment. Sits in slack as my team's assistant. Process meeting notes automaticlaly from google and send us summary for the week/month, important notes from a project, answer questions for rest of the org and more. This is most "real" use case so far for me

<plug> I build https://github.com/ric03uec/clawrium as a lightweight orchestration system to manage agents on a local network because i was having a hard time keeping tabs on these agents. all the ssh-ing and config file gymnastics was too much to handle. </plug>
devashish86
·8 months ago·discuss
I'm a heavy cc user for writing code, reviewing documentation, brainstorming, updating jira tickets etc etc. For the past few months, I started experimenting with managing a team using cc. As a team, we got together and decided to experiment with a new way to run the team and now that we're looking at some good results, I wanted to share our learnings here

https://www.devashish.me/p/why-5x-engineers-dont-make-5x-tea...

Would love to hear thoughts from others who are trying something similar.