<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Hacker News: GabrielBlessed</title><link>https://news.ycombinator.com/user?id=GabrielBlessed</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Wed, 22 Jul 2026 19:10:50 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=GabrielBlessed" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by GabrielBlessed in "Show HN: I built claw-coder which is the first atonomous local AI agent"]]></title><description><![CDATA[
<p>Hey everyone claw-coder us free to try out would appreciate your feedback on it and the bash commands in the post are really the only things you need to do to get started and also claw-coder allows you to run any model in the cloud or on github codespace and claw-coder just becomes the ui and interface</p>
]]></description><pubDate>Mon, 20 Jul 2026 18:35:23 +0000</pubDate><link>https://news.ycombinator.com/item?id=48982977</link><dc:creator>GabrielBlessed</dc:creator><comments>https://news.ycombinator.com/item?id=48982977</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48982977</guid></item><item><title><![CDATA[Show HN: I built claw-coder which is the first atonomous local AI agent]]></title><description><![CDATA[
<p>Hello Show HN, my name is Gabriel Blessed and i have been working on claw-coder which is a fully atonoumous local coding agent you can get it through
```bash
npm install -g claw-coder
claw login
claw setup
claw chat
```
The main reason for me building it is to solve the privacy problem with AI even if you configure codex or claude with a local model some of your data leaks without you even knowing and openclaw is too free it can do dangerous actions without you ever knowing till its too late but claw-coder is different i have used it for months and have to say this it is really safe but powerfull with its RAG capabilities, knowledge graph, docker code testing and execution it just gets me would love for you to try it and give feedback on it.
Thank you, Gabriel Blessed</p>
<hr>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=48982875">https://news.ycombinator.com/item?id=48982875</a></p>
<p>Points: 3</p>
<p># Comments: 2</p>
]]></description><pubDate>Mon, 20 Jul 2026 18:28:33 +0000</pubDate><link>https://news.ycombinator.com/item?id=48982875</link><dc:creator>GabrielBlessed</dc:creator><comments>https://news.ycombinator.com/item?id=48982875</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48982875</guid></item><item><title><![CDATA[New comment by GabrielBlessed in "Show HN: I built a powerful RAG and knowledge graph agent that runs locally"]]></title><description><![CDATA[
<p>Do AI agent's ability to reason about code become more powerful when given access to knowledge graph.</p>
]]></description><pubDate>Sat, 23 May 2026 11:09:05 +0000</pubDate><link>https://news.ycombinator.com/item?id=48246682</link><dc:creator>GabrielBlessed</dc:creator><comments>https://news.ycombinator.com/item?id=48246682</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48246682</guid></item><item><title><![CDATA[Show HN: I built a powerful RAG and knowledge graph agent that runs locally]]></title><description><![CDATA[
<p>Claw-Coder is an AI agent that runs locally on your laptop and has access to powerful tools instead of configuring claude or codex to use a local model just use claw-coder.<p>Why was claw-coder created?
Answer: To solve the problem of privacy and security. When you use an agent that is configured with a cloud model like codex, cursor, Claude etc. You are not just getting the agent but you are giving up your codebase to train an llm which is a bit concerning and this reduces trust in the technology called AI but now another problem comes in performance when you switch to a local model that is not made for that workflow you lose performance, speed, and it becomes really a tradeoff so that's where claw-coder comes in it not only runs on your machine but all the code, rag, knowledge graph etc info is kept local making the privacy problem solved but now what about performance.<p>Performance:
Local llms are not built to do the cool things cloud models do because the model sizes are not even capable of building real apps like the 8b models, 13b, even 1b so the solution I came up with was to give these small models access to tools and features that make it actually work well in coding performance.<p>So what does claw-coder have access to:
A knowledge graph:
A knowledge graph is an interconnected network of real-world entities—such as people, places, concepts, or events—and the relationships between them. It organizes information into a readable web of meaning rather than static lists, allowing both humans and AI to understand context.
So how does this help an AI, it gives the AI the ability to tell relationships between code in your codebase, a cloned unknown repo and so forth this increases performance of local llms by far in coding tasks and reasoning abilities.
Rag:
We have ever had of RAG at some point but there is a catch the context window of local llms can't bear large codebases and repos so RAG isn't optional by storing vectors in a vector store you enable the AI to actually know what the code means and what each piece does to the other letting you load millions of lines into the vector store without blowing up the context window.<p>Tools:
So we have discussed the tiny but powerful ways to improve local llm performance but an agent to be an agent it needs to take action this is where exposing tools to the local llm helps so what tools have been implemented into claw-coder.
1. search_tool
This enables the ai agent to actually search up to date info so that it doesnt hallucinate on info it doesn't know which is common in local llms.
2. Docker execution
This agent has a special folder called workspace where it does its work without destroying your desktop but this is not enough to protect your desktop from being destroyed by cheap code so this is where docker comes in I have implemented docker containers of various languages where the agent can validate its own code this is powerful because all llms not only local ones generate code they can't even confirm works because they are just powerful predictors so enabling it to run its code can surprisingly increase the usefulness of the generated code because it now knows it works or not even for html and css the ai agent has been given a helpful vision llm to actually explain what rendered in the browser. This is the surprising power of giving an llm a docker execution tool.<p>We have looked at a lot of how claw-coder is different enabling local llms to actually do real work.
But how do you actually try it out yourself:
Claw-coder is closed source because it is going through heavy testing but that doesnt kill transparency and since we are testing it doesn't stop people from trying it on real codebase and giving feedback to get started use:<p>brew tap gabriel-c70/claw
then brew install claw-coder</p>
<hr>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=48246659">https://news.ycombinator.com/item?id=48246659</a></p>
<p>Points: 5</p>
<p># Comments: 3</p>
]]></description><pubDate>Sat, 23 May 2026 11:05:43 +0000</pubDate><link>https://news.ycombinator.com/item?id=48246659</link><dc:creator>GabrielBlessed</dc:creator><comments>https://news.ycombinator.com/item?id=48246659</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48246659</guid></item></channel></rss>